
OpenSpec Update Change
FreeRevise planning artifacts while maintaining coherence.
Free · Opens the source repo
What OpenSpec Update Change does
OpenSpec Update Change is a bash skill designed to help users revise existing planning artifacts within an OpenSpec change. It ensures that all related artifacts remain coherent and in sync, without directly modifying any implementation code. This skill is particularly useful for developers and project managers who need to update their planning documents based on new decisions or changes in direction. By maintaining coherence across artifacts, it helps prevent inconsistencies that could arise from manual updates.
The workflow begins by selecting a change, either by name or by inferring it from context. If multiple changes exist, the skill will prompt the user to choose among the most recently modified options. Once a change is selected, the skill retrieves the current state of its artifacts, allowing the user to see which documents need attention. Users can specify edits, and the skill will reconcile these changes against existing artifacts to identify any contradictions or gaps.
As users propose revisions, the skill presents each proposed change for confirmation before applying it. This ensures that users maintain control over the updates being made. If any artifacts are missing or need to be created, the skill will guide users to the appropriate next steps, such as suggesting the use of the /openspec-continue-change command. Overall, OpenSpec Update Change streamlines the process of keeping planning artifacts aligned and up-to-date, making it an essential tool for teams working with OpenSpec.
This skill is best suited for those who regularly manage changes and planning documents within the OpenSpec framework. It is particularly valuable for teams looking to maintain clarity and coherence in their project documentation, especially in dynamic environments where plans may frequently evolve.
When to use it
Use this skill when you need to revise planning documents for an OpenSpec change without altering the actual implementation code.
When not to use it
Avoid using this skill for direct code modifications or when creating new artifacts that do not yet exist.
What you can build with it
Updating Planning Documents
When project requirements change, use this skill to revise planning artifacts without altering code.
Maintaining Artifact Coherence
Ensure that all related planning documents remain consistent after making updates to a change.
Revising Based on Feedback
Incorporate feedback into existing planning artifacts while checking for contradictions or gaps.
How to install OpenSpec Update Change
View source1. Install with the skills CLI
npx skills add fission-ai/openspec/openspec-update-change --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by fission-aiRevise a change's existing planning artifacts and keep them coherent. Never edit code.
Store selection: If the user names a store (a store is a standalone OpenSpec repo registered on this machine) or the work lives in one, run openspec store list --json to discover registered store ids, then pass --store <id> on the commands that read or write specs and changes (new change, status, instructions, list, show, validate, archive, doctor, context, view). Once selected, treat --store <id> as sticky for the rest of the workflow. Every unscoped example of those commands below is shorthand: before running it, append the flag. For example, run openspec status --change "<name>" --json --store "<id>", not the unscoped form shown below. Other commands do not take the flag. Hints printed by commands already carry the flag; keep it on follow-ups. Without a store, commands act on the nearest local openspec/ root.
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.
/openspec-continue-change is an expanded-profile workflow and may not be installed. Before suggesting it anywhere below, verify that it is available. If it is unavailable, openspec status --change "<name>" --json shows the next artifact and openspec instructions "<artifact-id>" --change "<name>" --json explains how to create it.
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 --jsonto get available changes sorted by most recently modified, and ask the user to select one
When prompting, present the top 3-4 most recently modified changes as options, showing:
- Change name
- Schema (from
schemafield if present, otherwise "spec-driven") - Status (e.g., "0/5 tasks", "complete", "no tasks")
- How recently it was modified (from
lastModifiedfield)
Mark the most recently modified change as "(Recommended)" since it's likely what the user wants to update.
Always announce: "Using change: <name>" and how to override (e.g.,
/openspec-update-change <other>). -
Get the change's artifacts
openspec status --change "<name>" --jsonParse 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", "skipped", "ready", "blocked")isPlanningComplete: Boolean indicating if all planning artifacts are complete. Older CLI versions expose the same value asisComplete.planningHome,changeRoot,artifactPaths, andactionContext: path and scope context. Use these instead of assuming repo-local paths.
The artifact ids and paths come from the active schema - do NOT assume them, and do NOT branch on hardcoded artifact names. Custom schemas must work unchanged.
The files to edit are
artifactPaths.<id>.existingOutputPaths- the concrete files that exist on disk, already glob-expanded for glob artifacts (e.g.specs/**/*.md). Do NOT write toresolvedOutputPath: for a glob artifact it is still the glob pattern, not a real file. -
Understand the request
- If the user asked for a specific revision ("the design now uses X"), that is the starting edit.
- If they only said "update" / "make this coherent", treat it as a coherence review: read the existing artifacts and check them against each other for contradictions, gaps, and duplication.
-
Read and reconcile
- Read the artifact(s) the request touches and the change's other existing artifacts.
- Apply the requested edit. Then check every other existing artifact against it - in ANY direction: an edit to a later artifact may require revising an earlier one, not only the other way around. Build order is a useful reading order, not a constraint on which artifacts may be revised.
- Note everything that is now inconsistent, missing, or contradictory.
- Revise only files that already exist (
existingOutputPaths). Do NOT create artifacts that don't exist yet, and do NOT invent new files under a glob artifact - note them and point the user to/openspec-continue-changeto create them. - If the change is already coherent, say so and make no edits.
-
Confirm and apply, one artifact at a time
- Show each proposed revision and why. Write only after the user confirms.
- If the user rejects a revision, do not write it - leave that artifact unchanged.
- When a substantial rewrite is needed, get that artifact's rules and template first:
openspec instructions "<artifact-id>" --change "<name>" --json
-
Point to the next step (guidance only - NEVER act on it)
- Artifacts still missing -> suggest
/openspec-continue-changeto create them. - Change already implemented (tasks checked off / already applied) -> the code may no longer match the revised plan; suggest
/openspec-apply-changeto carry the delta into code. - Everything done and implemented -> suggest
/openspec-archive-change.
- Artifacts still missing -> suggest
Output
After each invocation, show:
- Which artifacts were revised (and which proposed revisions were rejected)
- Anything deferred to
/openspec-continue-change(not-yet-created artifacts or files) - Where the change stands and the recommended next command
Guardrails
- Planning artifacts only - NEVER edit implementation code. If the revised plan implies code changes, stop and point to
/openspec-apply-change. - Use the artifact ids and paths reported by
openspec status; never branch on hardcoded artifact names. - Edit only the concrete files in
existingOutputPaths; never write to a globresolvedOutputPath. - Do not advance the build frontier: no new artifacts, no new files under glob artifacts - that is
/openspec-continue-change's job. - Confirm every edit with the user before writing.
- If the request changes the change's intent rather than refining it, first verify whether the expanded-profile
/openspec-new-changeworkflow is available. If it is, recommend starting fresh with/openspec-new-change(the "Update vs. Start Fresh" heuristic). If it is unavailable, ask for a distinct unused change name and recommendopenspec new change "<new-change-name>"instead.
Frequently asked questions about OpenSpec Update Change
Similar skills
Markdown to HTML Conversion
Efficiently convert Markdown documents to HTML.
Code Tour
Create structured walkthroughs for codebases.
Acquire Codebase Knowledge
Streamline onboarding with comprehensive codebase documentation.
Documentation & Modernization
Streamline codebase documentation and modernization planning.
Azure Resource Visualizer
Generate architecture diagrams for Azure resources.
CLAUDE.md Improver
Optimize your CLAUDE.md files for better project context.
