ai_agent/commands/
onboarding.rs1use super::Command;
2
3pub fn create_onboarding_command() -> Command {
4 Command::local("onboarding", "Start onboarding")
5}
6
7pub fn create_env_command() -> Command {
8 Command::local("env", "Show environment")
9}
10
11pub fn create_debug_tool_call_command() -> Command {
12 Command::local("debug-tool-call", "Debug tool call").argument_hint("<tool-call-id>")
13}
14
15pub fn create_ctx_viz_command() -> Command {
16 Command::local("ctx-viz", "Visualize context")
17}
18
19pub fn create_issue_command() -> Command {
20 Command::local("issue", "Manage issues").argument_hint("[create|list|close] [<issue-id>]")
21}