Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计提醒

openspec-continue-changeopenspec 继续改变

Agent Skill

openspec-continue-change 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

238

周安装

10

GitHub Stars

9,805

下载量

83
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openspec-continue-change(openspec 继续改变)
来源仓库:https://github.com/studyzy/imewlconverter
仓库路径:skills/openspec-continue-change
安装命令:
npx skills add https://github.com/studyzy/imewlconverter --skill openspec-continue-change
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/studyzy/imewlconverter --skill openspec-continue-change

简介

openspec-continue-change 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 通过 npx skills add 命令从指定仓库安装,具体用法需结合 README 进一步确认。
  • 安装前建议确认权限范围、维护状态及是否涉及联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

通过创建下一个产出物继续处理变更。

输入:可选指定变更名称。如果省略,检查是否可以从对话上下文中推断。如果模糊或不明确,你必须提示获取可用变更。

步骤

  1. 如果没有提供变更名称,提示选择 运行 openspec-cn list --json 获取按最近修改排序的可用变更。然后使用 AskUserQuestion tool 让用户选择要处理哪个变更。 展示前 3-4 个最近修改的变更作为选项,显示: 将最近修改的变更标记为 "(推荐)",因为它很可能是用户想要继续的。 重要提示:不要猜测或自动选择变更。始终让用户选择。

- 变更名称 - Schema(如果存在 schema 字段,否则为 "spec-driven") - 状态(例如:"0/5 tasks", "complete", "no tasks") - 最近修改时间(来自 lastModified 字段)

  1. 检查当前状态 openspec-cn status --change "<name>" --json Parse the JSON to understand current state. The response includes:

- schemaName: The workflow schema being used (e.g., "spec-driven") - artifacts: Array of artifacts with their status ("done", "ready", "blocked") - isComplete: Boolean indicating if all artifacts are complete

  1. 根据状态行动如果所有产出物已完成 (isComplete: true)如果产出物准备好创建(状态显示有 status: "ready" 的产出物): 如果没有产出物准备好(全部受阻)

- 祝贺用户 - 显示最终状态,包括使用的 Schema - 建议:"所有产出物已创建!您现在可以实现此变更或将其归档。" - 停止 - 从状态输出中选择第一个 status: "ready" 的产出物 - 获取其指令: openspec-cn instructions <artifact-id> --change "<name>" --json - Parse the JSON. The key fields are: - context: Project background (constraints for you - do NOT include in output) - rules: Artifact-specific rules (constraints for you - do NOT include in output) - template: The structure to use for your output file - instruction: Schema-specific guidance - outputPath: Where to write the artifact - dependencies: Completed artifacts to read for context - Create the artifact file: - Read any completed dependency files for context - Use template as the structure - fill in its sections - Apply context and rules as constraints when writing - but do NOT copy them into the file - Write to the output path specified in instructions - Show what was created and what's now unlocked - STOP after creating ONE artifact - 在有效的 Schema 下不应发生这种情况 - 显示状态并建议检查问题

  1. 创建产出物后,显示进度 openspec-cn status --change "<name>"

输出

每次调用后,显示:

  • 创建了哪个产出物
  • 正在使用的 Schema 工作流
  • 当前进度(N/M 完成)
  • 现在解锁了哪些产出物
  • 提示:"想要继续吗?只需让我继续或告诉我下一步做什么。"

产出物创建指南

产出物类型及其用途取决于 Schema。使用指令输出中的 instruction 字段来了解要创建什么。

常见的产出物模式:

spec-driven schema (proposal → specs → design → tasks):

  • proposal.md: Ask user about the change if not clear. Fill in Why, What Changes, Capabilities, Impact.

- The Capabilities section is critical - each capability listed will need a spec file.

  • specs//spec.md: Create one spec per capability listed in the proposal's Capabilities section (use the capability name, not the change name).
  • design.md: Document technical decisions, architecture, and implementation approach.
  • tasks.md: Break down implementation into checkboxed tasks.

For other schemas, follow the instruction field from the CLI output.

Guardrails

  • Create ONE artifact per invocation
  • Always read dependency artifacts before creating a new one
  • Never skip artifacts or create out of order
  • If context is unclear, ask the user before creating
  • Verify the artifact file exists after writing before marking progress
  • Use the schema's artifact sequence, don't assume specific artifact names
  • IMPORTANT: context and rules are constraints for YOU, not content for the file

- Do NOT copy <context>, <rules>, <project_context> blocks into the artifact - These guide what you write, but should never appear in the output

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.51%
按下载量换算33

Claude

28.43%
按下载量换算24

Cursor

19.02%
按下载量换算16

Gemini CLI

10.14%
按下载量换算8

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills