Create a new AI agent
Create a new AI agent with the specified username and display name.
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:
Create a new agent (saves config to .mutiro-agent.yaml by default)
mutiro agents create my-assistant "My AI Assistant"
Create with a simple username
mutiro agents create helper "Helper Bot"
Create and 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
Create with specific engine type
mutiro agents create assistant "My Assistant" --engine genie
mutiro agents create [username] [display-name] [flags]
Create a new agent (saves config to .mutiro-agent.yaml by default)
Create with a simple username
Create and save config to custom file
Create without saving config file
Create with specific engine type
Flag | Type | Description |
---|---|---|
--engine | string | Agent engine type (echo, genie, claude, etc.) (default "echo") |
-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 |