A PRIVATE
AI AGENT
FOR LOCAL
WORK.
Yemaka makes small Ollama models genuinely useful. Local memory, document retrieval, deterministic routing, and approval-gated tools — all running on your machine. No account. No telemetry. No cloud by default.
Small model.
Strong agent system.
Yemaka does the deterministic work before the model ever acts: retrieve context, scope the toolset, validate the plan, then verify the result.
A trusted core.
Practical surfaces.
Private until
you decide otherwise.
Yemaka starts from a clean local profile. Optional systems are explicit and policy-gated — nothing runs quietly in the background.
One local core.
Three surfaces.
Web app, CLI, and TUI all speak to the same Yemaka process. Switch between them without losing context.
# list installed models and pick one
$ yemaka model list
llama3.2:3b ✓ installed
qwen2.5:7b ✓ installed
phi3:mini ✓ installed
# ingest local documents into SQLite FTS5
$ yemaka ingest ./docs
indexed 47 files → yemaka.db
# run health checks before starting
$ yemaka doctor
✓ model reachable
✓ db healthy (WAL mode)
✓ tools registered
✓ approval policy loaded
# start a session — everything stays local
$ yemaka chat "Review this project"
routing → planning → context fetch
⚠ file:write detected — approval required
Public beta.
Built for local.
Install scripts prepare a Yemaka home directory, copy the web bundle if needed, and create a command shim. They do not download models, enable cloud, start background jobs, or activate internet access.
After install, yemaka doctor runs a full health check before you start your first session.
scripts/install/install.sh
yemaka doctor
yemaka serve
yemaka tui
powershell -ExecutionPolicy Bypass `
-File scripts/install/install.ps1
yemaka --help
yemaka doctor
$ yemaka model list
# selects an already-installed Ollama model
$ yemaka ingest ./docs
# local documents become searchable via SQLite FTS5
$ yemaka chat "Summarize this project"
# memory, RAG, tools, policy, and verification
# all remain entirely on your machine