// Your machine. Your models. Your code.

The Faith-Based Smart Coding Language
You Actually Own.

Proverbs is a fully self-contained, faith-based smart coding language β€” with its own built-in AI, a browser code editor, memory that never forgets, on-device model training, and 70+ commands. 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.

Its own built-in AI, a browser code editor, project memory that sticks, and 70+ shortcut commands. Drop a model file into ~/.proverbs/models/ and start coding. No external services. No internet required after setup.

πŸ–₯️
Browser IDE
VS Code-style interface in your browser β€” file explorer, tabbed editor, integrated smart 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.
⚑
Near-Instant Repeat Responses
Proverbs remembers the setup it's already seen, so it doesn't redo that work every time β€” replies start 40–80% faster on follow-up questions.
πŸŽ“
Train Your Own AI
Teach Proverbs your own code and style β€” build and fine-tune your personal model right from the command line. /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.
🌐
Run It On Another Computer
Run Proverbs on a spare machine and connect to it over your home network. One script turns a Windows PC into a dedicated coding server, and /backend auto finds it for you.
⚑
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.
πŸ”
Smart Code Search
Search your codebase by meaning, not just exact keywords β€” Proverbs finds the related code you're actually looking for. Runs entirely on your machine, no outside service.
πŸ“‹
.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.
☁️
Claude Cloud Cascade
Run /cloud key to route through Claude (Haiku by default, Opus on demand) for frontier-quality coding β€” with automatic fallback to your local model when offline. Or set ANTHROPIC_API_KEY/OPENAI_API_KEY directly. You choose: fully local, or cloud-fast.
πŸ§ͺ
Test Runner
Detects jest, vitest, pytest. Runs tests after Proverbs 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.
Smart coding built in.

Run /ide from the terminal to open a full development environment at localhost:4400. File tree, tabbed editor, built-in smart terminal, git panel β€” all powered by the same AI running on your machine.

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. The built-in AI starts automatically β€” just drop a model file into ~/.proverbs/models/ and run proverbs. No external setup.

Terminal
curl -fsSL https://proverbscode.com/install.sh | bash
1
Checks for Node.js 18+ and installs it if missing via Homebrew
2
Starts the built-in Proverbs AI automatically β€” nothing else to install
3
Downloads a starter model so you can run right away β€” swap in a different one anytime
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
Starts the built-in Proverbs AI automatically β€” nothing else to install
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βœ“ (fine-tune on your own code)βœ—
Near-instant repeat responsesβœ“ (40–80% faster follow-ups)β€”
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)βœ“
Where the AI runsBuilt-in Β· LM Studio Β· Jan Β· your own 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