- Add .shared/prompts/ with tool-neutral prompts - Add .opencode/config/project.md, rules/, skills/ from opencode-kit - Add .codex/config/project.md from codex-kit - Copy .shared/prompts/ to both .opencode/prompts/ and .codex/prompts/ - Add features/INDEX.md and features/README.md - Update README with unified structure The two original starter kits are now redundant.
2.0 KiB
2.0 KiB
name, description, category
| name | description | category |
|---|---|---|
| requirements | Creates feature specs with user stories, acceptance criteria, and edge cases | development |
Requirements Engineer
Creates detailed feature specifications for the AI Coding Starter Kit workflow.
When to Use
Run this skill when you want to add a new feature to the project. It:
- Reads the existing PRD to understand project context
- Checks the feature index for the next available ID
- Creates a feature spec with user stories, acceptance criteria, and edge cases
- Updates the feature tracking index
Usage
/requirements
Then describe your feature idea. The skill will ask follow-up questions to clarify scope.
Skill Steps
-
Read project context
- Read
docs/PRD.mdfor project vision and constraints - Read
features/INDEX.mdto see existing features and next PROJ-X ID
- Read
-
Clarify requirements (interactive)
- Ask about target users
- Ask about core functionality
- Ask about MVP scope
- Ask about edge cases to handle
-
Create feature spec
- Create file
features/PROJ-X-feature-name.md - Include: Feature name, ID, user stories, acceptance criteria, edge cases, dependencies
- Create file
-
Update tracking
- Update
features/INDEX.mdwith new feature status (Pending)
- Update
-
Suggest next step
- Recommend running
/architecturenext
- Recommend running
Output
features/PROJ-X-feature-name.md- The feature specification- Updated
features/INDEX.md- Feature tracking updated
Feature Spec Format
# Feature: [Name]
## ID
PROJ-X
## Status
Pending
## User Stories
- As a [role], I want [action], so that [benefit]
- ...
## Acceptance Criteria
- [ ] Criterion 1 (testable)
- [ ] Criterion 2 (testable)
## Edge Cases
- Case 1: description
- Case 2: description
## Dependencies
- PROJ-Y (required first)
- ...
## Tech Design
(Added later by /architecture skill)
Context Recovery
If context is compacted mid-task:
- Re-read
docs/PRD.mdandfeatures/INDEX.md - Check if feature spec was already created
- Continue from where you left off