Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/cli/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function wrapAction<Args extends unknown[]>(
const CODING_AGENT_HELP_INTRO =
'MANDATORY FOR CODING AGENTS: read the `agent-tty` skill first. If your agent already loaded that skill, follow it; otherwise run `agent-tty skills get agent-tty` before any other agent-tty command.';
const CODING_AGENT_HELP_OUTRO =
'Coding agents: use the preloaded `agent-tty` skill when available; otherwise call `agent-tty skills get agent-tty` before using session commands.';
'Coding agents: after loading the core `agent-tty` skill, run `agent-tty skills list` to discover other bundled skills and `agent-tty skills get <name>` to load one.';

async function main(): Promise<void> {
const program = new Command()
Expand Down
4 changes: 2 additions & 2 deletions test/integration/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ describe('CLI integration', () => {
);
});

it('makes the bundled skill guidance prominent in top-level help', () => {
it('makes the bundled skill guidance prominent and discoverable in top-level help', () => {
const result = runCli(['--help'], testEnv());

expect(result.status).toBe(0);
Expand All @@ -171,7 +171,7 @@ describe('CLI integration', () => {
expect(result.stdout).not.toContain('skill [options]');
expect(result.stdout).not.toContain('`agent-tty skill`');
expect(result.stdout).toContain(
'Coding agents: use the preloaded `agent-tty` skill when available; otherwise call `agent-tty skills get agent-tty` before using session commands.',
'Coding agents: after loading the core `agent-tty` skill, run `agent-tty skills list` to discover other bundled skills and `agent-tty skills get <name>` to load one.',
);
});

Expand Down
Loading