Quickstart
Get from zero to a productive AI session in 5 minutes.
1. Install
curl -fsSL https://raw.githubusercontent.com/muvon/octomind/master/install.sh | bash2. Set API Key
export OPENROUTER_API_KEY="your_key"Get a key at openrouter.ai. OpenRouter gives you access to many AI providers through a single key.
3. Generate Config
octomind configCreates ~/.local/share/octomind/config/config.toml with sensible defaults.
4. Start a Session
octomind runYou're now in an interactive AI session with full tool access. The AI can read files, edit code, run commands, and manage your project.
What You Can Do
Ask questions about your code:
How does the authentication system work?Make changes:
Add error handling to the login functionRun commands:
Run the test suite and fix any failuresAttach images for analysis:
/image screenshot.pngEssential Commands
| Command | Description |
|---|---|
/help | Show all commands |
/info | Token usage and costs |
/image <path> | Attach image for AI analysis |
/exit | Exit session |
Session Modes
# Default: interactive with tools
octomind run
# Chat-only (assistant role)
octomind run assistant
# Named session (resume later)
octomind run --name my-feature
# Resume a session
octomind run --resume my-feature
# Tap agent (fetches specialized config)
octomind run octomind:developerNon-Interactive Mode
Pipe a message via stdin and get a response:
echo "Explain the auth module" | octomind run developer --format plainStructured JSON output for pipelines:
echo "List TODO items" | octomind run developer --format jsonlNext Steps
- Configuration -- customize settings
- Providers -- set up AI providers
- Sessions -- session management
- MCP Tools -- available tools