Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions extensions/subagents/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -810,10 +810,11 @@ export default function (pi: ExtensionAPI) {
const meta = [details.harness, details.model]
.filter(Boolean)
.join(" \u00b7 ");
// A spawn adds an agent to the pool: a quiet plus, then the strip's
// spinner carries the running state from here on.
// A spawn is an event, not a state, so it speaks in the activity rows'
// verb language ("Wrote" / "Ran" / "Spawned") rather than a glyph; the
// strip's spinner carries the running state from here on.
return new Text(
`${theme.fg("dim", "+")} ${theme.bold(details.title ?? details.id)} ${theme.fg("dim", meta)}`,
`${theme.fg("toolTitle", "Spawned")} ${theme.bold(details.title ?? details.id)} ${theme.fg("dim", meta)}`,
0,
0,
);
Expand Down
Loading