Update an OpenSpec change by revising its existing planning artifacts and keeping them coherent with one another. Use when the user wants to revise a change's plan, fold new decisions into it, or reconcile its artifacts after an edit. Never edits code.
72
88%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Revise 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). 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.
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 update.
Present the top 3-4 most recently modified changes as options, showing:
schema field if present, otherwise "spec-driven")lastModified field)Mark the most recently modified change as "(Recommended)" since it's likely what the user wants to update.
IMPORTANT: Do NOT guess or auto-select a change. Always let the user choose.
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", "ready", "blocked")isComplete: Boolean indicating if all artifacts are completeplanningHome, changeRoot, artifactPaths, and actionContext: 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 to resolvedOutputPath: for a glob artifact it is still the glob pattern, not a real file.
Understand the request
Read and reconcile
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 /opsx:propose (same change name) to create them.Confirm and apply, one artifact at a time
openspec instructions <artifact-id> --change "<name>" --jsontasks, worktrail's own orchestrator (not OpenSpec)
compiles tasks.md into a per-task file-scope plan afterward (worktrail-compile), and
OpenSpec's checklist schema carries no field for that. This is a delta edit, not a fresh
write - apply these rules only to the task line(s) this revision adds or changes scope for;
do not retroactively rewrite untouched existing task lines to add tags they lack:
specs/**/spec.md (### Requirement: <Name> under
## ADDED Requirements / ## MODIFIED Requirements), append (Requirement: <exact title>) to that task line - the exact requirement name must appear somewhere in
tasks.md.worktrail-compile rejects it for having no file scope: [e2e] for
verification-only tasks, [cleanup] for cleanup-only tasks - e.g. - [ ] 3.1 [e2e] Run the full test suite and confirm it passes. Any other kind tag, including [docs], does
NOT exempt a task from file scope - a [docs]-tagged task still needs a real file (the
doc it updates).Point to the next step (guidance only - NEVER act on it)
/opsx:propose (same change name) to create them./opsx:apply, which worktrail's orchestrator replaces)./opsx:archive.Output
After each invocation, show:
/opsx:propose (not-yet-created artifacts or files)Guardrails
/opsx:apply).openspec status; never branch on hardcoded artifact names.existingOutputPaths; never write to a glob resolvedOutputPath./opsx:propose's job (re-run against the same change name)./opsx:new (the "Update vs. Start Fresh" heuristic).tasks.md revision, re-check only the task line(s) this revision touched against the requirement-coverage and file-less-task rules above - an added or rescoped task implementing a declared requirement must carry (Requirement: <exact title>), and one with no file changes must carry [e2e] or [cleanup]. Do not touch untouched existing lines to satisfy this check.ca98247
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.