Skip to content

Commit 7e9a156

Browse files
committed
refactor: rename cli-ui-tester to cli-tester
- Rename .agents/cli-ui-tester.ts to .agents/cli-tester.ts - Update agent id and name in the file - Update references in cli/tmux.knowledge.md - Update references in scripts/tmux/README.md - Update references in scripts/tmux/tmux-viewer/README.md
1 parent d289348 commit 7e9a156

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import type { AgentDefinition } from './types/agent-definition'
22

33
const definition: AgentDefinition = {
4-
id: 'cli-ui-tester',
5-
displayName: 'CLI UI Tester',
4+
id: 'cli-tester',
5+
displayName: 'CLI Tester',
66
model: 'anthropic/claude-opus-4.5',
77

88
spawnerPrompt: `Expert at testing Codebuff CLI functionality using tmux.

cli/tmux.knowledge.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ All session data is saved to `debug/tmux-sessions/{session}/` in YAML format:
4343

4444
1. Automatic **bracketed paste mode** so CLI input is reliable and characters are not dropped.
4545
2. Automatic **session logging** in `debug/tmux-sessions/{session}/` so you always have a reproducible paper trail.
46-
3. A shared **YAML format** consumed by both humans (via `tmux-viewer` TUI) and AIs (via `--json` output and the `@cli-ui-tester` agent).
46+
3. A shared **YAML format** consumed by both humans (via `tmux-viewer` TUI) and AIs (via `--json` output and the `@cli-tester` agent).
4747

4848
### Viewing Session Data
4949

@@ -62,7 +62,7 @@ bun scripts/tmux/tmux-viewer/index.tsx --list
6262

6363
### CLI Tmux Tester Agent
6464

65-
For automated testing, use the `@cli-ui-tester` agent which wraps all of this with structured output reporting.
65+
For automated testing, use the `@cli-tester` agent which wraps all of this with structured output reporting.
6666

6767
See `scripts/tmux/README.md` for comprehensive documentation.
6868

scripts/tmux/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,4 +300,4 @@ tmux has-session -t SESSION_NAME && echo "exists" || echo "not found"
300300

301301
## Used By
302302

303-
These scripts are used by the `@cli-ui-tester` agent (`.agents/cli-ui-tester.ts`) to automate CLI testing.
303+
These scripts are used by the `@cli-tester` agent (`.agents/cli-tester.ts`) to automate CLI testing.

scripts/tmux/tmux-viewer/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,12 +177,12 @@ dimensions:
177177
[terminal content here]
178178
```
179179

180-
## Integration with cli-ui-tester
180+
## Integration with cli-tester
181181

182-
The `@cli-ui-tester` agent can use this viewer to inspect session data:
182+
The `@cli-tester` agent can use this viewer to inspect session data:
183183

184184
```typescript
185-
// In cli-ui-tester output
185+
// In cli-tester output
186186
{
187187
captures: [
188188
{ path: "debug/tmux-sessions/cli-test-123/capture-001-initial.txt", label: "initial" }

0 commit comments

Comments
 (0)