Install ยท Features ยท 96% Savings ยท Website
๐ Languages:
๐ฌ๐ง English |
๐ง๐ท Portuguรชs |
๐ช๐ธ Espaรฑol |
๐ซ๐ท Franรงais |
๐ฏ๐ต ๆฅๆฌ่ช |
๐ฐ๐ท ํ๊ตญ์ด |
๐จ๐ณ ็ฎไฝไธญๆ |
๐ฎ๐น Italiano |
๐ท๐บ ะ ัััะบะธะน |
๐ต๐ฑ Polski |
๐ฎ๐ณ เคนเคฟเคจเฅเคฆเฅ |
๐ธ๐ฆ ุงูุนุฑุจูุฉ |
๐ฎ๐ฑ ืขืืจืืช |
๐ฒ๐พ Bahasa Melayu |
๐ฎ๐ฉ Bahasa Indonesia
Simplicio is a terminal AI coding agent โ a single binary that replaces your entire AI-assisted development workflow: chat, code generation, repository context, planning, local multi-agent orchestration (64 โ 600 agents), and evidence-backed PR delivery.
Runs on your machine. Your code never leaves your control. Remote models are optional, not required.
๐ฅ Save up to 96% of tokens vs traditional agents โ more than Caveman (65%) or RTK (80%). Every interaction shows exactly how many tokens you saved. Single Rust binary, zero deps.
pip install simplicio-installer
simplicio installbrew install simpliciocurl -fsSL https://raw.githubusercontent.com/wesleysimplicio/simplicio/master/install.sh | shpowershell -c "irm https://raw.githubusercontent.com/wesleysimplicio/simplicio/master/install.ps1 | iex"Done. One command. No package manager, no model configuration.
Without Simplicio: every AI session rediscovers your repo, loads too much context, repeats prompts, burns paid tokens.
With Simplicio:
| Optimization | Savings |
|---|---|
| ๐บ๏ธ Repo Map โ compressed context instead of reading raw files | ~70% |
| ๐ง Memory Recall โ known facts are not re-derived | ~80% |
| โ๏ธ Deterministic Editing โ changes without spending LLM tokens | 100% (output) |
| ๐ Local LLM โ classification, summarization, low-risk edits | ~90% |
| ๐ก Remote LLM โ only for planning and complex decisions | ~85% |
| ๐ Local Fan-out โ 64โ600 agents before scaling to cloud | ~95% |
| ๐ Combined: up to 96% total savings | ~96% |
Every Simplicio response shows real savings: Simplicio: ~X tokens spent ยท saved ~Y (Z%)
| Command | Description | Tokens |
|---|---|---|
simplicio map --repo . |
Maps the repository for LLMs | ~70% savings |
simplicio memory "query" |
Neural recall (FTS + vectors) | ~80% savings |
simplicio edit '{...}' |
Deterministic file editing | Zero tokens |
simplicio coding-loop "task" |
Iterates until tests pass | Auto-repair |
simplicio deliver certify |
5 quality gates before shipping | Deterministic |
simplicio run "task" --agents N |
Multi-agent orchestration | Local-first |
| ๐ชจ Caveman | ๐ง RTK | ๐ฅ Simplicio | |
|---|---|---|---|
| Approach | Output style compression | Shell command proxy | Full agent runtime |
| Max savings | ~65% output tokens | ~80% on shell commands | Up to 96% total |
| Input compression | โ | โ (filtered) | โ Repo map + neural memory |
| Output compression | โ (caveman-speak) | โ | โ Zero-token deterministic edits |
| Local LLM | โ | โ | โ Built-in llama.cpp |
| Multi-agent | โ | โ | โ 64 โ 600 local agents |
| Memory across sessions | โ | โ | โ FTS + vector recall |
| Evidence chain | โ | โ | โ sha256 sealed receipts |
| Language | JS/Python (skill) | Rust (binary) | Rust (single binary) |
| License | MIT | Apache 2.0 | Proprietary |
| Stars | 72.5k | 62.2k | โญ You're early |
Bottom line: Caveman makes the AI talk less. RTK makes commands output less. Simplicio makes the AI think less โ by remembering, mapping, editing deterministically, and running locally before ever touching a paid LLM.
| Simplicio saves 96% where Caveman saves 65% and RTK saves 80%. |
LLM (Claude/Codex/Gemini) Simplicio Runtime (Rust)
| |
| 1. Orient | simplicio map
| 2. Recall | simplicio memory
| 3. Decide |
| 4. Edit โโโโโโโโโโโโโโโโโโโโโโโ> | simplicio edit (0 tokens)
| 5. Verify <โโโโโโโโโโโโโโโโโโโโโ | simplicio deliver certify
| 6. Iterate | simplicio coding-loop
The LLM reasons. Simplicio executes deterministically.
- ๐ Local-first โ built-in llama.cpp, scales to remote only when needed
- ๐ช Tiered agents โ 64 โ 100 โ 200 โ 600 local agents before paid cloud
- ๐ Shannon novelty gate โ filters redundant outputs (zero tokens on dedup)
- ๐ Sealed receipts โ sha256 per artifact, tamper-proof evidence chain
- ๐ก๏ธ 5 delivery gates โ acceptance, validation, run-verify, regression, self-review
- โก Action gate โ risk classification + blocklist for chat-initiated mutations
- ๐ MCP/ACP โ Model Context Protocol + Agent Client Protocol
- ๐ Gateways โ Telegram, Discord, Slack, WhatsApp
- ๐งฉ Skill system โ loads and chains reusable capabilities
- ๐พ Memory DB โ persistent FTS + vector recall across sessions
- ๐ LLM router โ no LLM โ local LLM โ remote LLM automatically
- ๐ฅ๏ธ Cross-platform โ macOS, Linux, Windows, single binary
Deterministic commands are FREE forever:
map, validate, edit, deliver, checkpoint
AI features are free during the public beta with no end date. Billing will be defined in future updates.
simplicio license status| Requirement | Minimum | Recommended |
|---|---|---|
| RAM | 8 GB | 16 GB+ |
| Storage | 5 MB | 1.5 GB (with local LLM) |
| OS | macOS 13+, Linux, Windows 10+ | macOS ARM64 |
| Terminal | any modern terminal | WezTerm / Alacritty / Ghostty |
This repo ships committed release binaries plus the packaging/tooling around them (npm/pypi/Homebrew wrappers, install scripts, a distribution-consistency checker). The official command to run that tooling's unit test suite:
pip install -r requirements-dev.txt
python -m pytest tests/unit -v --cov=scripts --cov-report=term-missing --cov-fail-under=85See docs/testing-strategy.md for what's covered, what's intentionally out of scope, and the plan for the rest of the testing epic. See also CONTRIBUTING.md.
Proprietary. Binary free to download and use. AI features free during the public beta. See LICENSE.
- Discord โ chat, support, early access
- GitHub Issues โ bugs and feature requests
๐ฅ Simplicio โ Your code, your machine, 96% cheaper. ๐ฅ
