Quick Start¶
Get from zero to a working Missy instance in under two minutes.
1. Install¶
2. Run the setup wizard¶
The wizard walks you through five steps:
- Workspace directory -- where Missy reads and writes files (default:
~/workspace) - Provider selection -- choose Anthropic, OpenAI, Ollama, or a combination
- API key entry -- paste your key or let Missy detect it from the environment
- Model tiers -- pick primary, fast, and premium models
- Write config -- review and confirm
Have your API key ready
For Anthropic, get a key from console.anthropic.com/settings/keys. For OpenAI, visit platform.openai.com/api-keys.
The wizard writes ~/.missy/config.yaml with secure defaults: network deny-all, no shell access, no plugins. Only the provider host you selected is allowed through.
3. Ask your first question¶
Expected output:
╭─ Missy ──────────────────────────────────────────────────╮
│ I can help you with a wide range of tasks: │
│ │
│ • Answer questions and explain concepts │
│ • Read and analyze files in your workspace │
│ • Search your codebase │
│ • Schedule recurring tasks │
│ • Manage secrets in an encrypted vault │
│ • ...and more, depending on which capabilities you │
│ enable in your config. │
╰──────────────────────────────────────────────────────────╯
4. Start an interactive session¶
This opens a REPL where you can have a multi-turn conversation. Type quit or press Ctrl+D to exit.
5. Verify your setup¶
This runs health checks on all subsystems -- config, providers, policy engine, memory, audit log -- and reports any issues.
What just happened¶
After completing these steps, Missy has:
- Created
~/.missy/config.yamlwith your provider credentials and security policies - Created
~/.missy/audit.jsonlto log all actions - Created
~/.missy/memory.dbfor conversation history - Created
~/workspace/as the default working directory
Security defaults
Out of the box, Missy operates with all capabilities disabled. It can answer questions and use its built-in tools, but it cannot execute shell commands, write to arbitrary paths, or make network requests outside the configured provider. Enable additional capabilities in ~/.missy/config.yaml as needed.
Next steps¶
- Setup Wizard reference -- all wizard options including non-interactive mode
- Your First Conversation -- interactive REPL, tools, and sessions
- Configuration Reference -- full config.yaml schema