ai_agent/commands/help.rs
1// Source: /data/home/swei/claudecode/openclaudecode/src/commands/help/help.tsx
2use super::Command;
3
4pub fn create_help_command() -> Command {
5 Command::local("help", "Show available commands")
6 .argument_hint("[<command>]")
7 .supports_non_interactive(true)
8}
9
10pub fn create_whoami_command() -> Command {
11 Command::local("whoami", "Display current user information").supports_non_interactive(true)
12}