storkit: accept 331_story_bot_start_command_to_start_a_coder_on_a_story

This commit is contained in:
Dave
2026-03-20 12:14:37 +00:00
parent 8885543c25
commit 6f47943369
3 changed files with 0 additions and 0 deletions

View File

@@ -1,23 +0,0 @@
---
name: "Bot start command to start a coder on a story"
---
# Story 331: Bot start command to start a coder on a story
## User Story
As a project owner in a chat room, I want to type "{bot_name} start {story_number}" to start a coder on a story, so that I can kick off work without needing the MCP tools or web UI.
## Acceptance Criteria
- [ ] '{bot_name} start {number}' finds the story and starts the default coder agent on it
- [ ] '{bot_name} start {number} opus' starts coder-opus specifically
- [ ] Returns confirmation with agent name and story title
- [ ] Returns error if story not found or all coders busy
- [ ] Moves story from backlog to current if needed
- [ ] Registered in the command registry so it appears in help output
- [ ] Handled at bot level without LLM invocation
## Out of Scope
- TBD

View File

@@ -1,24 +0,0 @@
---
name: "Bot assign command to assign a specific agent to a story"
---
# Story 332: Bot assign command to assign a specific agent to a story
## User Story
As a project owner in a chat room, I want to type "{bot_name} assign {story_number} {agent_name}" to assign a specific agent to a story, so that I can control which agent works on which story from chat.
## Acceptance Criteria
- [ ] '{bot_name} assign {number} {agent}' assigns the specified agent to the story (e.g. 'timmy assign 315 coder-opus')
- [ ] Stops any currently running agent on that story before assigning the new one
- [ ] Updates the story's front matter with agent: {agent_name}
- [ ] Starts the agent immediately
- [ ] Returns confirmation with agent name and story title
- [ ] Returns error if agent name is not valid or story not found
- [ ] Registered in the command registry so it appears in help output
- [ ] Handled at bot level without LLM invocation
## Out of Scope
- TBD

View File

@@ -1,21 +0,0 @@
---
name: "Bot stop command to stop an agent on a story"
---
# Story 333: Bot stop command to stop an agent on a story
## User Story
As a project owner in a chat room, I want to type "{bot_name} stop {story_number}" to stop the running agent on a story, so that I can halt work from chat without MCP tools.
## Acceptance Criteria
- [ ] '{bot_name} stop {number}' stops the running agent on that story
- [ ] Returns confirmation with agent name, story title, and what stage it was in
- [ ] Returns friendly message if no agent is running on that story
- [ ] Registered in the command registry so it appears in help output
- [ ] Handled at bot level without LLM invocation
## Out of Scope
- TBD