* fix: add inline token editor to gateway card (#459)
The gateway card showed token status as read-only (set/none) with no
way to update it. Users with a registered gateway but missing token
had to delete and re-add the gateway.
Add [edit] link next to the token indicator that expands an inline
password input. Supports Enter to save, Escape to cancel. Calls
PUT /api/gateways with the token field (already supported by API).
* feat(tui): multi-step task creation + assign/priority actions
- [n]ew now prompts: title → description → priority → assign agent
(Enter skips optional steps)
- [a]ssign key to assign selected task to an agent (shows available
agent names)
- [p]riority key to change task priority (low/medium/high/critical)
- Updated help bar and usage text with new keybindings
* feat(tui): task detail view, activity feed, comments, priority column
- Enter on a task opens full detail view showing: status, priority,
assignment, description, resolution, quality reviews, and comments
- Task detail supports [s]tatus, [a]ssign, [p]riority, [c]omment,
[r]efresh actions
- Activity feed below task list shows recent task/agent events with
timestamps and icons
- Priority column added to task list with color coding
- [e]dit key for title editing (moved from Enter)