blueprint:require
SKILL.md
Add Requirement
COMMAND: Add a requirement to specs. Auto-detect type from description.
Execute
- Parse argument for requirement description
- Detect type: FR (feature) or NFR (performance/security/etc)
- Create spec file (scaffold dirs if needed)
- Report what was created
Type Detection
| Input contains | Type | File |
|---|---|---|
| "users can", "should be able to" | FR | docs/specs/features/[name].md |
| "P95", "latency", "under Xms" | NFR | docs/specs/non-functional/performance.md |
| "uptime", "availability" | NFR | docs/specs/non-functional/reliability.md |
| "encryption", "auth" | NFR | docs/specs/non-functional/security.md |