lightspec
v0.4.0
Published
AI-native system for spec-driven development
Maintainers
Readme
LightSpec
A fork of OpenSpec, focused on simplicity and skill-based agents.
LightSpec 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 LightSpec?
AI coding assistants are powerful but unpredictable when requirements live in chat history. LightSpec 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 via agent skills.
How LightSpec compares (at a glance)
- Lightweight: simple workflow, no API keys, minimal setup.
- Brownfield-first: works great beyond 0→1. LightSpec separates the source of truth from proposals:
lightspec/specs/(current truth) andlightspec/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 OpenSpec: LightSpec is a streamlined alternative to OpenSpec, focused on simplicity and ease of adoption. It has fewer commands and a more opinionated workflow, which can reduce cognitive overhead for teams new to spec-driven development.
- Compared to spec-kit & Kiro: those shine for brand-new features (0→1). LightSpec also excels when modifying existing behavior (1→n), especially when updates span multiple specs.
See the full comparison in How LightSpec 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
- Amazon Q Developer
- Antigravity
- Auggie (Augment CLI)
- Claude Code
- Cline
- Codex
- CodeBuddy Code (CLI)
- Continue (VS Code / JetBrains / CLI)
- CoStrict
- Crush
- Cursor
- Factory Droid
- Gemini CLI
- GitHub Copilot
- iFlow
- Kilo Code
- Mistral Vibe
- OpenCode
- Qoder (CLI)
- Qwen Code
- RooCode
- Windsurf
- Any AGENTS.md-compatible assistant (via Universal
AGENTS.md)
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 lightspec@latestVerify installation:
lightspec --versionOption B: Using Nix (NixOS and Nix package manager)
Run LightSpec directly without installation:
nix run github:augmenter-dev/lightspec -- initOr install to your profile:
nix profile install github:augmenter-dev/lightspecOr add to your development environment in flake.nix:
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
lightspec.url = "github:augmenter-dev/lightspec";
};
outputs = { nixpkgs, lightspec, ... }: {
devShells.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.mkShell {
buildInputs = [ lightspec.packages.x86_64-linux.default ];
};
};
}Verify installation:
lightspec --versionStep 2: Initialize LightSpec in your project
Navigate to your project directory:
cd my-projectRun the initialization:
lightspec initWhat 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.mdstub - LightSpec automatically configures skills for the tools you choose and always writes a managed
AGENTS.mdhand-off at the project root - A new
lightspec/directory structure is created in your project
After setup:
- Primary AI tools can trigger
/lightspecworkflows without additional configuration - Run
lightspec listto verify the setup and view any active changes - If your coding assistant doesn't surface the new skills right away, restart it. Skills are loaded at startup, so a fresh launch ensures they appear
- Depending on your AI tool, you'll need to invoke the lightspec skills with either slash commands (e.g.
/lightspec:proposal) or dollar commands (e.g.$lightspec-proposal) to create change proposals, apply changes, or archive completed work
Optional: Populate Project Context
After lightspec init completes, you'll receive a suggested command to validate and populate your project context:
Validate and populate your project context:
"/lightspec:agentsmd-check"Use the /lightspec:agentsmd-check skill to validate that your agent instruction file (CLAUDE.md or AGENTS.md) contains adequate project context. The skill will check for required properties like Purpose, Tech Stack, Architecture Patterns, and more. If anything is missing, it can help you explore the codebase and populate the missing information.
Create Your First Change
Here's a real example showing the complete LightSpec workflow. This works with any AI tool.
1. Draft the Proposal
Start by asking your AI to create a change proposal:
You: Create an LightSpec change proposal for adding profile search filters by role and team
(Shortcut for tools with slash commands: /lightspec:proposal Add profile search filters)
AI: I'll create an LightSpec change proposal for profile filters.
*Scaffolds lightspec/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:
$ lightspec list # Confirm the change folder exists
$ lightspec validate add-profile-filters # Validate spec formatting
$ lightspec show add-profile-filters # Review proposal, tasks, and spec delta3. 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 lightspec/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: /lightspec:apply add-profile-filters)
AI: I'll work through the tasks in the add-profile-filters change.
*Implements tasks from lightspec/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: /lightspec:archive add-profile-filters)
AI: I'll archive the add-profile-filters change.
*Runs: lightspec archive add-profile-filters --yes*
✓ Change archived successfully. Specs updated. Ready for the next feature!Or run the command yourself in terminal:
$ lightspec archive add-profile-filters --yes # Archive the completed change without promptsCommand Reference
lightspec list # View active change folders
lightspec view # Interactive dashboard of specs and changes
lightspec show <change> # Display change details (proposal, tasks, spec updates)
lightspec validate <change> # Check spec formatting and structure
lightspec archive <change> [--yes|-y] # Move a completed change into archive/ (non-interactive with --yes)Example: How AI Creates LightSpec Files
When you ask your AI assistant to "add two-factor authentication", it creates:
lightspec/
├── 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 additionsAI-Generated Spec (created in lightspec/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 returnedAI-Generated Change Delta (created in lightspec/changes/add-2fa/specs/auth/spec.md):
# Delta for Auth
## ADDED Requirements
### Requirement: Two-Factor Authentication
The system MUST require a second factor during login.
#### Scenario: OTP required
- WHEN a user submits valid credentials
- THEN an OTP challenge is requiredAI-Generated Tasks (created in lightspec/changes/add-2fa/tasks.md):
## 1. Database Setup
- [ ] 1.1 Add OTP secret column to users table
- [ ] 1.2 Create OTP verification logs table
## 2. Backend Implementation
- [ ] 2.1 Add OTP generation endpoint
- [ ] 2.2 Modify login flow to require OTP
- [ ] 2.3 Add OTP verification endpoint
## 3. Frontend Updates
- [ ] 3.1 Create OTP input component
- [ ] 3.2 Update login flow UIImportant: You don't create these files manually. Your AI assistant generates them based on your requirements and the existing codebase.
Understanding LightSpec Files
Delta Format
Deltas are "patches" that show how specs change:
## ADDED Requirements- New capabilities## MODIFIED Requirements- Changed behavior (include complete updated text)## REMOVED Requirements- Deprecated features
Format requirements:
- Use
### Requirement: <name>for headers - Every requirement needs at least one
#### Scenario:block - Use SHALL/MUST in requirement text
How LightSpec Compares
vs. OpenSpec
OpenSpec has evolved into a more mature yet complex tool with a rich feature set. LightSpec focuses on simplicity and ease of adoption, especially for teams new to spec-driven development. LightSpec's minimalist approach has the additional benefit of reducing the number of skills and commands needed, and reducing the risk of involuntary skill activation from AI assistants.
vs. spec-kit
LightSpec’s two-folder model (lightspec/specs/ for the current truth, lightspec/changes/ for proposed updates) keeps state and diffs separate. This scales when you modify existing features or touch multiple specs. spec-kit is strong for greenfield/0→1 but provides less structure for cross-spec updates and evolving features.
vs. Kiro.dev
LightSpec groups every change for a feature in one folder (lightspec/changes/feature-name/), making it easy to track related specs, tasks, and designs together. Kiro spreads updates across multiple spec folders, which can make feature tracking harder.
vs. No Specs
Without specs, AI coding assistants generate code from vague prompts, often missing requirements or adding unwanted features. LightSpec brings predictability by agreeing on the desired behavior before any code is written.
Team Adoption
- Initialize LightSpec – Run
lightspec initin your repo. - Start with new features – Ask your AI to capture upcoming work as change proposals.
- Grow incrementally – Each change archives into living specs that document your system.
- Stay flexible – Different teammates can use Claude Code, CodeBuddy, Cursor, or any AGENTS.md-compatible tool while sharing the same specs.
Run lightspec update whenever someone switches tools so your agents pick up the latest instructions and slash-command bindings.
Updating LightSpec
- Upgrade the package
npm install -g lightspec@latest - Refresh agent instructions
- Run
lightspec updateinside each project to regenerate AI guidance and ensure the latest skills are active.
- Run
Contributing
- Install dependencies:
pnpm install - Build:
pnpm run build - Test:
pnpm test - Develop CLI locally:
pnpm run devorpnpm run dev:cli - Conventional commits (one-line):
type(scope): subject
See MAINTAINERS.md for the list of core maintainers and advisors who help guide the project.
Agent Skills
LightSpec includes 4 Claude Code skills for the core development workflow:
lightspec:agentsmd-check- Check the completeness of AGENTS.md or CLAUDE.mdlightspec:proposal- Create a new changelightspec:apply- Get apply instructions for implementationlightspec:archive- Archive a completed change
See README_SKILLS.md for details.
License
MIT
