Skip to main content

codetether_agent/tui/app/
slash_hints.rs

1//! Slash command hint descriptions for autocomplete.
2
3pub const SLASH_HINTS: &[(&str, &str)] = &[
4    (
5        "/go ",
6        "OKR-gated relay (requires approval, tracks outcomes)",
7    ),
8    ("/add ", "Easy mode: create a teammate"),
9    ("/talk ", "Easy mode: message or focus a teammate"),
10    ("/list", "Easy mode: list teammates"),
11    ("/remove ", "Easy mode: remove a teammate"),
12    ("/home", "Easy mode: return to main chat"),
13    ("/help", "Open help"),
14    ("/spawn ", "Create a named sub-agent"),
15    ("/autochat ", "Tactical relay (fast path, no OKR tracking)"),
16    (
17        "/autochat-local ",
18        "Tactical relay forced to local CUDA model",
19    ),
20    ("/local", "Switch active model to local CUDA"),
21    ("/agents", "List spawned sub-agents"),
22    ("/kill ", "Remove a spawned sub-agent"),
23    ("/agent ", "Focus or message a spawned sub-agent"),
24    ("/swarm ", "Run task in parallel swarm mode"),
25    ("/ralph", "Start autonomous PRD loop"),
26    ("/undo", "Undo last message and response"),
27    ("/sessions", "Open session picker"),
28    ("/resume", "Resume session or interrupted relay"),
29    ("/new", "Start a fresh session"),
30    ("/model", "Select or set model"),
31    ("/file", "Open file picker or attach /file <path>"),
32    ("/webview", "Switch to webview layout"),
33    ("/classic", "Switch to classic layout"),
34    ("/inspector", "Toggle inspector pane"),
35    ("/refresh", "Refresh workspace"),
36    ("/archive", "Show persistent chat archive path"),
37    ("/view", "Toggle Chat/Swarm view"),
38    ("/buslog", "Show protocol bus log"),
39    ("/protocol", "Show protocol registry"),
40];