Launch Genie AI assistant TUI
Launch the Genie AI coding assistant in terminal UI mode.
Genie is embedded within Mutiro and provides an interactive terminal interface for AI-assisted coding.
All flags and parameters are passed through to Genie.
Examples:
Launch Genie TUI in current directory
mutiro genie
Launch with specific working directory
mutiro genie --cwd /path/to/project
Launch with a specific persona
mutiro genie --persona engineer
Launch with an initial message
mutiro genie "Create a new function"
Pipe stdin as initial message
echo "Review my code" | mutiro genie
Combine flags
mutiro genie --cwd ~/myproject --persona engineer --verbose
mutiro genie [message] [flags]
Launch Genie TUI in current directory
Launch with specific working directory
Launch with a specific persona
Launch with an initial message
Combine flags
| Flag | Type | Description |
|---|---|---|
| --cwd | string | working directory for Genie operations |
| -h, --help | bool | help for genie |
| --persona | string | persona to use (e.g., engineer, product_owner, persona_creator) |
| -q, --quiet | bool | quiet output (errors only) |
| -v, --verbose | bool | verbose output (debug level) |
| Flag | Type | Description |
|---|---|---|
| --config | string | config file (default is ./.mutiro.yaml in current directory) |
| --debug | bool | debug mode |