Implement tasks from an OpenSpec change.
Input: Optionally specify a change name. If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.
Steps
Select the change
If a name is provided, use it. Otherwise:
- Infer from conversation context if the user mentioned a change
- Auto-select if only one active change exists
- If ambiguous, run
openspec list --json to get available changes and use the AskUserQuestion tool to let the user select
Always announce: "Using change: " and how to override (e.g., /opsx:apply <other>).
Check status to understand the schema
openspec status --change "<name>" --json
Parse the JSON to understand:
schemaName: The workflow being used (e.g., "spec-driven")
planningHome, changeRoot, and actionContext: planning scope and edit constraints
- Which artifact contains the tasks (typically "tasks" for spec-driven, check status for others)
Get apply instructions
openspec instructions apply --change "<name>" --json
This returns:
contextFiles: artifact ID -> array of concrete file paths (varies by schema - could be proposal/specs/design/tasks or spec/tests/implementation/docs)
- Progress (total, complete, remaining)
- Task list with status
- Dynamic instruction based on current state
Handle states:
- If
state: "blocked" (missing artifacts): show message, suggest using openspec-continue-change
- If
state: "all_done": congratulate, suggest archive
- Otherwise: proceed to implementation
Workspace guard: If status JSON reports actionContext.mode: "workspace-planning" and allowedEditRoots is empty, explain that full workspace apply is not supported in this slice. Treat linked repos and folders as read-only context, ask the user to select an affected area through an explicit implementation workflow, and STOP before editing files.
Read context files
Read every file path listed under contextFiles from the apply instructions output.
The files depend on the schema being used:
- spec-driven: proposal, specs, design, tasks
- Other schemas: follow the contextFiles from CLI output
Show current progress
Display:
- Schema being used
- Progress: "N/M tasks complete"
- Remaining tasks overview
- Dynamic instruction from CLI
Implement tasks (loop until done or blocked)
For each pending task:
- Show which task is being worked on
- Make the code changes required
- Keep changes minimal and focused
- Mark task complete in the tasks file:
- [ ] → - [x]
- Continue to next task
Pause if:
- Task is unclear → ask for clarification
- Implementation reveals a design issue → suggest updating artifacts
- Error or blocker encountered → report and wait for guidance
- User interrupts
On completion or pause, show status
Display:
- Tasks completed this session
- Overall progress: "N/M tasks complete"
- If all done: suggest archive
- If paused: explain why and wait for guidance
Output During Implementation
## Implementing: <change-name> (schema: <schema-name>)
Working on task 3/7: <task description>
[...implementation happening...]
✓ Task complete
Working on task 4/7: <task description>
[...implementation happening...]
✓ Task complete
Output On Completion
## Implementation Complete
**Change:** <change-name>
**Schema:** <schema-name>
**Progress:** 7/7 tasks complete ✓
### Completed This Session
- [x] Task 1
- [x] Task 2
...
All tasks complete! Ready to archive this change.
Output On Pause (Issue Encountered)
## Implementation Paused
**Change:** <change-name>
**Schema:** <schema-name>
**Progress:** 4/7 tasks complete
### Issue Encountered
<description of the issue>
**Options:**
1. <option 1>
2. <option 2>
3. Other approach
What would you like to do?
Guardrails
- Keep going through tasks until done or blocked
- Always read context files before starting (from the apply instructions output)
- If task is ambiguous, pause and ask before implementing
- If implementation reveals issues, pause and suggest artifact updates
- Keep code changes minimal and scoped to each task
- Update task checkbox immediately after completing each task
- Pause on errors, blockers, or unclear requirements - don't guess
- Use contextFiles from CLI output, don't assume specific file names
Fluid Workflow Integration
This skill supports the "actions on a change" model:
- Can be invoked anytime: Before all artifacts are done (if tasks exist), after partial implementation, interleaved with other actions
- Allows artifact updates: If implementation reveals design issues, suggest updating artifacts - not phase-locked, work fluidly
1---2name: openspec-apply-change-33description: Implement tasks from an OpenSpec change. Use when the user wants to start implementing, continue implementation, or work through tasks.4license: MIT5---67Implement tasks from an OpenSpec change.89**Input**: Optionally specify a change name. If omitted, check if it can be inferred from conversation context. If vague or ambiguous you MUST prompt for available changes.1011**Steps**12131. **Select the change**1415 If a name is provided, use it. Otherwise:16 - Infer from conversation context if the user mentioned a change17 - Auto-select if only one active change exists18 - If ambiguous, run `openspec list --json` to get available changes and use the **AskUserQuestion tool** to let the user select1920 Always announce: "Using change: <name>" and how to override (e.g., `/opsx:apply <other>`).21222. **Check status to understand the schema**2324 ```bash25 openspec status --change "<name>" --json26 ```2728 Parse the JSON to understand:29 - `schemaName`: The workflow being used (e.g., "spec-driven")30 - `planningHome`, `changeRoot`, and `actionContext`: planning scope and edit constraints31 - Which artifact contains the tasks (typically "tasks" for spec-driven, check status for others)32333. **Get apply instructions**3435 ```bash36 openspec instructions apply --change "<name>" --json37 ```3839 This returns:40 - `contextFiles`: artifact ID -> array of concrete file paths (varies by schema - could be proposal/specs/design/tasks or spec/tests/implementation/docs)41 - Progress (total, complete, remaining)42 - Task list with status43 - Dynamic instruction based on current state4445 **Handle states:**46 - If `state: "blocked"` (missing artifacts): show message, suggest using openspec-continue-change47 - If `state: "all_done"`: congratulate, suggest archive48 - Otherwise: proceed to implementation4950 **Workspace guard:** If status JSON reports `actionContext.mode: "workspace-planning"` and `allowedEditRoots` is empty, explain that full workspace apply is not supported in this slice. Treat linked repos and folders as read-only context, ask the user to select an affected area through an explicit implementation workflow, and STOP before editing files.51524. **Read context files**5354 Read every file path listed under `contextFiles` from the apply instructions output.55 The files depend on the schema being used:56 - **spec-driven**: proposal, specs, design, tasks57 - Other schemas: follow the contextFiles from CLI output58595. **Show current progress**6061 Display:62 - Schema being used63 - Progress: "N/M tasks complete"64 - Remaining tasks overview65 - Dynamic instruction from CLI66676. **Implement tasks (loop until done or blocked)**6869 For each pending task:70 - Show which task is being worked on71 - Make the code changes required72 - Keep changes minimal and focused73 - Mark task complete in the tasks file: `- [ ]` → `- [x]`74 - Continue to next task7576 **Pause if:**77 - Task is unclear → ask for clarification78 - Implementation reveals a design issue → suggest updating artifacts79 - Error or blocker encountered → report and wait for guidance80 - User interrupts81827. **On completion or pause, show status**8384 Display:85 - Tasks completed this session86 - Overall progress: "N/M tasks complete"87 - If all done: suggest archive88 - If paused: explain why and wait for guidance8990**Output During Implementation**9192```93## Implementing: <change-name> (schema: <schema-name>)9495Working on task 3/7: <task description>96[...implementation happening...]97✓ Task complete9899Working on task 4/7: <task description>100[...implementation happening...]101✓ Task complete102```103104**Output On Completion**105106```107## Implementation Complete108109**Change:** <change-name>110**Schema:** <schema-name>111**Progress:** 7/7 tasks complete ✓112113### Completed This Session114- [x] Task 1115- [x] Task 2116...117118All tasks complete! Ready to archive this change.119```120121**Output On Pause (Issue Encountered)**122123```124## Implementation Paused125126**Change:** <change-name>127**Schema:** <schema-name>128**Progress:** 4/7 tasks complete129130### Issue Encountered131<description of the issue>132133**Options:**1341. <option 1>1352. <option 2>1363. Other approach137138What would you like to do?139```140141**Guardrails**142143- Keep going through tasks until done or blocked144- Always read context files before starting (from the apply instructions output)145- If task is ambiguous, pause and ask before implementing146- If implementation reveals issues, pause and suggest artifact updates147- Keep code changes minimal and scoped to each task148- Update task checkbox immediately after completing each task149- Pause on errors, blockers, or unclear requirements - don't guess150- Use contextFiles from CLI output, don't assume specific file names151152**Fluid Workflow Integration**153154This skill supports the "actions on a change" model:155156- **Can be invoked anytime**: Before all artifacts are done (if tasks exist), after partial implementation, interleaved with other actions157- **Allows artifact updates**: If implementation reveals design issues, suggest updating artifacts - not phase-locked, work fluidly