@@ -24,7 +24,7 @@ The relay simply acts as a bridge between your PC and phone. Your terminal data
2424
2525## What is AIPilot?
2626
27- AIPilot transforms your smartphone into a ** voice remote control** for AI coding agents like Claude Code.
27+ AIPilot transforms your smartphone into a ** voice remote control** for AI coding agents ( Claude Code, Gemini CLI, Codex) .
2828
2929- ** Voice Input** : Talk to your AI agent instead of typing
3030- ** Hands-free Coding** : Keep coding from your couch, standing desk, or anywhere in the room
@@ -104,17 +104,29 @@ go build -o aipilot-cli .
104104## Usage
105105
106106``` bash
107- # Default: runs 'claude' in current directory
107+ # Default: auto-detects or prompts for agent selection
108108aipilot-cli
109109
110+ # Specify agent to run
111+ aipilot-cli --agent claude
112+ aipilot-cli --agent gemini
113+ aipilot-cli --agent codex
114+
110115# Specify working directory
111116aipilot-cli --workdir /path/to/project
112117
113- # Custom command
114- aipilot-cli --command bash
118+ # List available agents
119+ aipilot-cli --agents
120+
121+ # Force agent re-selection (ignore saved preference)
122+ aipilot-cli --select
123+
124+ # Manage sessions
125+ aipilot-cli --sessions # List saved sessions
126+ aipilot-cli --kill-sessions # Kill all sessions
115127
116- # Custom relay (self-hosted)
117- aipilot-cli --relay wss://your-relay.example.com/ws
128+ # Check for updates
129+ aipilot-cli --update
118130```
119131
120132## Mobile App Features
@@ -123,7 +135,7 @@ The AIPilot mobile app provides:
123135
124136- ** Voice Recognition** : Dictate commands instead of typing
125137- ** Multi-sessions** : Manage multiple projects simultaneously
126- - ** Full Terminal** : Access all Claude commands ( ` /compact ` , ` /resume ` , ` /clear ` ...)
138+ - ** Full Terminal** : Access all agent commands
127139- ** File Sharing** : Share photos and documents with your agent
128140- ** Session History** : Quickly reconnect to previous sessions
129141- ** SSH Mode** : Connect directly to remote servers (Pro feature)
0 commit comments