ワンクリックで
openspec-onboard
Guided onboarding for OpenSpec - walk through a complete workflow cycle with narration and real codebase work.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Guided onboarding for OpenSpec - walk through a complete workflow cycle with narration and real codebase work.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Implement tasks from an OpenSpec change. Use when the user wants to start implementing, continue implementation, or work through tasks.
Archive a completed change in the experimental workflow. Use when the user wants to finalize and archive a change after implementation is complete.
Archive multiple completed changes at once. Use when archiving several parallel changes.
Continue working on an OpenSpec change by creating the next artifact. Use when the user wants to progress their change, create the next artifact, or continue their workflow.
Enter explore mode - a thinking partner for exploring ideas, investigating problems, and clarifying requirements. Use when the user wants to think through something before or during a change.
Fast-forward through OpenSpec artifact creation. Use when the user wants to quickly create all artifacts needed for implementation without stepping through each one individually.
| name | openspec-onboard |
| description | Guided onboarding for OpenSpec - walk through a complete workflow cycle with narration and real codebase work. |
| license | MIT |
| compatibility | Requires openspec CLI. |
| metadata | {"author":"openspec","version":"1.0","generatedBy":"1.1.1"} |
引导用户完成第一次完整 OpenSpec 工作流(从选题到归档)。
这是教学模式:你要在真实代码库中推进真实任务,同时解释每一步的意义。
先确认 CLI 可用:
# Unix/macOS
openspec --version 2>&1 || echo "CLI_NOT_INSTALLED"
# Windows (PowerShell)
# if (Get-Command openspec -ErrorAction SilentlyContinue) { openspec --version } else { echo "CLI_NOT_INSTALLED" }
若未安装:提示用户先安装后再继续,停止流程。
清晰说明本次目标:
建议控制在 15~20 分钟,重点是“看懂工作流如何工作”。
在仓库中快速寻找 3~4 个“适合 onboarding 的小任务”,例如:
any并给出每个候选项的:
若用户选的范围过大,先建议切片再做。
在正式建 change 前,先做 1~2 分钟探索:
然后暂停,确认用户是否继续创建 change。
openspec new change "<name>"
如用户指定 schema,则添加 --schema <schema>。
openspec status --change "<name>"
解释当前 ready / blocked 工件。
按 status 中 ready 顺序推进。每个工件都执行:
openspec instructions <artifact-id> --change "<name>"
然后:
至少覆盖 proposal/specs/design/tasks(以 schema 为准)。
执行:
openspec instructions apply --change "<name>"
根据输出推进:
实现过程中保持“轻讲解、重实操”。
确认任务完成后,执行归档流程并解释归档结果。
最后给出简短 recap:
/opsx:new、/opsx:ff、/opsx:continue、/opsx:apply、/opsx:archive)