Skip to main content

What is SpecWeave?

SpecWeave is the AI development framework that doesn't lose your work.

Every AI coding tool promises productivity. But after the chat ends, your specs disappear into chat history, your architecture decisions are forgotten, and new team members start from zero.

SpecWeave is the only framework where AI decisions become permanent, searchable documentation.

The Problem: Lost Work

Traditional AI-assisted development:

  1. Tell AI: "Build me a feature"
  2. AI generates code
  3. Test it manually
  4. Fix bugs as they appear
  5. (Maybe) document it later
  6. Repeat for next feature

The result:

  • No documentation = regression risk
  • No specs = unclear requirements
  • Manual testing = inconsistent quality
  • Context bloat = expensive AI costs
  • No architecture = technical debt
  • New team members = 2 weeks onboarding

The Solution: Permanent Knowledge

SpecWeave enforces Spec-Driven Development:

SpecWeave Flow: Your Idea → Spec → Plan → Tasks → Code → Living Docs

Key Principles

  1. Plan > Code - The plan is the source of truth; code is its derivative. Bad plans create orders of magnitude more rework than bad code — review the plan, not just the code (learn more)
  2. Specification Before Implementation - Define WHAT and WHY before HOW
  3. One Increment at a Time - Each feature is a focused, reviewable unit of work — controllable through your sprint or external tools (GitHub, JIRA, ADO)
  4. Living Documentation - Specs evolve with code, never diverge
  5. Context Precision - Load only what's needed (70%+ token reduction)
  6. Test-Validated Features - Every feature proven through automated tests
  7. Regression Prevention - Document existing code before modification
  8. Framework Agnostic - Works with ANY tech stack (TypeScript, Python, Go, Rust, Java, etc.)

How It Works

1. One Command Creates Foundation

/specweave:increment "Add dark mode toggle"

AI agents (PM, Architect, Planner) create:

.specweave/increments/0001-dark-mode/
├── spec.md <- WHAT: User stories, acceptance criteria
├── plan.md <- HOW: Architecture, ADRs, tech decisions
└── tasks.md <- DO: Tasks with embedded tests

2. One Command Builds

/specweave:do

Autonomous execution through all tasks with quality validation.

3. One Command Closes

/specweave:done 0001

Three quality gates validate completion:

  • All tasks complete
  • 60%+ test coverage
  • Living docs updated

4. Auto-Sync Everywhere

Your work syncs to GitHub Issues, JIRA, and Azure DevOps automatically.

Who Should Use SpecWeave?

Perfect For

  • Enterprise teams building production systems
  • Startups needing scalable architecture from day one
  • Solo developers building complex applications
  • Regulated industries (healthcare - HIPAA, finance - SOC 2)
  • Teams migrating brownfield codebases to modern practices

Use Cases

  • Greenfield projects: Start with comprehensive specs
  • Brownfield projects: Document existing code before modification
  • Iterative development: Build documentation gradually
  • Compliance-heavy: Maintain audit trails and traceability

Core Features

FeatureBenefitUniqueness
70%+ Token ReductionPlugin architecture loads only active increment + relevant agent = ~15K tokens (vs 200K+)⭐ Unique
Brownfield ExcellenceImport existing docs (Notion, Confluence, Wiki), create retroactive specs, ADRs⭐ Unique
Living DocumentationSpecs auto-update after every task via hooks—never drift from code⭐ Unique
External SyncPush specs to GitHub/JIRA/ADO, read status back—keep existing workflowsStrong
Quality GatesThree-gate validation (tasks + 60%+ tests + docs) before closingStrong
68+ AI AgentsPM, Architect, Tech Lead, QA, Security, DevOps work autonomously (Claude Opus 4.6)Good
Universal StackWorks with ANY tech stack and ANY AI tool (Claude, Cursor, Copilot)Expected

What You Get vs. Current State

BeforeAfter SpecWeave
Specs in chat historyPermanent, searchable specs
Manual JIRA/GitHub updatesAuto-sync on every task
Tests? Maybe later...Tests embedded in tasks (60%+ enforced)
Architecture in your headADRs captured automatically
"Ask John, he knows"Living docs, always current
Onboarding: 2 weeksOnboarding: 1 day

Getting Started

npm install -g specweave
cd your-project
specweave init .

Then in Claude Code:

/specweave:increment "Add dark mode toggle"
/specweave:do
/specweave:done 0001

Pro tip: Use /specweave:next to flow through the entire cycle. One command auto-closes completed work and suggests what's next — review specs/tasks when needed, otherwise just keep clicking "next".

Full Quickstart Guide


Next: Key Features ->