story-kit: start 271_story_show_assigned_agent_in_expanded_work_item_view

This commit is contained in:
Dave
2026-03-18 10:03:06 +00:00
parent d40f007818
commit bbd4aee828
2 changed files with 19 additions and 20 deletions

View File

@@ -1,20 +0,0 @@
---
name: "Show assigned agent in expanded work item view"
merge_failure: "Auto-conflict resolution produced broken code in 3 files. The resolver kept both sides of overlapping changes, causing: (1) frontend/src/components/ChatInput.tsx - duplicate React imports (forwardRef, useCallback, useEffect, useImperativeHandle, useRef, useState redeclared) and duplicate filteredFiles variable, plus wrong argument count at line 248; (2) server/src/io/fs.rs:759 - two function bodies concatenated without proper structure (missing semicolon/closing brace between Ok(files) and tokio::task::spawn_blocking); (3) server/src/matrix/bot.rs:822 - mismatched/unclosed delimiters from concatenated code blocks in tokio::select! macro area. These are structural merge conflicts that require manual resolution — the auto-resolver treated them as additive but they are overlapping modifications to the same code."
---
# Story 271: Show assigned agent in expanded work item view
## User Story
As a project owner viewing an expanded work item in the web UI, I want to see which agent (e.g. coder-opus) has been assigned via front matter, so that I know which coder is working on or will pick up the story.
## Acceptance Criteria
- [ ] Expanded work item view displays the agent front matter field if set
- [ ] Shows the specific agent name (e.g. 'coder-opus') not just 'assigned'
- [ ] If no agent is set in front matter, the field is omitted or shows unassigned
## Out of Scope
- TBD