diff --git a/src/cli/components/SubagentGroupDisplay.tsx b/src/cli/components/SubagentGroupDisplay.tsx
index 2ea2f26..c7acd9a 100644
--- a/src/cli/components/SubagentGroupDisplay.tsx
+++ b/src/cli/components/SubagentGroupDisplay.tsx
@@ -64,7 +64,7 @@ interface AgentRowProps {
const AgentRow = memo(({ agent, isLast, expanded }: AgentRowProps) => {
const { treeChar, continueChar } = getTreeChars(isLast);
const columns = useTerminalWidth();
- const gutterWidth = 6; // tree char (1) + " ⎿ " (5)
+ const gutterWidth = 7; // continueChar (3) + " ⎿ " (4)
const contentWidth = Math.max(0, columns - gutterWidth);
const getDotElement = () => {
@@ -105,17 +105,9 @@ const AgentRow = memo(({ agent, isLast, expanded }: AgentRowProps) => {
{/* Subagent URL */}
{agent.agentURL && (
-
-
- {continueChar}
- {" ⎿ "}
-
-
-
-
- Subagent: {agent.agentURL}
-
-
+ {continueChar}
+ {" ⎿ Subagent: "}
+ {agent.agentURL}
)}
@@ -198,7 +190,7 @@ const GroupHeader = memo(
return (
{allCompleted ? (
- ⏺
+ ●
) : (
)}
diff --git a/src/cli/components/SubagentGroupStatic.tsx b/src/cli/components/SubagentGroupStatic.tsx
index c9ec8bf..d49e6a8 100644
--- a/src/cli/components/SubagentGroupStatic.tsx
+++ b/src/cli/components/SubagentGroupStatic.tsx
@@ -51,7 +51,7 @@ interface AgentRowProps {
const AgentRow = memo(({ agent, isLast }: AgentRowProps) => {
const { treeChar, continueChar } = getTreeChars(isLast);
const columns = useTerminalWidth();
- const gutterWidth = 6; // tree char (1) + " ⎿ " (5)
+ const gutterWidth = 7; // continueChar (3) + " ⎿ " (4)
const contentWidth = Math.max(0, columns - gutterWidth);
const dotColor =
@@ -76,17 +76,9 @@ const AgentRow = memo(({ agent, isLast }: AgentRowProps) => {
{/* Subagent URL */}
{agent.agentURL && (
-
-
- {continueChar}
- {" ⎿ "}
-
-
-
-
- Subagent: {agent.agentURL}
-
-
+ {continueChar}
+ {" ⎿ Subagent: "}
+ {agent.agentURL}
)}
@@ -141,7 +133,7 @@ export const SubagentGroupStatic = memo(
{/* Header */}
- ⏺
+ ●
{statusText}