
OpenSpec Fast-Forward
FreeQuickly generate all artifacts for OpenSpec implementation.
Free · Opens the source repo
What OpenSpec Fast-Forward does
OpenSpec Fast-Forward is a command-line skill designed to streamline the process of creating artifacts necessary for implementing changes in OpenSpec projects. This skill allows developers to bypass the tedious step-by-step creation of each artifact, enabling them to generate everything needed in a single workflow. By simply providing a change name or description, users can initiate the artifact creation process, which is particularly useful for those looking to accelerate their development cycles.
The skill operates by first prompting the user for a clear description of the change they wish to implement. It then creates a change directory and retrieves the build order of required artifacts. This is achieved through a series of commands that parse JSON outputs, detailing the dependencies and statuses of each artifact. The skill ensures that all necessary artifacts are created in the correct order, respecting any dependencies that must be satisfied before proceeding.
In addition to generating artifacts, OpenSpec Fast-Forward provides feedback throughout the process, indicating which artifacts have been successfully created and which may require further user input. This interactive approach not only enhances user experience but also minimizes the risk of errors that could arise from manual artifact creation. Ideal for developers familiar with OpenSpec, this skill is particularly beneficial for teams working on complex projects where multiple artifacts need to be managed efficiently.
Overall, OpenSpec Fast-Forward is a valuable tool for developers seeking to optimize their workflow in OpenSpec environments. By automating the artifact creation process, this skill allows users to focus more on implementation and less on the administrative overhead of setting up their projects.
When to use it
Use this skill when you need to quickly generate all artifacts required for an OpenSpec implementation without stepping through each one individually.
When not to use it
This skill may not be suitable for users who prefer a detailed, manual approach to artifact creation or for very simple projects that do not require multiple artifacts.
What you can build with it
Creating a New Feature
When starting a new feature, use this skill to quickly generate all required artifacts, ensuring a smooth development process.
Managing Dependencies
If your project has complex dependencies, this skill helps you create artifacts in the correct order, respecting all requirements.
Accelerating Development Cycles
For teams looking to speed up their development cycles, this skill automates the artifact creation process, allowing more focus on implementation.
How to install OpenSpec Fast-Forward
View source1. Install with the skills CLI
npx skills add fission-ai/openspec/openspec-ff-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-aiFast-forward through artifact creation - generate everything needed to start implementation in one go.
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: The user's request should include a change name (kebab-case) OR a description of what they want to build.
Steps
-
If no clear input provided, ask what they want to build
Ask the user (open-ended, no preset options):
"What change do you want to work on? Describe what you want to build or fix."
From their description, derive a kebab-case name (e.g., "add user authentication" →
add-user-auth).IMPORTANT: Do NOT proceed without understanding what the user wants to build.
-
Create the change directory
openspec new change "<name>"This creates a scaffolded change in the planning home resolved by the CLI.
-
Get the artifact build order
openspec status --change "<name>" --jsonParse the JSON to get:
applyRequires: array of artifact IDs needed before implementation (e.g.,["tasks"])artifacts: list of all artifacts, each with itsstatusand itsrequiresedges (the artifact IDs it directly depends on)planningHome,changeRoot,artifactPaths, andactionContext: path and scope context. Use these instead of assuming repo-local paths.
-
Create every artifact in the required set
Use a todo list to track progress through the artifacts.
Loop through artifacts in dependency order (artifacts with no pending dependencies first):
a. For each artifact that is
ready(dependencies satisfied):- Get instructions:
openspec instructions <artifact-id> --change "<name>" --json - The instructions JSON includes:
context: Project background (constraints for you - do NOT include in output)rules: Artifact-specific rules (constraints for you - do NOT include in output)template: The structure to use for your output fileinstruction: Schema-specific guidance for this artifact typeskipped/warning: present when the change declares skip_specs and this artifact must NOT be created - stop and pick another artifactresolvedOutputPath: Resolved path or pattern to write the artifactdependencies: Completed artifacts to read for context
- Read any completed dependency files for context - always re-read them from disk, even if you saw them earlier in the conversation (the user may have edited them)
- If the
instructionfield delegates creation to a specific skill or command, invoke it to produce the artifact instead of writing the file yourself, then verify the artifact file exists atresolvedOutputPath - Otherwise create the artifact file using
templateas the structure and write it toresolvedOutputPath. IfresolvedOutputPathis a glob, followinstructionto choose the concrete file path - Apply
contextandrulesas constraints - but do NOT copy them into the file - Show brief progress: "✓ Created <artifact-id>"
b. Continue until every artifact in the required set exists (not just
apply.requires)- After creating each artifact, re-run
openspec status --change "<name>" --json - The required set is
applyRequiresplus every artifact reachable from those by following therequiresedges instatus --json- walk them transitively (spec-driven closes over proposal, specs, design, tasks). Leave artifacts outside that set alone statusis file-existence only, so anapplyRequiresartifact readingdonedoes NOT mean its dependencies exist - writingtasks.mdearly markstasksdone whilespecswas never written. Use each artifact'srequiresedges, not itsstatus, to build the required set: adoneartifact still lists what it depends on- An artifact already reading
status: "skipped"is satisfied: the change declaresskip_specsin.openspec.yaml, so its files must NOT exist. Never try to create one - Create every artifact in the required set that is missing, then re-check - creating one can unblock others
- Skip one only when
statusalready reports itskipped, or when its owninstructionsays it is conditional: runopenspec instructions <artifact-id> --change "<name>" --jsonand skip only if itsinstructionfield marks it optional (e.g. "create only if..."). Spec-driven'sdesign.mdqualifies;specsqualifies only via theskippedstatus above, never by your own judgment. Tell the user, and do not reconsider it - Dependencies are enablers, not gates: if a required artifact is still
blockedonly because you skipped a conditional dependency, write it anyway - Stop when every artifact in the required set is
done,skipped, or was deliberately skipped
c. If an artifact requires user input (unclear context):
- Ask the user to clarify
- Then continue with creation
- Get instructions:
-
Show final status
openspec status --change "<name>"
Output
After completing all artifacts, summarize:
- Change name and location
- List of artifacts created with brief descriptions, plus any conditional artifact you skipped and why
- What's ready: "All artifacts needed for implementation are ready."
- Prompt: "Run
/openspec-apply-changeor ask me to implement to start working on the tasks."
Artifact Creation Guidelines
- Follow the
instructionfield fromopenspec instructionsfor each artifact type - it is the authoritative guidance, even for familiar artifact names - If the
instructionfield directs you to use a specific skill or command to create the artifact, invoke it instead of writing the artifact directly - The schema defines what each artifact should contain - follow it
- Read dependency artifacts for context before creating new ones
- Use
templateas the structure for your output file - fill in its sections - IMPORTANT:
contextandrulesare constraints for YOU, not content for the file- Do NOT copy
<context>,<rules>,<project_context>blocks into the artifact - These guide what you write, but should never appear in the output
- Do NOT copy
Guardrails
- Create every artifact the apply phase transitively depends on, not just the ids listed in
apply.requires - Always read dependency artifacts before creating a new one - re-read from disk, not from conversation memory (files may have changed since you last saw them)
- If context is critically unclear, ask the user - but prefer making reasonable decisions to keep momentum
- If a change with that name already exists, suggest continuing that change instead
- Verify each artifact file exists after writing before proceeding to next
Frequently asked questions about OpenSpec Fast-Forward
Similar skills
Rhino 3D Scripting
Streamline your Rhinoceros 3D scripting tasks.
MVVM Toolkit
Streamline ViewModel development with source generators.
FreeCAD Scripts
Generate Python scripts for FreeCAD automation and modeling.
Azure Architecture Builder
Design and deploy Azure infrastructure using natural language.
Command Development
Streamline your command creation for Claude Code.
Create Cowork Plugin
Easily build and package plugins through guided sessions.
