slash commands
When working inside the Andromity TUI, you can type commands directly into the input bar to manage configurations, switch tools, or check state.
| Command | Shortcut | Syntax | Description |
|---|---|---|---|
/model |
Ctrl+L | /model [provider/model_name] |
Switch the active AI model instantly. |
/profile |
Ctrl+J | /profile [builder|coder|reviewer|planner] |
Change the active agent profile. |
/mode |
- | /mode [safe|trust|full|yolo] |
Transition between permission security levels. |
/mcp |
- | /mcp |
List all discovered MCP servers and tools. |
/undo |
- | /undo |
Reverts the last file modifications and reverts prompts. |
/sessions |
Ctrl+S | /sessions |
Open session selector manager. |
/cron |
- | /cron [cron_expression] [instruction] |
Schedule a recurring background task. |
/exit |
Ctrl+Q | /exit |
Terminate session and return to shell. |
BASH
# Switch to Ollama running Llama 3
/model ollama/llama3
# Toggle YOLO permission mode for fast coding
/mode yolo
# Run unit tests every 15 minutes
/cron */15 * * * * run pytest