You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Problem
Sub-agent workspaces were showing up as `agent_explore_...` in the
sidebar when agents didn't provide a `description` when spawning
sub-tasks. The sidebar falls back to the auto-generated workspace name
when no title is set.
## Solution
Made the `title` field **required** for the `task` tool (renamed from
`description` for clarity):
- **`TaskToolArgsSchema`** - Changed `description:
z.string().optional()` to `title: z.string().min(1)`
- Updated all usages across taskService, orpc, tools, storybook mocks,
and UI components
Now agents **must** provide a title when spawning sub-tasks, which will
be displayed in the sidebar instead of the cryptic workspace name like
`agent_explore_abc123`.
## Testing
- All existing tests updated and passing
- `make static-check` passes
---
_Generated with `mux` • Model: `anthropic:claude-opus-4-5` • Thinking:
`high`_
0 commit comments