create_story
Create a new story under an existing epic in your project backlog. Assigns the next story ID, writes the story file, and registers it in backlog tracking documents with draft status.
Instructions
Create a new story under an existing epic. Assigns the next STORY-NNN ID, writes the story file, and registers it in requirements-index.md and backlog.md with status draft. The story is appended to the end of the backlog. Returns {story_id, path}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Optional description or goal for the story. Written into the story.md file. | |
| epic_id | Yes | Epic ID the story belongs to, e.g. EPIC-003. The epic must already exist. | |
| story_type | No | Type of story. Valid values: feature, bug, chore, spike. Defaults to 'feature' if not provided. | |
| title | Yes | Title of the story, e.g. 'User can reset password' |