Move stories 37 and 44 to current

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dave
2026-02-20 14:32:20 +00:00
parent 7bcc87fcfe
commit 258d1c6b8b
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
---
name: Editor Command for Worktrees
test_plan: pending
---
# Story 37: Editor Command for Worktrees
## User Story
As a user supervising multiple agents working in worktrees, I want to configure my preferred editor (e.g. Zed, VS Code, Cursor) so that agents can give me a ready-to-paste command like `zed ~/workspace/foo/bar/story-45-worktree` to quickly open a worktree in my editor.
## Acceptance Criteria
- [ ] User can configure a preferred editor command (e.g. `zed`, `code`, `cursor`) via the API
- [ ] Editor preference is persisted across server restarts
- [ ] API endpoint returns a formatted open-in-editor command for a given worktree path
- [ ] The UI displays a copy-paste-ready editor command for each active worktree
- [ ] Agents can retrieve the editor command for a worktree they're working in
## Out of Scope
- Actually launching the editor from the server (just provide the command string)
- Editor plugin/extension integration
- Detecting installed editors automatically

View File

@@ -0,0 +1,22 @@
---
name: Agent Completion Report via MCP
test_plan: pending
---
# Story 44: Agent Completion Report via MCP
## User Story
As an agent finishing work on a story, I want to report my completion status via an MCP tool, so that the system can deterministically advance the workflow without relying on prompt compliance.
## Acceptance Criteria
- [ ] MCP tool report_completion(story_id, agent_name, summary) allows agents to signal they are done
- [ ] Server rejects the report if the agent's worktree has uncommitted changes
- [ ] Server runs acceptance gates (clippy, tests) automatically on report
- [ ] Completion status and results are stored on the agent record for retrieval by wait_for_agent or the supervisor
- [ ] Agent prompts are updated to call report_completion as their final action
## Out of Scope
- TBD