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
- \`cli/src/hooks/\` - hooks that affect what users see
18
-
- Any CLI visual elements: borders, colors, spacing, text formatting
15
+
spawnerPromptExtras: `**Purpose:** E2E visual testing of the Codebuff CLI itself. This agent starts a local dev Codebuff CLI instance and interacts with it to verify UI behavior.
19
16
20
-
**When to use:** After implementing CLI UI changes, use this to verify the visual output actually renders correctly. Unit tests and typechecks cannot catch layout bugs, rendering issues, or visual regressions. This agent captures real terminal output including colors and layout.`,
17
+
**When to use:**
18
+
- After modifying \`cli/src/components/\` - UI components, layouts, rendering
19
+
- After modifying \`cli/src/hooks/\` - hooks that affect what users see
20
+
- To test CLI visual elements: borders, colors, spacing, text formatting
21
+
- To verify the CLI responds correctly to user input
22
+
23
+
**NOT for:**
24
+
- Code review or analysis tasks
25
+
- Reading files and verifying code logic
26
+
- Running unit tests or typechecks
27
+
28
+
**How it works:** Starts \`bun --cwd=cli run dev\` in tmux, then you send prompts/commands to the CLI and capture the visual output. Unit tests and typechecks cannot catch layout bugs, rendering issues, or visual regressions - this agent captures real terminal output including colors and layout.`,
21
29
})
22
30
23
31
// Constants must be inside handleSteps since it gets serialized via .toString()
0 commit comments