Create a new AI agent
Create a new AI agent with the specified username and display name.
If no arguments are provided, an interactive wizard will guide you through the process.
The username must be unique and will be used to reference the agent. The display name is what users will see when interacting with the agent.
Examples:
Interactive mode - prompts for all details
mutiro agents create
Non-interactive mode with arguments
mutiro agents create my-assistant "My AI Assistant"
Create with specific engine type
mutiro agents create assistant "My Assistant" --engine genie
Save config to custom file
mutiro agents create helper "Helper Bot" -f my-agent-config.yaml
Create without saving config file
mutiro agents create helper "Helper Bot" --no-config
mutiro agents create [username] [display-name] [flags]
Interactive mode - prompts for all details
Non-interactive mode with arguments
Create with specific engine type
Save config to custom file
Create without saving config file
| Flag | Type | Description |
|---|---|---|
| --engine | string | Agent engine type (echo, genie, claude, codex) - auto-detected if not specified |
| -f, --file | string | Output agent configuration to file (default ".mutiro-agent.yaml") |
| -h, --help | bool | help for create |
| --no-config | bool | Don't save configuration file |
| Flag | Type | Description |
|---|---|---|
| --config | string | config file (default is ./.mutiro.yaml in current directory) |
| --debug | bool | debug mode |
| -v, --verbose | bool | verbose output |