diff --git a/hh/src/ui.rs b/hh/src/ui.rs index 84ee5bd..5402196 100644 --- a/hh/src/ui.rs +++ b/hh/src/ui.rs @@ -161,8 +161,10 @@ fn help_clusters(theme: &Theme) -> Vec { title: "AI AGENTS", items: vec![ kv("/ai start [model|profile]", "spawn an agent (ollama tag or models.toml profile)"), + kv("/ai start allow", "spawn + auto-grant the agent sandbox drive"), kv("/ai stop", "dismiss the agent you started"), kv("/ai ", "ask an agent in the room (/ai if many)"), + kv("/ai !", "have a granted agent run a task in the sandbox"), kv("/ai list", "list AI agents present + their provider/model"), kv("/ai models", "show models the active agent's backend can serve"), ], @@ -170,10 +172,11 @@ fn help_clusters(theme: &Theme) -> Vec { HelpCluster { title: "PERMISSIONS (owner)", items: vec![ - kv("/grant ", "let a member drive the shell"), - kv("/revoke ", "take back drive permission"), + kv("/grant ", "let a member OR an AI agent drive the shell"), + kv("/revoke ", "take back sandbox drive permission"), kv("/sudo ", "delegate VM superuser (real sudo)"), kv("/unsudo ", "revoke VM superuser"), + kv("/ai start allow", "shortcut: grant the agent drive at spawn"), ], }, HelpCluster {