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.
curl -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 downloads the Runtime binary, verifies its checksum, and validates the embedded Python source bundle. The installer does not use a Python package manager or sibling checkout. A Google login with an active entitlement is mandatory before product commands run; public beta access may be free, but it does not bypass login.
After login, the installer registers Simplicio as a local Streamable HTTP MCP
server at http://127.0.0.1:8787/mcp. Open Codex MCP settings: the Simplicio
row will show Authenticate. Click it to use the Google-backed login at
simpleti.com.br/simplicio/login. The Runtime validates the bearer token and
active entitlement on each MCP request; beta access does not bypass this gate.
Other MCP hosts keep the local stdio fallback. If the host was configured
before this release, run simplicio mcp register and reload its MCP settings.
The Runtime release is the distribution boundary. The generated binary carries the real Python source trees for the six projects below. They remain Python projects; the Runtime host is not a native-Rust rewrite and normal installation does not clone or download their repositories:
| Capability | Binary surface |
|---|---|
| Mapper | Embedded Mapper Python source + Runtime bridge |
| Dev CLI | Embedded Dev CLI Python source + Runtime bridge |
| Loop | Embedded Loop Python source + Runtime bridge |
| Fast | Embedded Fast Python source + Runtime bridge |
| Prompt | Embedded Prompt Python source + Runtime bridge |
| Sprint | Embedded Sprint Python source + Runtime bridge |
Verify a release after installation:
simplicio ecosystem verify --jsonThe verification output includes the source archive size/digest, embedded component versions, provenance commits, and compatibility status. Updating the Runtime release updates this bundle. The binary still uses an available Python 3 interpreter to execute the embedded sources; it never downloads packages or falls back to sibling checkouts. Legacy external adapters and portable Claude skills may still be used explicitly, but they are outside the normal path.
After installation, authenticate with the Google-backed device flow when prompted, or run:
simplicio auth login
simplicio auth status --jsonThis public repository also publishes the Simplicio Claude Code marketplace:
/plugin marketplace add wesleysimplicio/simplicio
/plugin install simplicio-loop@simplicio
/plugin install simplicio-prompt@simplicio
/plugin install simplicio-sprint@simplicio
The plugin bundle is documented in PLUGIN.md. These are optional
Claude Code skill surfaces; they are not required to obtain the Runtime's
embedded ecosystem. When present, the skills call the Runtime through
simplicio serve --mcp --stdio.
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 may be free while the public beta flag is active. Login and an active entitlement are still required; when beta access ends, the entitlement must come from an active subscription.
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 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. ๐ฅ
