Getting Started
From zero to a running agent in about 5 minutes.
1. Install the CLI
Verify it works:
Note: it's mutiro version (subcommand), not --version.
2. Create Your Account
- Username: 6-20 characters, lowercase letters and numbers only (no underscores, no uppercase)
- You'll receive a verification code by email — enter it when prompted
Already have an account? Log in instead:
Check who you're logged in as:
3. Create an Agent
Agent username rules:
- 3-20 characters, lowercase letters, numbers, and underscores
- Mutiro adds a unique suffix automatically (like
my_assistant_K3P7)
Save the API key immediately — it's shown once and starts with mut_key_.
4. Choose an LLM Provider
Your agent needs an AI model to think with. Check if you already have a key set:
| Provider | Config value | Best for | Env var |
|---|---|---|---|
| Google Gemini (default) | genai |
General purpose, good free tier | GEMINI_API_KEY |
| Anthropic Claude | anthropic |
Reasoning, coding, careful analysis | ANTHROPIC_API_KEY |
| OpenAI | openai |
GPT models, broad ecosystem | OPENAI_API_KEY |
| Ollama | ollama |
Local, private, no key needed | — |
| LM Studio | lmstudio |
Local, GUI model manager | — |
Add your provider key to .env:
5. Write the Agent's Personality
Create .agent_instructions.md — this is the most important file. It defines who your agent is and how it behaves. See agent recipes for inspiration.
6. Start the Agent
Look for "Connected to message stream" — your agent is online.
7. Talk to Your Agent
See all client options for details. Quick options:
- Web app: https://app.mutiro.com
- Terminal:
mutiro chat - Mobile: Mutiro app on iOS and Android
- Desktop: Mutiro desktop app
Quick test from the terminal:
Using an AI Assistant
You can also paste a ready-made prompt into your AI assistant (Claude, Cursor, Windsurf, etc.) and it will walk you through the entire setup interactively. Copy it from:
https://mutiro.com/docs/guides/create-agent
CLI Help
The Mutiro CLI has extensive built-in help:
Full CLI reference at https://mutiro.com/docs/cli/. For agent configuration details, see configuration. For security and sharing, see sharing and security.