Full-stack-skills openspec-continue
Create the next artifact in the dependency chain with `/opsx:continue`, building up a change incrementally. Use when the user says "continue the change", "create next artifact", "/opsx:continue", or wants step-by-step artifact creation.
install
source · Clone the upstream repo
git clone https://github.com/partme-ai/full-stack-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/partme-ai/full-stack-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/openspec-skills/openspec-continue" ~/.claude/skills/partme-ai-full-stack-skills-openspec-continue && rm -rf "$T"
manifest:
skills/openspec-skills/openspec-continue/SKILL.mdsource content
OpenSpec Continue Skill
Use
to create the next artifact in the dependency chain. This builds a change incrementally — one artifact at a time — giving the user control to review and edit before proceeding./opsx:continue
When to Use
- The user wants incremental, step-by-step artifact creation.
- After creating a change with openspec-new and wanting to build artifacts one at a time.
- The user says "continue", "next artifact", "create specs", "create design".
Prerequisites
- An active change exists (created via openspec-new or
)./opsx:new
Workflow
-
Query the dependency graph
- Run
to see which artifacts are done, ready, or blocked.openspec status --change <name> --json
- Run
-
Identify ready artifacts
- In the default
schema:spec-driven
->proposal
/specs
->design
.tasks - Dependencies are enablers: once a dependency is done, its dependents become "ready".
- In the default
-
Create one artifact
- Read dependency files for context.
- Run
to get enriched instructions and templates.openspec instructions <artifact> --change <name> --json - Create the first ready artifact (e.g. proposal, then specs, then design, then tasks).
-
Show what's unlocked
- After creating an artifact, report what becomes available next.
-
Repeat
- User reviews, optionally edits, then runs
again for the next artifact./opsx:continue
- User reviews, optionally edits, then runs
Artifact Dependency Graph (spec-driven schema)
proposal (root, no dependencies) | +---> specs (requires: proposal) | +---> design (requires: proposal) | +---> tasks (requires: specs + design)
Outputs
- One artifact file created per invocation (e.g.
,proposal.md
,specs/**/*.md
,design.md
).tasks.md
Next Steps
- Run
again for the next artifact./opsx:continue - When all planning artifacts are done: use openspec-apply to implement tasks.
- Or use openspec-ff to fast-forward remaining artifacts.
Troubleshooting
- "No artifacts ready": All artifacts are either complete or blocked. Check
.openspec status --change <name> - "Change not found": Specify the change name explicitly:
./opsx:continue add-dark-mode