Skip to content

Quick Start

Interactive Chat

Start an agentic chat session:

mita chat

Inside the session, type natural language prompts. The agent can read files, write code, run commands, and search your codebase.

mita> explain the auth module in this project
mita> refactor the database connection to use async
mita> /commit

REPL Commands

Command Action
/quit, /exit, /q Exit the session
/clear Clear conversation history
/<skill> Invoke a skill (e.g., /commit, /review)

Single-Shot Prompts

For one-off questions without entering an interactive session:

mita ask "explain the auth module in this project"

Pipe input from other commands:

cat error.log | mita ask "what went wrong?"
git diff | mita ask "review these changes"

Model Management

# See what fits your hardware
mita models recommend

# List installed models
mita models list

# Pull a model
mita models pull qwen2.5-coder:14b

# Set as default
mita models default qwen2.5-coder:14b

Next Steps