@fission-ai/openspec 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +119 -0
- package/bin/openspec.js +3 -0
- package/dist/cli/index.d.ts +2 -0
- package/dist/cli/index.js +240 -0
- package/dist/commands/change.d.ts +35 -0
- package/dist/commands/change.js +276 -0
- package/dist/commands/show.d.ts +14 -0
- package/dist/commands/show.js +131 -0
- package/dist/commands/spec.d.ts +15 -0
- package/dist/commands/spec.js +224 -0
- package/dist/commands/validate.d.ts +23 -0
- package/dist/commands/validate.js +275 -0
- package/dist/core/archive.d.ts +15 -0
- package/dist/core/archive.js +529 -0
- package/dist/core/config.d.ts +14 -0
- package/dist/core/config.js +12 -0
- package/dist/core/configurators/base.d.ts +7 -0
- package/dist/core/configurators/base.js +2 -0
- package/dist/core/configurators/claude.d.ts +8 -0
- package/dist/core/configurators/claude.js +15 -0
- package/dist/core/configurators/registry.d.ts +9 -0
- package/dist/core/configurators/registry.js +22 -0
- package/dist/core/converters/json-converter.d.ts +6 -0
- package/dist/core/converters/json-converter.js +48 -0
- package/dist/core/diff.d.ts +11 -0
- package/dist/core/diff.js +193 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +2 -0
- package/dist/core/init.d.ts +10 -0
- package/dist/core/init.js +109 -0
- package/dist/core/list.d.ts +4 -0
- package/dist/core/list.js +89 -0
- package/dist/core/parsers/change-parser.d.ts +13 -0
- package/dist/core/parsers/change-parser.js +192 -0
- package/dist/core/parsers/markdown-parser.d.ts +21 -0
- package/dist/core/parsers/markdown-parser.js +183 -0
- package/dist/core/parsers/requirement-blocks.d.ts +31 -0
- package/dist/core/parsers/requirement-blocks.js +173 -0
- package/dist/core/schemas/base.schema.d.ts +13 -0
- package/dist/core/schemas/base.schema.js +13 -0
- package/dist/core/schemas/change.schema.d.ts +73 -0
- package/dist/core/schemas/change.schema.js +31 -0
- package/dist/core/schemas/index.d.ts +4 -0
- package/dist/core/schemas/index.js +4 -0
- package/dist/core/schemas/spec.schema.d.ts +18 -0
- package/dist/core/schemas/spec.schema.js +15 -0
- package/dist/core/templates/claude-template.d.ts +2 -0
- package/dist/core/templates/claude-template.js +96 -0
- package/dist/core/templates/index.d.ts +11 -0
- package/dist/core/templates/index.js +21 -0
- package/dist/core/templates/project-template.d.ts +8 -0
- package/dist/core/templates/project-template.js +32 -0
- package/dist/core/templates/readme-template.d.ts +2 -0
- package/dist/core/templates/readme-template.js +519 -0
- package/dist/core/update.d.ts +4 -0
- package/dist/core/update.js +47 -0
- package/dist/core/validation/constants.d.ts +34 -0
- package/dist/core/validation/constants.js +40 -0
- package/dist/core/validation/types.d.ts +18 -0
- package/dist/core/validation/types.js +2 -0
- package/dist/core/validation/validator.d.ts +32 -0
- package/dist/core/validation/validator.js +355 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/utils/file-system.d.ts +10 -0
- package/dist/utils/file-system.js +83 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/index.js +2 -0
- package/dist/utils/interactive.d.ts +2 -0
- package/dist/utils/interactive.js +8 -0
- package/dist/utils/item-discovery.d.ts +3 -0
- package/dist/utils/item-discovery.js +49 -0
- package/dist/utils/match.d.ts +3 -0
- package/dist/utils/match.js +22 -0
- package/dist/utils/task-progress.d.ts +8 -0
- package/dist/utils/task-progress.js +36 -0
- package/package.json +68 -0
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
export const claudeTemplate = `# OpenSpec Project
|
|
2
|
+
|
|
3
|
+
This project uses OpenSpec for spec-driven development. Specifications are the source of truth.
|
|
4
|
+
|
|
5
|
+
See @openspec/README.md for detailed conventions and guidelines.
|
|
6
|
+
|
|
7
|
+
## Three-Stage Workflow
|
|
8
|
+
|
|
9
|
+
### Stage 1: Creating Changes
|
|
10
|
+
Create proposal for: features, breaking changes, architecture changes
|
|
11
|
+
Skip proposal for: bug fixes, typos, non-breaking updates
|
|
12
|
+
|
|
13
|
+
### Stage 2: Implementing Changes
|
|
14
|
+
1. Read proposal.md to understand the change
|
|
15
|
+
2. Read design.md if it exists for technical context
|
|
16
|
+
3. Read tasks.md for implementation checklist
|
|
17
|
+
4. Complete tasks one by one
|
|
18
|
+
5. Mark each task complete immediately: \`- [x]\`
|
|
19
|
+
|
|
20
|
+
### Stage 3: Archiving
|
|
21
|
+
After deployment, use \`openspec archive [change]\` (add \`--skip-specs\` for tooling-only changes)
|
|
22
|
+
|
|
23
|
+
## Before Any Task
|
|
24
|
+
|
|
25
|
+
**Always:**
|
|
26
|
+
- Check existing specs: \`openspec list --specs\`
|
|
27
|
+
- Check active changes: \`openspec list\`
|
|
28
|
+
- Read relevant specs before creating new ones
|
|
29
|
+
- Prefer modifying existing specs over creating duplicates
|
|
30
|
+
|
|
31
|
+
## CLI Quick Reference
|
|
32
|
+
|
|
33
|
+
\`\`\`bash
|
|
34
|
+
# Essential
|
|
35
|
+
openspec list # Active changes
|
|
36
|
+
openspec list --specs # Existing specifications
|
|
37
|
+
openspec show [item] # View details
|
|
38
|
+
openspec diff [change] # Show spec differences
|
|
39
|
+
openspec validate --strict # Validate thoroughly
|
|
40
|
+
openspec archive [change] # Archive after deployment
|
|
41
|
+
|
|
42
|
+
# Interactive
|
|
43
|
+
openspec show # Prompts for selection
|
|
44
|
+
openspec validate # Bulk validation
|
|
45
|
+
|
|
46
|
+
# Debugging
|
|
47
|
+
openspec show [change] --json --deltas-only
|
|
48
|
+
\`\`\`
|
|
49
|
+
|
|
50
|
+
## Creating Changes
|
|
51
|
+
|
|
52
|
+
1. **Directory:** \`changes/[descriptive-name]/\`
|
|
53
|
+
2. **Files:**
|
|
54
|
+
- \`proposal.md\` - Why, what, impact
|
|
55
|
+
- \`tasks.md\` - Implementation checklist
|
|
56
|
+
- \`specs/[capability]/spec.md\` - Delta changes (ADDED/MODIFIED/REMOVED)
|
|
57
|
+
|
|
58
|
+
## Critical: Scenario Format
|
|
59
|
+
|
|
60
|
+
**CORRECT:**
|
|
61
|
+
\`\`\`markdown
|
|
62
|
+
#### Scenario: User login
|
|
63
|
+
- **WHEN** valid credentials
|
|
64
|
+
- **THEN** return token
|
|
65
|
+
\`\`\`
|
|
66
|
+
|
|
67
|
+
**WRONG:** Using bullets (- **Scenario**), bold (**Scenario:**), or ### headers
|
|
68
|
+
|
|
69
|
+
Every requirement MUST have scenarios using \`#### Scenario:\` format.
|
|
70
|
+
|
|
71
|
+
## Complexity Management
|
|
72
|
+
|
|
73
|
+
**Default to minimal:**
|
|
74
|
+
- <100 lines of new code
|
|
75
|
+
- Single-file implementations
|
|
76
|
+
- No frameworks without justification
|
|
77
|
+
- Boring, proven patterns
|
|
78
|
+
|
|
79
|
+
**Only add complexity with:**
|
|
80
|
+
- Performance data showing need
|
|
81
|
+
- Concrete scale requirements (>1000 users)
|
|
82
|
+
- Multiple proven use cases
|
|
83
|
+
|
|
84
|
+
## Troubleshooting
|
|
85
|
+
|
|
86
|
+
**"Change must have at least one delta"**
|
|
87
|
+
- Check \`changes/[name]/specs/\` exists
|
|
88
|
+
- Verify operation prefixes (## ADDED Requirements)
|
|
89
|
+
|
|
90
|
+
**"Requirement must have at least one scenario"**
|
|
91
|
+
- Use \`#### Scenario:\` format (4 hashtags)
|
|
92
|
+
- Don't use bullets or bold
|
|
93
|
+
|
|
94
|
+
**Debug:** \`openspec show [change] --json --deltas-only\`
|
|
95
|
+
`;
|
|
96
|
+
//# sourceMappingURL=claude-template.js.map
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ProjectContext } from './project-template.js';
|
|
2
|
+
export interface Template {
|
|
3
|
+
path: string;
|
|
4
|
+
content: string | ((context: ProjectContext) => string);
|
|
5
|
+
}
|
|
6
|
+
export declare class TemplateManager {
|
|
7
|
+
static getTemplates(context?: ProjectContext): Template[];
|
|
8
|
+
static getClaudeTemplate(): string;
|
|
9
|
+
}
|
|
10
|
+
export { ProjectContext } from './project-template.js';
|
|
11
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { readmeTemplate } from './readme-template.js';
|
|
2
|
+
import { projectTemplate } from './project-template.js';
|
|
3
|
+
import { claudeTemplate } from './claude-template.js';
|
|
4
|
+
export class TemplateManager {
|
|
5
|
+
static getTemplates(context = {}) {
|
|
6
|
+
return [
|
|
7
|
+
{
|
|
8
|
+
path: 'README.md',
|
|
9
|
+
content: readmeTemplate
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
path: 'project.md',
|
|
13
|
+
content: projectTemplate(context)
|
|
14
|
+
}
|
|
15
|
+
];
|
|
16
|
+
}
|
|
17
|
+
static getClaudeTemplate() {
|
|
18
|
+
return claudeTemplate;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export const projectTemplate = (context = {}) => `# ${context.projectName || 'Project'} Context
|
|
2
|
+
|
|
3
|
+
## Purpose
|
|
4
|
+
${context.description || '[Describe your project\'s purpose and goals]'}
|
|
5
|
+
|
|
6
|
+
## Tech Stack
|
|
7
|
+
${context.techStack?.length ? context.techStack.map(tech => `- ${tech}`).join('\n') : '- [List your primary technologies]\n- [e.g., TypeScript, React, Node.js]'}
|
|
8
|
+
|
|
9
|
+
## Project Conventions
|
|
10
|
+
|
|
11
|
+
### Code Style
|
|
12
|
+
[Describe your code style preferences, formatting rules, and naming conventions]
|
|
13
|
+
|
|
14
|
+
### Architecture Patterns
|
|
15
|
+
[Document your architectural decisions and patterns]
|
|
16
|
+
|
|
17
|
+
### Testing Strategy
|
|
18
|
+
[Explain your testing approach and requirements]
|
|
19
|
+
|
|
20
|
+
### Git Workflow
|
|
21
|
+
[Describe your branching strategy and commit conventions]
|
|
22
|
+
|
|
23
|
+
## Domain Context
|
|
24
|
+
[Add domain-specific knowledge that AI assistants need to understand]
|
|
25
|
+
|
|
26
|
+
## Important Constraints
|
|
27
|
+
[List any technical, business, or regulatory constraints]
|
|
28
|
+
|
|
29
|
+
## External Dependencies
|
|
30
|
+
[Document key external services, APIs, or systems]
|
|
31
|
+
`;
|
|
32
|
+
//# sourceMappingURL=project-template.js.map
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export declare const readmeTemplate = "# OpenSpec Instructions\n\nThis document provides instructions for AI coding assistants on how to use OpenSpec conventions for spec-driven development. Follow these rules precisely when working on OpenSpec-enabled projects.\n\n## Core Principle\n\nOpenSpec is an AI-native system for change-driven development where:\n- **Specs** (`specs/`) reflect what IS currently built and deployed\n- **Changes** (`changes/`) contain proposals for what SHOULD be changed\n- **AI drives the process** - You generate proposals, humans review and approve\n- **Specs are living documentation** - Always kept in sync with deployed code\n\n## Start Simple\n\n**Default to minimal implementations:**\n- New features should be <100 lines of code initially\n- Use the simplest solution that works\n- Avoid premature optimization (no caching, parallelization, or complex patterns without proven need)\n- Choose boring technology over cutting-edge solutions\n\n**Complexity triggers** - Only add complexity when you have:\n- **Performance data** showing current solution is too slow\n- **Scale requirements** with specific numbers (>1000 users, >100MB data)\n- **Multiple use cases** requiring the same abstraction\n- **Regulatory compliance** mandating specific patterns\n- **Security threats** that simple solutions cannot address\n\nWhen triggered, document the specific justification in your change proposal.\n\n## Directory Structure\n\n```\nopenspec/\n\u251C\u2500\u2500 project.md # Project-specific context (tech stack, conventions)\n\u251C\u2500\u2500 README.md # This file - OpenSpec instructions\n\u251C\u2500\u2500 specs/ # Current truth - what IS built\n\u2502 \u251C\u2500\u2500 [capability]/ # Single, focused capability\n\u2502 \u2502 \u251C\u2500\u2500 spec.md # WHAT the capability does and WHY\n\u2502 \u2502 \u2514\u2500\u2500 design.md # HOW it's built (established patterns)\n\u2502 \u2514\u2500\u2500 ...\n\u251C\u2500\u2500 changes/ # Proposed changes - what we're CHANGING\n\u2502 \u251C\u2500\u2500 [change-name]/\n\u2502 \u2502 \u251C\u2500\u2500 proposal.md # Why, what, impact (consolidated)\n\u2502 \u2502 \u251C\u2500\u2500 tasks.md # Implementation checklist\n\u2502 \u2502 \u251C\u2500\u2500 design.md # Technical decisions (optional, for complex changes)\n\u2502 \u2502 \u2514\u2500\u2500 specs/ # Delta changes to specs\n\u2502 \u2502 \u2514\u2500\u2500 [capability]/\n\u2502 \u2502 \u2514\u2500\u2500 spec.md # Delta format (ADDED/MODIFIED/REMOVED/RENAMED)\n\u2502 \u2514\u2500\u2500 archive/ # Completed changes (dated)\n```\n\n### Capability Organization\n\n**Use capabilities, not features** - Each directory under `specs/` represents a single, focused responsibility:\n- **Verb-noun naming**: `user-auth`, `payment-capture`, `order-checkout`\n- **10-minute rule**: Each capability should be understandable in <10 minutes\n- **Single purpose**: If it needs \"AND\" to describe it, split it\n\nExamples:\n```\n\u2705 GOOD: user-auth, user-sessions, payment-capture, payment-refunds\n\u274C BAD: users, payments, core, misc\n```\n\n## Key Behavioral Rules\n\n### 1. Always Start by Reading\n\nBefore any task:\n1. **Read relevant specs** in `specs/[capability]/spec.md` to understand current state\n2. **Check pending changes** in `changes/` directory for potential conflicts\n3. **Read project.md** for project-specific conventions\n\n### 2. When to Create Change Proposals\n\n**ALWAYS create a change proposal for:**\n- New features or functionality\n- Breaking changes (API changes, schema updates)\n- Architecture changes or new patterns\n- Performance optimizations that change behavior\n- Security updates affecting auth/access patterns\n- Any change requiring multiple steps or affecting multiple systems\n\n**SKIP proposals for:**\n- Bug fixes that restore intended behavior\n- Typos, formatting, or comment updates\n- Dependency updates (unless breaking)\n- Configuration or environment variable changes\n- Adding tests for existing behavior\n- Documentation fixes\n\n**Complexity assessment:**\n- If your solution requires >100 lines of new code, justify the complexity\n- If adding dependencies, frameworks, or architectural patterns, document why simpler alternatives won't work\n- Default to single-file implementations until proven insufficient\n\n### 3. Delta-Based Change Format\n\nChanges use a delta format with clear sections:\n\n```markdown\n## ADDED Requirements\n### Requirement: New Feature\n[Complete requirement content in structured format]\n\n## MODIFIED Requirements \n### Requirement: Existing Feature\n[Complete modified requirement (header must match current spec)]\n\n## REMOVED Requirements\n### Requirement: Old Feature\n**Reason for removal**: [Why removing]\n**Migration path**: [How to handle existing usage]\n\n## RENAMED Requirements\n- FROM: `### Requirement: Old Name`\n- TO: `### Requirement: New Name`\n```\n\nKey rules:\n- Headers are matched using `normalize(header) = trim(header)`\n- Include complete requirements (not diffs)\n- Use standard symbols in CLI output: + (added), ~ (modified), - (removed), \u2192 (renamed)\n\n### 4. Creating a Change Proposal\n\nWhen a user requests a significant change:\n\n```bash\n# 1. Create the change directory\nopenspec/changes/[descriptive-name]/\n\n# 2. Generate proposal.md with all context\n## Why\n[1-2 sentences on the problem/opportunity]\n\n## What Changes \n[Bullet list of changes, including breaking changes]\n\n## Impact\n- Affected specs: [list capabilities that will change]\n- Affected code: [list key files/systems]\n\n# 3. Create delta specs for ALL affected capabilities\n# - Store only the changes (not complete future state)\n# - Use sections: ## ADDED, ## MODIFIED, ## REMOVED, ## RENAMED\n# - Include complete requirements in their final form\n# Example spec.md content:\n# ## ADDED Requirements\n# ### Requirement: Password Reset\n# Users SHALL be able to reset passwords via email...\n# \n# ## MODIFIED Requirements\n# ### Requirement: User Authentication\n# [Complete modified requirement with new password reset hook]\nspecs/\n\u2514\u2500\u2500 [capability]/\n \u2514\u2500\u2500 spec.md # Contains delta sections\n\n# 4. Create tasks.md with implementation steps\n## 1. [Task Group]\n- [ ] 1.1 [Specific task]\n- [ ] 1.2 [Specific task]\n\n# 5. For complex changes, add design.md\n[Technical decisions and trade-offs]\n```\n\n### 5. The Change Lifecycle\n\n1. **Propose** \u2192 Create change directory with delta-based documentation\n2. **Review** \u2192 User reviews and approves the proposal\n3. **Implement** \u2192 Follow the approved tasks.md (can be multiple PRs)\n4. **Deploy** \u2192 User confirms deployment\n5. **Update Specs** \u2192 Apply deltas to sync specs/ with new reality (IF the change affects system capabilities)\n6. **Archive** \u2192 Move to `changes/archive/YYYY-MM-DD-[name]/`\n\n### 6. Implementing Changes\n\nWhen implementing an approved change:\n1. Follow the tasks.md checklist exactly\n2. **Mark completed tasks** in tasks.md as you finish them (e.g., `- [x] 1.1 Task completed`)\n3. Ensure code matches the proposed behavior\n4. Update any affected tests\n5. **Keep change in `changes/` directory** - do NOT archive in implementation PR\n\n**Multiple Implementation PRs:**\n- Changes can be implemented across multiple PRs\n- Each PR should update tasks.md to mark what was completed\n- Different developers can work on different task groups\n- Example: PR #1 completes tasks 1.1-1.3, PR #2 completes tasks 2.1-2.4\n\n### 7. Updating Specs and Archiving After Deployment\n\n**Create a separate PR after deployment** that:\n1. Moves change to `changes/archive/YYYY-MM-DD-[name]/`\n2. Updates relevant files in `specs/` to reflect new reality (if needed)\n3. If design.md exists, incorporates proven patterns into `specs/[capability]/design.md`\n\nThis ensures changes are only archived when truly complete and deployed.\n\n### 8. Types of Changes That Don't Require Specs\n\nSome changes only affect development infrastructure and don't need specs:\n- Initial project setup (package.json, tsconfig.json, etc.)\n- Development tooling changes (linters, formatters, build tools)\n- CI/CD configuration\n- Development dependencies\n\nFor these changes:\n1. Implement \u2192 Deploy \u2192 Mark tasks complete \u2192 Archive\n2. Skip the \"Update Specs\" step entirely\n\n### What Deserves a Spec?\n\nAsk yourself:\n- Is this a system capability that users or other systems interact with?\n- Does it have ongoing behavior that needs documentation?\n- Would a new developer need to understand this to work with the system?\n\nIf NO to all \u2192 No spec needed (likely just tooling/infrastructure)\n\n## Understanding Specs vs Code\n\n### Specs Document WHAT and WHY\n```markdown\n# Authentication Spec\n\nUsers SHALL authenticate with email and password.\n\nWHEN credentials are valid THEN issue JWT token.\nWHEN credentials are invalid THEN return generic error.\n\nWHY: Prevent user enumeration attacks.\n```\n\n### Code Documents HOW\n```javascript\n// Implementation details\nconst user = await db.users.findOne({ email });\nconst valid = await bcrypt.compare(password, user.hashedPassword);\n```\n\n**Key Distinction**: Specs capture intent, constraints, and decisions that aren't obvious from code.\n\n## Common Scenarios\n\n### New Feature Request\n```\nUser: \"Add password reset functionality\"\n\nYou should:\n1. Read specs/user-auth/spec.md\n2. Check changes/ for pending auth changes\n3. Create changes/add-password-reset/ with:\n - proposal.md describing the change\n - specs/user-auth/spec.md with:\n ## ADDED Requirements\n ### Requirement: Password Reset\n [Complete requirement for password reset]\n \n ## MODIFIED Requirements\n ### Requirement: User Authentication\n [Updated to integrate with password reset]\n4. Wait for approval before implementing\n```\n\n### Bug Fix\n```\nUser: \"Getting null pointer error when bio is empty\"\n\nYou should:\n1. Check if spec says bios are optional\n2. If yes \u2192 Fix directly (it's a bug)\n3. If no \u2192 Create change proposal (it's a behavior change)\n```\n\n### Infrastructure Setup\n```\nUser: \"Initialize TypeScript project\"\n\nYou should:\n1. Create change proposal for TypeScript setup\n2. Implement configuration files (PR #1)\n3. Mark tasks complete in tasks.md\n4. After deployment, create separate PR to archive\n (no specs update needed - this is tooling, not a capability)\n```\n\n## Summary Workflow\n\n1. **Receive request** \u2192 Determine if it needs a change proposal\n2. **Read current state** \u2192 Check specs and pending changes\n3. **Create proposal** \u2192 Generate complete change documentation\n4. **Get approval** \u2192 User reviews the proposal\n5. **Implement** \u2192 Follow approved tasks, mark completed items in tasks.md\n6. **Deploy** \u2192 User deploys the implementation\n7. **Archive PR** \u2192 Create separate PR to:\n - Move change to archive\n - Update specs if needed\n - Mark change as complete\n\n## PR Workflow Examples\n\n### Single Developer, Simple Change\n```\nPR #1: Implementation\n- Implement all tasks\n- Update tasks.md marking items complete\n- Get merged and deployed\n\nPR #2: Archive (after deployment)\n- Move changes/feature-x/ \u2192 changes/archive/2025-01-15-feature-x/\n- Update specs if needed\n```\n\n### Multiple Developers, Complex Change\n```\nPR #1: Alice implements auth components\n- Complete tasks 1.1, 1.2, 1.3\n- Update tasks.md marking these complete\n\nPR #2: Bob implements UI components \n- Complete tasks 2.1, 2.2\n- Update tasks.md marking these complete\n\nPR #3: Alice fixes integration issues\n- Complete remaining task 1.4\n- Update tasks.md\n\n[Deploy all changes]\n\nPR #4: Archive\n- Move to archive with deployment date\n- Update specs to reflect new auth flow\n```\n\n### Key Rules\n- **Never archive in implementation PRs** - changes aren't done until deployed\n- **Always update tasks.md** - shows accurate progress\n- **One archive PR per change** - clear completion boundary\n- **Archive PR includes spec updates** - keeps specs current\n\n## Capability Organization Best Practices\n\n### Naming Capabilities\n- Use **verb-noun** patterns: `user-auth`, `payment-capture`, `order-checkout`\n- Be specific: `payment-capture` not just `payments`\n- Keep flat: Avoid nesting capabilities within capabilities\n- Singular focus: If you need \"AND\" to describe it, split it\n\n### When to Split Capabilities\nSplit when you have:\n- Multiple unrelated API endpoints\n- Different user personas or actors\n- Separate deployment considerations\n- Independent evolution paths\n\n#### Capability Boundary Guidelines\n- Would you import these separately? \u2192 Separate capabilities\n- Different deployment cadence? \u2192 Separate capabilities\n- Different teams own them? \u2192 Separate capabilities\n- Shared data models are OK, shared business logic means combine\n\nExamples:\n- user-auth (login/logout) vs user-sessions (token management) \u2192 SEPARATE\n- payment-capture vs payment-refunds \u2192 SEPARATE (different workflows)\n- user-profile vs user-settings \u2192 COMBINE (same data model, same owner)\n\n### Cross-Cutting Concerns\nFor system-wide policies (rate limiting, error handling, security), document them in:\n- `project.md` for project-wide conventions\n- Within relevant capability specs where they apply\n- Or create a dedicated capability if complex enough (e.g., `api-rate-limiting/`)\n\n### Examples of Well-Organized Capabilities\n```\nspecs/\n\u251C\u2500\u2500 user-auth/ # Login, logout, password reset\n\u251C\u2500\u2500 user-sessions/ # Token management, refresh\n\u251C\u2500\u2500 user-profile/ # Profile CRUD operations\n\u251C\u2500\u2500 payment-capture/ # Processing payments\n\u251C\u2500\u2500 payment-refunds/ # Handling refunds\n\u2514\u2500\u2500 order-checkout/ # Checkout workflow\n```\n\nFor detailed guidance, see the [Capability Organization Guide](../docs/capability-organization.md).\n\n## Common Scenarios and Clarifications\n\n### Decision Ambiguity: Bug vs Behavior Change\n\nWhen specs are missing or ambiguous:\n- If NO spec exists \u2192 Treat current code behavior as implicit spec, require proposal\n- If spec is VAGUE \u2192 Require proposal to clarify spec alongside fix\n- If code and spec DISAGREE \u2192 Spec is truth, code is buggy (fix without proposal)\n- If unsure \u2192 Default to creating a proposal (safer option)\n\nExample:\n```\nUser: \"The API returns 404 for missing users but should return 400\"\nAI: Is this a bug (spec says 400) or behavior change (spec says 404)?\n```\n\n### When You Don't Know the Scope\nIt's OK to explore first! Tell the user you need to investigate, then create an informed proposal.\n\n### Exploration Phase (When Needed)\n\nBEFORE creating proposal, you may need exploration when:\n- User request is vague or high-level\n- Multiple implementation approaches exist\n- Scope is unclear without seeing code\n\nExploration checklist:\n1. Tell user you need to explore first\n2. Use Grep/Read to understand current state\n3. Create initial proposal based on findings\n4. Refine with user feedback\n\nExample:\n```\nUser: \"Add caching to improve performance\"\nAI: \"Let me explore the codebase to understand the current architecture and identify caching opportunities.\"\n[After exploration]\nAI: \"Based on my analysis, I've identified three areas where caching would help. Here's my proposal...\"\n```\n\n### When No Specs Exist\nTreat current code as implicit spec. Your proposal should document current state AND proposed changes.\n\n### When in Doubt\nDefault to creating a proposal. It's easier to skip an unnecessary proposal than fix an undocumented change.\n\n### AI Workflow Adaptations\n\nTask tracking with OpenSpec:\n- Track exploration tasks separately from implementation\n- Document proposal creation steps as you go\n- Keep implementation tasks separate until proposal approved\n\nParallel operations encouraged:\n- Read multiple specs simultaneously\n- Check multiple pending changes at once\n- Batch related searches for efficiency\n\nProgress communication:\n- \"Exploring codebase to understand scope...\"\n- \"Creating proposal based on findings...\"\n- \"Implementing approved changes...\"\n\n### For AI Assistants\n- **Bias toward simplicity** - Propose the minimal solution that works\n- Use your exploration tools liberally before proposing\n- Batch operations for efficiency\n- Communicate your progress\n- It's OK to revise proposals based on discoveries\n- **Question complexity** - If your solution feels complex, simplify first\n\n## Edge Case Handling\n\n### Multi-Capability Changes\nCreate ONE proposal that:\n- Lists all affected capabilities\n- Shows changes per capability\n- Has unified task list\n- Gets approved as a whole\n\n### Outdated Specs\nIf specs clearly outdated:\n1. Create proposal to update specs to match reality\n2. Implement new feature in separate proposal\n3. OR combine both in one proposal with clear sections\n\n### Emergency Hotfixes\nFor critical production issues:\n1. Announce: \"This is an emergency fix\"\n2. Implement fix immediately\n3. Create retroactive proposal\n4. Update specs after deployment\n5. Tag with [EMERGENCY] in archive\n\n### Pure Refactoring\nNo proposal needed for:\n- Code formatting/style\n- Internal refactoring (same API)\n- Performance optimization (same behavior)\n- Adding types to untyped code\n\nProposal REQUIRED for:\n- API changes (even if compatible)\n- Database schema changes\n- Architecture changes\n- New dependencies\n\n### Observability Additions\nNo proposal needed for:\n- Adding log statements\n- New metrics/traces\n- Debugging additions\n- Error tracking\n\nProposal REQUIRED if:\n- Changes log format/structure\n- Adds new monitoring service\n- Changes what's logged (privacy)\n\n## Remember\n\n- You are the process driver - automate documentation burden\n- Specs must always reflect deployed reality\n- Changes are proposed, not imposed\n- Impact analysis prevents surprises\n- Simplicity is the power - just markdown files, minimal solutions\n- Start simple, add complexity only when justified\n\nBy following these conventions, you enable true spec-driven development where documentation stays current, changes are traceable, and evolution is intentional.\n";
|
|
2
|
+
//# sourceMappingURL=readme-template.d.ts.map
|