ai_agent/commands/
mobile.rs1use super::Command;
3
4pub fn create_mobile_command() -> Command {
5 Command::local("mobile", "Manage mobile app").argument_hint("[pair|unpair|status]")
6}
7
8pub fn create_vim_command() -> Command {
9 Command::local("vim", "Toggle Vim mode")
10}
11
12pub fn create_voice_command() -> Command {
13 Command::local("voice", "Manage voice input").argument_hint("[on|off|status]")
14}
15
16pub fn create_bridge_command() -> Command {
17 Command::local("bridge", "Bridge to other sessions")
18 .argument_hint("[connect|disconnect] [<session-id>]")
19}
20
21pub fn create_bridge_kick_command() -> Command {
22 Command::local("bridge-kick", "Kick from bridged session").argument_hint("<session-id>")
23}