Continue working on a change by creating the next artifact.
Input: Optionally specify a change name. If omitted, MUST prompt for available changes.
Steps
If no change name provided, prompt for selection
Run openspec list --json to get available changes sorted by most recently modified. Then use the AskUserQuestion tool to let the user select which change to work on.
Present the top 3-4 most recently modified changes as options, showing:
- Change name
- Schema (from
schema field if present, otherwise "spec-driven")
- Status (e.g., "0/5 tasks", "complete", "no tasks")
- How recently it was modified (from
lastModified field)
Mark the most recently modified change as "(Recommended)" since it's likely what the user wants to continue.
IMPORTANT: Do NOT guess or auto-select a change. Always let the user choose.
Check current status
openspec status --change "<name>" --json
Parse the JSON to understand current state. The response includes:
schemaName: The workflow schema being used (e.g., "spec-driven", "tdd")
artifacts: Array of artifacts with their status ("done", "ready", "blocked")
isComplete: Boolean indicating if all artifacts are complete
Act based on status:
If all artifacts are complete (isComplete: true):
- Congratulate the user
- Show final status including the schema used
- Suggest: "All artifacts created! You can now implement this change or archive it."
- STOP
If artifacts are ready to create (status shows artifacts with status: "ready"):
If no artifacts are ready (all blocked):
- This shouldn't happen with a valid schema
- Show status and suggest checking for issues
After creating an artifact, show progress
openspec status --change "<name>"
Output
After each invocation, show:
- Which artifact was created
- Schema workflow being used
- Current progress (N/M complete)
- What artifacts are now unlocked
- Prompt: "Want to continue? Just ask me to continue or tell me what to do next."
Artifact Creation Guidelines
The artifact types and their purpose depend on the schema. Use the instruction field from the instructions output to understand what to create.
Common artifact patterns:
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/*.md: Create one spec per capability listed in the proposal.
- design.md: Document technical decisions, architecture, and implementation approach.
- tasks.md: Break down implementation into checkboxed tasks.
tdd schema (spec → tests → implementation → docs):
- spec.md: Feature specification defining what to build.
- tests/*.test.ts: Write tests BEFORE implementation (TDD red phase).
- src/*.ts: Implement to make tests pass (TDD green phase).
- docs/*.md: Document the implemented feature.
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
1---2name: openspec-continue-change3description: 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.4---56Continue working on a change by creating the next artifact.78**Input**: Optionally specify a change name. If omitted, MUST prompt for available changes.910**Steps**11121. **If no change name provided, prompt for selection**1314 Run `openspec list --json` to get available changes sorted by most recently modified. Then use the **AskUserQuestion tool** to let the user select which change to work on.1516 Present the top 3-4 most recently modified changes as options, showing:17 - Change name18 - Schema (from `schema` field if present, otherwise "spec-driven")19 - Status (e.g., "0/5 tasks", "complete", "no tasks")20 - How recently it was modified (from `lastModified` field)2122 Mark the most recently modified change as "(Recommended)" since it's likely what the user wants to continue.2324 **IMPORTANT**: Do NOT guess or auto-select a change. Always let the user choose.25262. **Check current status**27 ```bash28 openspec status --change "<name>" --json29 ```30 Parse the JSON to understand current state. The response includes:31 - `schemaName`: The workflow schema being used (e.g., "spec-driven", "tdd")32 - `artifacts`: Array of artifacts with their status ("done", "ready", "blocked")33 - `isComplete`: Boolean indicating if all artifacts are complete34353. **Act based on status**:3637 ---3839 **If all artifacts are complete (`isComplete: true`)**:40 - Congratulate the user41 - Show final status including the schema used42 - Suggest: "All artifacts created! You can now implement this change or archive it."43 - STOP4445 ---4647 **If artifacts are ready to create** (status shows artifacts with `status: "ready"`):48 - Pick the FIRST artifact with `status: "ready"` from the status output49 - Get its instructions:50 ```bash51 openspec instructions <artifact-id> --change "<name>" --json52 ```53 - Parse the JSON to get template, dependencies, and what it unlocks54 - **Create the artifact file** using the template as a starting point:55 - Read any completed dependency files for context56 - Fill in the template based on context and user's goals57 - Write to the output path specified in instructions58 - Show what was created and what's now unlocked59 - STOP after creating ONE artifact6061 ---6263 **If no artifacts are ready (all blocked)**:64 - This shouldn't happen with a valid schema65 - Show status and suggest checking for issues66674. **After creating an artifact, show progress**68 ```bash69 openspec status --change "<name>"70 ```7172**Output**7374After each invocation, show:75- Which artifact was created76- Schema workflow being used77- Current progress (N/M complete)78- What artifacts are now unlocked79- Prompt: "Want to continue? Just ask me to continue or tell me what to do next."8081**Artifact Creation Guidelines**8283The artifact types and their purpose depend on the schema. Use the `instruction` field from the instructions output to understand what to create.8485Common artifact patterns:8687**spec-driven schema** (proposal → specs → design → tasks):88- **proposal.md**: Ask user about the change if not clear. Fill in Why, What Changes, Capabilities, Impact.89 - The Capabilities section is critical - each capability listed will need a spec file.90- **specs/*.md**: Create one spec per capability listed in the proposal.91- **design.md**: Document technical decisions, architecture, and implementation approach.92- **tasks.md**: Break down implementation into checkboxed tasks.9394**tdd schema** (spec → tests → implementation → docs):95- **spec.md**: Feature specification defining what to build.96- **tests/*.test.ts**: Write tests BEFORE implementation (TDD red phase).97- **src/*.ts**: Implement to make tests pass (TDD green phase).98- **docs/*.md**: Document the implemented feature.99100For other schemas, follow the `instruction` field from the CLI output.101102**Guardrails**103- Create ONE artifact per invocation104- Always read dependency artifacts before creating a new one105- Never skip artifacts or create out of order106- If context is unclear, ask the user before creating107- Verify the artifact file exists after writing before marking progress108- Use the schema's artifact sequence, don't assume specific artifact names