An institutional-intelligence operating system — a council of agents that remembers, deliberates, learns, evaluates itself, and improves.
FastAPI · SQLite · runs on your machine · no account, no telemetry, no cloud required
Most multi-agent systems are a collection of agents that talk. The moment a session ends, everything is forgotten — no one remembers what was decided, whether it was right, or who disagreed. THE HOUSE is built the other way around: memory and self-awareness are the core, and the agents are the council that operates on top of it.
A council that forgets every meeting is not a council. A council that cannot evaluate its past decisions is not intelligent. THE HOUSE keeps an institutional memory, grades its own predictions over time, tracks each member's reputation, governs every verdict against a constitution, preserves dissent, and maintains a single living model of its own current understanding that all fourteen members share.
Requirements: Python 3.10+ · ~500 MB disk · a model (local via Ollama, or any cloud API key). No GPU required — a small local model runs on CPU.
git clone https://github.com/ElmatadorZ/skynetclaw.git
cd skynetclaw
# 1 — configuration (both files are git-ignored; templates are provided)
cp .env.example .env
cp backend/settings.example.json backend/settings.json
# 2 — dependencies (16 packages + 2 for tests, no build step)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r backend/requirements.txt
# 3 — a local model (skip if you are using a cloud API)
ollama pull llama3.1:8b
# 4 — create the institutional database
cd backend && python migrate.py up
# 5 — run
python -m uvicorn main:app --host 127.0.0.1 --port 8766Shortcuts:
./start.sh(Linux/macOS) ormake setup && make rundoes steps 1–5 for you.docker compose up -dskips Python entirely. Full guide: docs/INSTALL.md.
Then open THE CONTINENTAL DIVISION.html in a browser — that is the chamber where you talk to
the council.
[Governance] GPS-2 gate armed — deny-by-default · human gate on irreversible tools
[Kernel] PRE_ACT armed — governance.gps2, shadow.fabrication, approvals.prior_deny, run.tool_allow
[Kernel] PRE_VALIDATE armed — cvl.quality_gate
[Kernel] PRE_COMMIT armed — guidance.g1, warrant.cee_c1
[Council] L5 six specialists loaded
[Prompts] full: 22,054 chars · compact: 12,672 chars
INFO: Uvicorn running on http://127.0.0.1:8766
Confirm it is healthy:
curl http://127.0.0.1:8766/api/system/health
# {"ok":true,"status":"YELLOW","summary":"13 green · 1 degraded", ...}YELLOW is expected before a model runtime is running — the ollama check reports degraded and
names the remedy. Start Ollama and the same call returns GREEN — all 14 checks pass. Only RED
means the House itself is faulty, and only RED makes ok false.
| Surface | Where |
|---|---|
| The chamber (talk to the council) | THE CONTINENTAL DIVISION.html |
| Council Intelligence (House Mind · reputation · governance · outcomes) | http://127.0.0.1:8766/api/council/dashboard |
| Health report | http://127.0.0.1:8766/api/system/health |
| Bridge console | http://127.0.0.1:8766/bridge |
SkynetClaw is model-independent. The reasoning layer does not care which engine answers.
| Setup | How | Notes |
|---|---|---|
| Ollama (default) | ollama pull llama3.1:8b, set model in settings.json |
fully local, no key, no data leaves the machine |
| llama.cpp / any OpenAI-compatible server | point .env at its base URL |
works with llama-server, LM Studio, vLLM |
| Cloud — OpenAI · Anthropic · Gemini · Groq · OpenRouter · DeepSeek · xAI · Mistral · Together | put the key in .env |
a universal adapter is built in |
Two models are configured separately in backend/settings.json, and this matters:
The model that reasons does not have to be the model that executes. A small fast model on the execution path keeps tool loops cheap without dulling the deliberation.
Full provider matrix — Ollama, llama.cpp, and ten cloud APIs: docs/MODELS.md.
- Council of 14 — Elite Commander, Atlas, Analyst, Strategist, Skeptic, Auditor, Governor, Architect, Scout, Storyteller, Concierge, Forecaster, Sentinel, Executor — deliberating in parallel, then converging.
- Institutional Memory — every deliberation is persisted, archived (SQLite + Obsidian), and recallable.
- Recall Quality — recalled memories carry similarity · accuracy · calibration · outcome · validity; the House recalls justified information, never raw history, and never cites its own disproven conclusions as authority.
- Deliberation Briefing — before the council reasons, it reads a synthesized brief of its own graded history: validated lessons, repeated errors, blind spots.
- Governance Engine — the constitution is enforced, not advisory: forecasts without an invalidation condition, claims without evidence, and omitted minority opinions are rejected. Dissent is tracked; the House learns when a minority was right.
- Reputation — a calibrated, recency-weighted Bayesian skill estimate per member (bounded, overconfidence-penalised).
- The House Mind — a shared cognitive state that can answer, at any moment: what do we know · what don't we know · what do we believe · why · what changed our mind.
- "Prove it" — a receipt for any belief: who asserted it, on what evidence, who dissented and
whether that was ever resolved, what would falsify it, and the calibrated track record of the
asserters. The field that matters is
trust_basis: UNEARNED when a belief carries a confidence figure but nobody who asserted it has ever been graded against reality. Most beliefs start there, and saying so is the point. - Tool Provider Layer — external tool sources reach the House as providers, the way runtimes
reach it through drivers. MCP servers are provider #1: tools arrive namespaced
mcp__<server>__<tool>so an external server can never shadow a native tool and inherit its trust, output is quarantined as untrusted, and the gate escalates anything the server has not itself declared read-only.
curl "http://127.0.0.1:8766/api/house/prove?claim=your+claim+here"
curl http://127.0.0.1:8766/api/house/self-audit # the loop's vital signs, stated against itself
curl http://127.0.0.1:8766/api/house/judgments # what is open, and who it is waiting onSee docs/ for the architecture of each layer.
Directive
↓
Recall Quality ── justified prior memories (validity-graded)
↓
Briefing Engine ── synthesized history (lessons, errors, blind spots)
↓
House Mind ── shared current understanding (read before deliberating)
↓
Council (14) ── parallel deliberation → verdict
↓
Governance ── enforce the constitution; preserve dissent
↓
House Mind Update + Memory + Predictions (graded at 7/30/90/180 days)
↓
Verdict
The institutional subsystem is a set of focused modules over one SQLite database, with a versioned, reversible migration history (currently schema v5):
| Module | Role |
|---|---|
institutional_db.py |
schema owner · migrations · one connection layer |
council_memory.py |
persists sessions · outcome-weighted recall |
recall_quality.py |
the 5 recall scores + 5 validity states |
deliberation_briefing.py |
synthesizes history into a council brief |
house_state.py |
the House Mind — shared cognitive state + belief evolution |
governance_engine.py |
enforces the constitution · minority tracking |
agent_reputation.py |
Bayesian, calibrated, recency-weighted reputation |
outcome_tracker.py |
7/30/90/180-day prediction reviews |
scheduler.py |
durable Outcome Clock |
council_intelligence_api.py |
/api/council/* + the Council Intelligence UI |
Everything machine-specific lives in two git-ignored files, with templates provided:
| File | Holds |
|---|---|
.env |
optional cloud provider keys and integration tokens — local Ollama needs none |
backend/settings.json |
model choices and your Obsidian vault path (vault is optional) |
Optionally, tell the council who you are: copy backend/prompts/USER.example.md to
backend/prompts/USER.md and fill it in. It is git-ignored, and the system runs fine without it.
No secrets, databases, or personal paths are ever committed — CI re-checks this on every push.
SkynetClaw runs autonomous agents that can read and write files, run tools, and reach the network. That is the point of it, and it is also the risk.
- It is not sandboxed by default. Point it at a workspace you are willing to lose.
- The GPS-2 permission gate is deny-by-default, and irreversible actions require a human gate. Do not disable those unless you understand the consequence — they are what makes autonomy survivable.
- Model output is not verified truth. The Reality Grading loop grades claims against evidence precisely because a model's account of its own success cannot be trusted.
See NOTICE for the full statement.
| Platform | Backend | Launcher scripts |
|---|---|---|
| Linux | ✅ verified in CI | use the commands above |
| Windows | ✅ verified in CI | install.bat · start.bat |
| macOS | use the commands above |
Linux specifics — system packages, discovery paths, systemd unit, known gaps: docs/LINUX.md.
CI installs from requirements.txt alone on Ubuntu and Windows across Python 3.10 / 3.11 / 3.12,
runs the migration, boots the server, and requires /api/system/health to report ok. If that
badge is red, the claim that this works is not currently true.
cd backend
python -m pytest -q # 734 tests| Symptom | Cause | Fix |
|---|---|---|
ModuleNotFoundError |
virtualenv not active | activate .venv, re-run pip install -r backend/requirements.txt |
no such table |
database not initialised | cd backend && python migrate.py up |
| Port 8766 already in use | a previous instance is running | change --port, or stop the old process |
| Model calls hang or fail | Ollama is not running | ollama serve, then ollama list to confirm the tag |
settings.json not found |
step 1 skipped | cp backend/settings.example.json backend/settings.json |
| Health reports non-GREEN | a subsystem failed to load | read /api/system/health — each check names what is missing |
SkynetClaw composes several standalone standards by the same author, all Apache-2.0:
| Repository | Answers |
|---|---|
| First Principle Codex OS | don't make it up |
| Genesis Protocol | know when not to answer |
| Genesis Governance OS | who may do what |
| Genesis Reality Grading | was it actually right? |
| Genesis OS Blueprint | the reference architecture |
Apache License 2.0 — OSI-approved, with an express patent grant. Free to use, modify, and redistribute, including commercially, at any revenue. Keep the licence and NOTICE, and state any changed files.
Attribution is requested but not required beyond NOTICE: Built on SkynetClaw by Bunyawat Dechanon (ElmatadorZ).
Models are temporary. Protocols endure.