MCPcopy
hub / github.com/Fission-AI/OpenSpec

github.com/Fission-AI/OpenSpec @v1.5.0 sqlite

repository ↗ · DeepWiki ↗ · release v1.5.0 ↗
1,259 symbols 3,969 edges 277 files 190 documented · 15%
README

  <img src="https://github.com/Fission-AI/OpenSpec/raw/v1.5.0/assets/openspec_pixel_light.svg" alt="OpenSpec logo" height="64">

Spec-driven development for AI coding assistants.

CI npm version node version License: MIT Conventional Commits Discord

OpenSpec dashboard preview

Follow @0xTab on X for updates · Join the OpenSpec Discord for help and questions.

🧪 New: OPSX Workflow — schema-driven, hackable, fluid. Iterate on workflows without code changes.

OpenSpec

OpenSpec aligns humans and AI coding assistants with spec-driven development so you agree on what to build before any code is written. No API keys required.

Why OpenSpec?

AI coding assistants are powerful but unpredictable when requirements live in chat history. OpenSpec adds a lightweight specification workflow that locks intent before implementation, giving you deterministic, reviewable outputs.

Key outcomes: - Human and AI stakeholders agree on specs before work begins. - Structured change folders (proposals, tasks, and spec updates) keep scope explicit and auditable. - Shared visibility into what's proposed, active, or archived. - Works with the AI tools you already use: custom slash commands where supported, context rules everywhere else.

How OpenSpec compares (at a glance)

  • Lightweight: simple workflow, no API keys, minimal setup.
  • Brownfield-first: works great beyond 0→1. OpenSpec separates the source of truth from proposals: openspec/specs/ (current truth) and openspec/changes/ (proposed updates). This keeps diffs explicit and manageable across features.
  • Change tracking: proposals, tasks, and spec deltas live together; archiving merges the approved updates back into specs.
  • Compared to spec-kit & Kiro: those shine for brand-new features (0→1). OpenSpec also excels when modifying existing behavior (1→n), especially when updates span multiple specs.

See the full comparison in How OpenSpec Compares.

How It Works

┌────────────────────┐
│ Draft Change       │
│ Proposal           │
└────────┬───────────┘
         │ share intent with your AI
         ▼
┌────────────────────┐
│ Review & Align     │
│ (edit specs/tasks) │◀──── feedback loop ──────┐
└────────┬───────────┘                          │
         │ approved plan                        │
         ▼                                      │
┌────────────────────┐                          │
│ Implement Tasks    │──────────────────────────┘
│ (AI writes code)   │
└────────┬───────────┘
         │ ship the change
         ▼
┌────────────────────┐
│ Archive & Update   │
│ Specs (source)     │
└────────────────────┘

1. Draft a change proposal that captures the spec updates you want.
2. Review the proposal with your AI assistant until everyone agrees.
3. Implement tasks that reference the agreed specs.
4. Archive the change to merge the approved updates back into the source-of-truth specs.

Getting Started

Supported AI Tools

Native Slash Commands (click to expand)

These tools have built-in OpenSpec commands. Select the OpenSpec integration when prompted.

Tool Commands
Amazon Q Developer @openspec-proposal, @openspec-apply, @openspec-archive (.amazonq/prompts/)
Antigravity /openspec-proposal, /openspec-apply, /openspec-archive (.agent/workflows/)
Auggie (Augment CLI) /openspec-proposal, /openspec-apply, /openspec-archive (.augment/commands/)
Claude Code /openspec:proposal, /openspec:apply, /openspec:archive
Cline Workflows in .clinerules/workflows/ directory (.clinerules/workflows/openspec-*.md)
CodeBuddy Code (CLI) /openspec:proposal, /openspec:apply, /openspec:archive (.codebuddy/commands/) — see docs
Codex /openspec-proposal, /openspec-apply, /openspec-archive (global: ~/.codex/prompts, auto-installed)
Continue /openspec-proposal, /openspec-apply, /openspec-archive (.continue/prompts/)
CoStrict /openspec-proposal, /openspec-apply, /openspec-archive (.cospec/openspec/commands/) — see docs
Crush /openspec-proposal, /openspec-apply, /openspec-archive (.crush/commands/openspec/)
Cursor /openspec-proposal, /openspec-apply, /openspec-archive
Factory Droid /openspec-proposal, /openspec-apply, /openspec-archive (.factory/commands/)
Gemini CLI /openspec:proposal, /openspec:apply, /openspec:archive (.gemini/commands/openspec/)
GitHub Copilot /openspec-proposal, /openspec-apply, /openspec-archive (.github/prompts/)
iFlow (iflow-cli) /openspec-proposal, /openspec-apply, /openspec-archive (.iflow/commands/)
Kilo Code /openspec-proposal.md, /openspec-apply.md, /openspec-archive.md (.kilocode/workflows/)
OpenCode /openspec-proposal, /openspec-apply, /openspec-archive
Qoder /openspec:proposal, /openspec:apply, /openspec:archive (.qoder/commands/openspec/) — see docs
Qwen Code /openspec-proposal, /openspec-apply, /openspec-archive (.qwen/commands/)
RooCode /openspec-proposal, /openspec-apply, /openspec-archive (.roo/commands/)
Windsurf /openspec-proposal, /openspec-apply, /openspec-archive (.windsurf/workflows/)

Kilo Code discovers team workflows automatically. Save the generated files under .kilocode/workflows/ and trigger them from the command palette with /openspec-proposal.md, /openspec-apply.md, or /openspec-archive.md.

AGENTS.md Compatible (click to expand)

These tools automatically read workflow instructions from openspec/AGENTS.md. Ask them to follow the OpenSpec workflow if they need a reminder. Learn more about the AGENTS.md convention.

Tools
Amp • Jules • Others

Install & Initialize

Prerequisites

  • Node.js >= 20.19.0 - Check your version with node --version

Step 1: Install the CLI globally

Option A: Using npm

npm install -g @fission-ai/openspec@latest

Verify installation:

openspec --version

Option B: Using Nix (NixOS and Nix package manager)

Run OpenSpec directly without installation:

nix run github:Fission-AI/OpenSpec -- init

Or install to your profile:

nix profile install github:Fission-AI/OpenSpec

Or add to your development environment in flake.nix:

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    openspec.url = "github:Fission-AI/OpenSpec";
  };

  outputs = { nixpkgs, openspec, ... }: {
    devShells.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.mkShell {
      buildInputs = [ openspec.packages.x86_64-linux.default ];
    };
  };
}

Verify installation:

openspec --version

Step 2: Initialize OpenSpec in your project

Navigate to your project directory:

cd my-project

Run the initialization:

openspec init

What happens during initialization: - You'll be prompted to pick any natively supported AI tools (Claude Code, CodeBuddy, Cursor, OpenCode, Qoder,etc.); other assistants always rely on the shared AGENTS.md stub - OpenSpec automatically configures slash commands for the tools you choose and always writes a managed AGENTS.md hand-off at the project root - A new openspec/ directory structure is created in your project

After setup: - Primary AI tools can trigger /openspec workflows without additional configuration - Run openspec list to verify the setup and view any active changes - If your coding assistant doesn't surface the new slash commands right away, restart it. Slash commands are loaded at startup, so a fresh launch ensures they appear

Optional: Populate Project Context

After openspec init completes, you'll receive a suggested prompt to help populate your project context:

Populate your project context:
"Please read openspec/project.md and help me fill it out with details about my project, tech stack, and conventions"

Use openspec/project.md to define project-level conventions, standards, architectural patterns, and other guidelines that should be followed across all changes.

Create Your First Change

Here's a real example showing the complete OpenSpec workflow. This works with any AI tool. Those with native slash commands will recognize the shortcuts automatically.

1. Draft the Proposal

Start by asking your AI to create a change proposal:

You: Create an OpenSpec change proposal for adding profile search filters by role and team
     (Shortcut for tools with slash commands: /openspec:proposal Add profile search filters)

AI:  I'll create an OpenSpec change proposal for profile filters.
     *Scaffolds openspec/changes/add-profile-filters/ with proposal.md, tasks.md, spec deltas.*

2. Verify & Review

Check that the change was created correctly and review the proposal:

$ openspec list                             # Confirm the change folder exists
$ openspec validate add-profile-filters     # Validate spec formatting
$ openspec show add-profile-filters         # Review proposal, tasks, and spec delta

3. Refine the Specs

Iterate on the specifications until they match your needs:

You: Can you add acceptance criteria for the role and team filters?

AI:  I'll update the spec delta with scenarios for role and team filters.
     *Edits openspec/changes/add-profile-filters/specs/profile/spec.md and tasks.md.*

4. Implement the Change

Once specs look good, start implementation:

You: The specs look good. Let's implement this change.
     (Shortcut for tools with slash commands: /openspec:apply add-profile-filters)

AI:  I'll work through the tasks in the add-profile-filters change.
     *Implements tasks from openspec/changes/add-profile-filters/tasks.md*
     *Marks tasks complete: Task 1.1 ✓, Task 1.2 ✓, Task 2.1 ✓...*

5. Archive the Completed Change

After implementation is complete, archive the change:

AI:  All tasks are complete. The implementation is ready.

You: Please archive the change
     (Shortcut for tools with slash commands: /openspec:archive add-profile-filters)

AI:  I'll archive the add-profile-filters change.
    *Runs: openspec archive add-profile-filters --yes*
     ✓ Change archived successfully. Specs updated. Ready for the next feature!

Or run the command yourself in terminal:

$ openspec archive add-profile-filters --yes  # Archive the completed change without prompts

Note: Tools with native slash commands (Claude Code, CodeBuddy, Cursor, Codex, Qoder, RooCode) can use the shortcuts shown. All other tools work with natural language requests to "create an OpenSpec proposal", "apply the OpenSpec change", or "archive the change".

Command Reference

openspec list               # View active change folders
openspec view               # Interactive dashboard of specs and changes
openspec show <change>      # Display change details (proposal, tasks, spec updates)
openspec validate <change>  # Check spec formatting and structure
openspec archive <change> [--yes|-y]   # Move a completed change into archive/ (non-interactive with --yes)

Example: How AI Creates OpenSpec Files

When you ask your AI assistant to "add two-factor authentication", it creates:

openspec/
├── specs/
│   └── auth/
│       └── spec.md           # Current auth spec (if exists)
└── changes/
    └── add-2fa/              # AI creates this entire structure
        ├── proposal.md       # Why and what changes
        ├── tasks.md          # Implementation checklist
        ├── design.md         # Technical decisions (optional)
        └── specs/
            └── auth/
                └── spec.md   # Delta showing additions

AI-Generated Spec (created in openspec/specs/auth/spec.md):

# Auth Specification

## Purpose
Authentication and session management.

## Requirements
### Requirement: User Authentication
The system SHALL issue a JWT on successful login.

#### Scenario: Valid credentials
- WHEN a user submits valid credentials
- THEN a JWT is returned

AI-Generated Change Delta (created in `op

Extension points exported contracts — how you extend this code

CompletionGenerator (Interface)
(no doc) [9 implementers]
src/core/completions/types.ts
SchemaLocation (Interface)
* Result of checking a schema location
src/commands/schema.ts
FlagShape (Interface)
(no doc)
test/core/completions/command-registry.test.ts
FakeTool (Interface)
(no doc)
test/helpers/fake-tool.ts
ResolveSchemaForChangeOptions (Interface)
(no doc)
src/utils/change-metadata.ts
TelemetryConfig (Interface)
(no doc)
src/telemetry/config.ts
Choice (Interface)
(no doc)
src/prompts/searchable-multi-select.ts
CompletionInstaller (Interface)
(no doc) [5 implementers]
src/core/completions/factory.ts

Core symbols most depended-on inside this repo

writeFile
called by 382
src/utils/file-system.ts
runCLI
called by 379
test/helpers/run-cli.ts
readFile
called by 169
src/utils/file-system.ts
execute
called by 158
src/core/view.ts
generate
called by 114
src/core/completions/types.ts
has
called by 99
src/core/command-generation/registry.ts
install
called by 95
src/core/completions/factory.ts
getFilePath
called by 54
src/core/command-generation/types.ts

Shape

Function 740
Method 264
Interface 179
Class 76

Languages

TypeScript100%

Modules by API surface

src/core/store/operations.ts47 symbols
src/commands/store.ts46 symbols
src/core/store/foundation.ts34 symbols
src/core/store/registry.ts26 symbols
src/core/worksets.ts24 symbols
src/core/root-selection.ts24 symbols
src/commands/workset.ts23 symbols
src/utils/file-system.ts22 symbols
src/core/validation/validator.ts19 symbols
src/core/init.ts19 symbols
src/core/update.ts18 symbols
src/core/legacy-cleanup.ts18 symbols

Dependencies from manifests, versioned

@changesets/changelog-github0.5.2 · 1×
@changesets/cli2.27.7 · 1×
@inquirer/core10.3.2 · 1×
@inquirer/prompts7.10.1 · 1×
@types/node24.2.0 · 1×
@vitest/ui3.2.6 · 1×
chalk5.5.0 · 1×
commander14.0.0 · 1×
cross-spawn7.0.6 · 1×
eslint9.39.2 · 1×
fast-glob3.3.3 · 1×
ora8.2.0 · 1×

For agents

$ claude mcp add OpenSpec \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact