set_story_status
Update story status to draft, in-progress, blocked, or deferred for backlog management. Use complete_story to mark stories as done with acceptance criteria.
Instructions
Update the status of a story to draft, in-progress, blocked, or deferred. To mark a story done, use complete_story instead — it enforces acceptance criteria, appends a summary note, and removes the story from the backlog. Returns {story_id, old_status, new_status, backlog_updated}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | Yes | New status to assign. Must be one of: draft, in-progress, blocked, deferred. To mark done, use complete_story. | |
| story_id | Yes | Story ID to update, e.g. STORY-047 |