Skip to content
Documentation

Documentation

Mini-claude in a nutshell

Mini-claude is a fast, private terminal coding agent for self-hosted models. It reads your files, edits them, runs commands and browses the web, all from your machine. It speaks the OpenAI-compatible HTTP API and ships as a single Go binary. Nothing leaves your machine.

Quickstart

You need three things:

  1. An inference server running locally (we recommend Ollama).
  2. A tool-calling model pulled.
  3. The Mini-claude binary or the source.
ollama serve &
ollama pull qwen2.5-coder:7b

git clone https://github.com/hugostarte/Mini-Claude.git
cd Mini-Claude
go run ./cmd/tui

That’s it. The welcome screen appears, you describe a task, and the agent calls whatever tools it needs to get it done.

Next steps