// Your machine. Your models. Your code.

The AI Coding Assistant
You Actually Own.

Proverbs is a fully self-contained AI coding system β€” browser IDE, terminal chat, persistent project memory, local model training, and 70+ commands. Runs on Ollama or your own network server. No cloud. No subscriptions. Nothing leaves your machine.

Stizzop β€” proverbs β€” 80Γ—24
↓  Install Free Open IDE β†’
"Many are the plans in a person's heart, but it is the LORD's purpose that prevails." β€” Proverbs 19:21
70+Slash Commands
0Cloud API calls
100%Local Inference
$0Per month

Everything Claude Code does.
Offline. Free. Private.

Full tool suite, browser IDE, persistent memory, local training pipeline, and 70+ slash commands. Runs on Ollama (qwen2.5-coder, llama3.1, codestral) or a dedicated network inference server β€” no cloud required.

πŸ–₯️
Browser IDE
VS Code-style interface in your browser β€” file explorer, tabbed editor, integrated AI terminal, git status panel. Launch with /ide.
🧠
Persistent Project Memory
/remember saves facts about your project permanently. Auto-injected into every session so Proverbs never forgets your stack, conventions, or decisions.
⚑
Prefix KV Cache
Repeated system prompts are cached at the KV level β€” 40–80% faster time-to-first-token. No recomputation on every request.
πŸŽ“
Local Training Pipeline
Train your own BPE tokenizer, embedding model, and transformer β€” all from the CLI. /train tokenizer, /train embed, /train prune.
🎯
Goal Mode
/goal <condition> β€” Proverbs loops autonomously until the condition is met. Like Claude Code's agentic mode, fully local.
🌐
Network Inference Server
Run Proverbs on any machine and connect over LAN. One PowerShell script turns a Windows PC into a dedicated AI server. /backend auto finds it automatically.
⚑
Real-time Streaming
Tokens stream to your terminal as they generate. Works in both terminal and browser IDE simultaneously.
πŸ”§
Full Tool Suite
Read, write, patch files. Run bash. Search codebases. Commit to git. Fetch URLs. All tools available to the model automatically.
πŸ”
Semantic RAG
Local embedding search over your codebase. Finds related code by meaning, not just keywords. Trained locally with SimCSE β€” no external model.
πŸ“‹
.script Files
Drop a .script file in any project. Proverbs auto-loads your rules and conventions on every startup and /cwd change.
πŸ”
Self-Critique Loop
After every code response, the model reviews its own output for bugs and auto-corrects before handing back to you.
πŸ“¦
Project Intelligence
/scan detects your stack, import aliases, conventions, and git history. Injected into every prompt automatically.
🧩
Plugin System
Drop any .js file in ~/.proverbs/plugins/ to add custom tools the model can call β€” same interface as built-in tools.
☁️
Cloud API Fallback
Set ANTHROPIC_API_KEY or OPENAI_API_KEY β€” Proverbs calls them directly when you want cloud quality. No proxy needed.
πŸ§ͺ
Test Runner
Detects jest, vitest, pytest. Runs tests after AI writes code. Feeds failures back for self-correction automatically.
πŸ—ΊοΈ
Dependency Graph
Builds an import graph. Shows what breaks when you edit a shared file β€” before you touch it.
πŸ’Ύ
Session Branches
/branch saves a named conversation checkpoint. /checkout restores it. Never lose a working state.
↩️
Rewind + Undo
/rewind N rolls back N conversation turns. /undo restores any file write. Full time-travel for both chat and code.
πŸ€–
Multi-Agent Mode
/agents spawns 3 parallel sub-instances each attacking the task from a different angle. /fork runs a sub-task non-blocking.
πŸ”
Security Auditor
/security runs a full OWASP audit β€” injection, XSS, hardcoded secrets, missing auth β€” entirely on local inference. /review high for code review.
πŸ›‘οΈ
Sandbox Mode
/sandbox on blocks destructive bash patterns before they reach your shell. Rate limiting, auth middleware, audit log β€” all built in.
πŸ“Š
Performance Profiler
/profile shows live latency, tokens/sec, cache hit rate, memory usage, and backend stats. Know exactly what's happening under the hood.
πŸ”„
Self-Update
/update downloads the latest release and hot-swaps itself with zero downtime. No npm, no package manager required.
🌐
No-Key Web Search
Real web results via HTML scraping β€” DDG then Bing fallback. No API key, no rate limits, results cached locally for 24 hours.

VS Code in your browser.
AI built in.

Run /ide from the terminal to open a full development environment at localhost:4400. File tree, tabbed editor, integrated AI terminal, git panel β€” all talking to the same local inference server.

Proverbs IDE β€” localhost:4400
Explorer
πŸ“ src/
πŸ“„ app.ts
πŸ“„ auth.ts
πŸ“„ server.ts
πŸ“ tests/
πŸ“„ package.json
πŸ“„ .proverbs
server.ts auth.ts
1import express from 'express'
2import { rateLimit } from './lib/rateLimit'
Terminal
you> /review high
Reviewing git diff [high]...
βœ“ No critical issues. 1 suggestion: add request timeout to fetch call on line 34.
you> /remember uses Express + Prisma, PostgreSQL on Supabase
βœ” Remembered (1 total fact for this project).
you>

Running in under a minute.

One command. Requires Ollama with any model β€” qwen2.5-coder, llama3.1, codestral, or any other. Or use the built-in llama.cpp server and drop a .gguf file into ~/.proverbs/models/.

Terminal
curl -fsSL https://proverbscode.com/install.sh | bash
1
Checks for Node.js 18+ and installs it if missing via Homebrew
2
Detects Ollama if running β€” or starts the built-in llama.cpp server with any .gguf in ~/.proverbs/models/
3
Auto-connects to the best available backend β€” Ollama, LM Studio, Jan, llamafile, or your own network server
4
Installs the proverbs command globally. Run proverbs to chat or proverbs /ide for the browser IDE.
PowerShell (Run as Administrator)
irm https://proverbscode.com/install.ps1 | iex
1
Downloads and installs Node.js LTS silently if not present
2
Detects Ollama if running β€” or sets up the built-in llama.cpp server with a .gguf model
3
Installs the proverbs CLI globally and registers it in PATH
4
Open a new PowerShell window, run proverbs to chat or proverbs /ide for the browser IDE.
1
Install Node.js 18+
2
Drop any .gguf model into ~/.proverbs/models/ β€” or let the installer fetch one
3
Install: npm install -g proverbs-ai
4
Run proverbs in any project folder, or proverbs /ide for the browser IDE.
🍎
macOS
macOS 12+ Β· Node.js 18+ Β· Homebrew recommended
Download install.sh
πŸͺŸ
Windows
Windows 10+ Β· PowerShell 5.1+ Β· Run as Administrator
Download install.ps1
🐧
Linux
Ubuntu 20.04+ / Debian Β· Node.js 18+ Β· apt recommended
Download install.sh

Proverbs vs Claude Code

Claude Code is excellent β€” Proverbs is what you run when you want no cloud dependency, full data privacy, and the ability to train your own model.

Feature Proverbs Claude Code
CostFree foreverPer token
Works offlineβœ“βœ—
Data privacy100% localCloud processed
Browser IDEβœ“ (VS Code-style, /ide)βœ—
Persistent project memoryβœ“ (/remember, auto-injected)CLAUDE.md only
File read / write / patchβœ“βœ“
Bash executionβœ“βœ“
Git integrationβœ“βœ“
Web searchβœ“ (no API key)βœ“
Session persistenceβœ“ (save/resume/branch)βœ—
Train your own modelβœ“ (DPO, GRPO, LoRA, SimCSE)βœ—
Prefix KV cacheβœ“ (40–80% TTFT reduction)β€”
Goal / autonomous modeβœ“ (/goal condition)βœ“
Code reviewβœ“ (/review low|med|high)βœ“
Conversation branchesβœ“ (/branch, /checkout)βœ—
Plugin systemβœ“ (JS files in plugins/)MCP servers
Self-critique loopβœ“βœ—
Test runner integrationβœ“ (jest, vitest, pytest)βœ—
Security auditorβœ“ (OWASP, local)βœ—
Multi-agent modeβœ“ (/agents, /fork)βœ“
Inference backendOllama Β· llama.cpp Β· LM Studio Β· Jan Β· network serverAnthropic cloud only
Context window32k–128k (model dependent)200k
Reasoning qualityGood (qwen2.5-coder 1.5b–7b, codestral 22b)Excellent (Claude 4)
Cloud model fallbackDirect Anthropic / OpenAIAnthropic only