GO WEIGHTLESS.
Sovereign intelligence on ordinary hardware.
SCCE is a self-contained cognitive engine that ingests evidence, builds durable knowledge, reasons, plans, acts, and learns — without a foundation-model runtime.
No LLM inference. No vector-database RAG loop. No GPU cluster. No cloud dependency.
SCCE compiles evidence, language, reasoning, and learned skills into sparse, inspectable cognitive structures. At runtime, it activates only the structures relevant to the task.
CPU-native · Local · Persistent
Implemented · Benchmarked · Operational
SCCE is an implemented cognitive runtime, not a proposal, model wrapper, or retrieval layer. This repository contains its evidence-preserving ingestion, persistent cognitive graph, reasoning, planning, learned language, durable memory, application surfaces, and sealed evaluation harness.
Measured against this repository's own gates, on a live PostgreSQL-backed runtime with a real ingested Wikipedia corpus (2026-08-17):
- Test suite: 298 test files / 1,989 tests passing across the kernel, server, and adapter packages, including the live-database test files run against a real PostgreSQL instance.
- Sealed evaluation rehearsal (run
rehearsal-20260817g): 6/6 exact on the sealed 4-document, 6-question harness versus 4/6 for the independent BM25 reference baseline — with the evaluation now sealed for real (the runtime is constrained to source versions byte-matched to the manifest via a trusted in-process evidence allowlist, the same constraint the baseline runs under) and scored on a structural coherence axis alongside required-strings (no stitched fragments, unbalanced quoting, or fragment-initial sentences; language-agnostic checks, no word lists). Every answer is a verbatim, document-contiguous excerpt from the correct source article with a byte-sha256-verified citation; the deliberately unanswerable probe abstains correctly. One honest defect remains and is flagged by the scorer itself: the abstention's answer surface is a topic stub ("what boiling point"), not prose — learned abstention phrasing needs generation mass the current brain lacks. Earlier runs' raw answers (b through f) are retained intools/sealed-eval/artifacts/showing the full defect-to-fix progression. Single-operator rehearsal scope; the independent public-review protocol indocs/PUBLIC_REVIEW_CONTRACT.mdhas not yet been executed. - Live rehearsals: the PostgreSQL schema/activation rehearsal and the end-to-end adapter rehearsal (ingest → promote → live turn → exact byte-verified citation) both pass against a real database.
- Enumeration-shaped questions: "list the main characters of X"-style requests return a contiguous, byte-verifiable multi-sentence excerpt (learned response-form budget; no keyword lists), verified live against the hydrated Wikipedia brain — the answer window is constructed in the same normalization space the source-excerpt verifier compares in, so verification holds by construction.
- Post-training query latency: whole-novel corpus training exposed a
planner pathology (correlated
EXISTSover a multi-GB observations table seq-scanned once per candidate profile); replaced with a recursive index skip scan — measured live at 53ms versus 3.5 minutes for the same result, turn-path profile query from stuck (25+ minutes) to ~1s cold.
Closed-weight AI rents intelligence from somebody else's data center.
Open-weight AI lets you host the weights yourself — but still requires billions of parameters, accelerator infrastructure, and repeated dense inference.
SCCE removes foundation-model weights from the runtime architecture entirely.
| Dense AI | SCCE |
|---|---|
| Intelligence encoded in opaque model weights | Intelligence compiled into inspectable graph structures |
| Dense model evaluated repeatedly | Bounded, task-local activation |
| Knowledge blended into parameters | Evidence retains identity, time, and provenance |
| Context disappears between sessions | Knowledge, skills, and outcomes persist |
| Accelerator-centered inference | CPU-native execution |
| Provider or model controls the intelligence | The operator owns the runtime and its memory |
INGEST → STRUCTURE → ACTIVATE → REASON → PLAN → ACT → LEARN
- Ingests documents, source code, and spreadsheets while preserving exact source identity, coordinates, and timestamps.
- Compiles observations into a directed cognitive graph instead of embedding text into a retrieval index.
- Activates a bounded, task-relevant graph field instead of evaluating a dense model for every generated token.
- Constructs answers with explicit evidence, contradiction, and confidence traces.
- Separates what may be claimed from how it is expressed.
- Applies reviewed code patches through a loopback-only VS Code integration backed by exact-byte workspace snapshots.
- Preserves learned knowledge and outcomes in operator-controlled storage.
SCCE does not treat provenance as a citation added after generation.
Every admitted observation retains:
- where it came from;
- when it was observed;
- the exact source span that supports it;
- how it entered the graph;
- which reasoning path activated it;
- what contradictions or uncertainty remain.
When the available evidence cannot support an answer, SCCE can qualify the result, request more information, or decline to invent one.
Source material
|
Evidence-preserving ingestion
|
Entities, relations, events, and constructions
|
Persistent cognitive graph
|
Task-conditioned local activation
|
Reasoning, planning, and capability selection
|
Evidence-bound answer or proposed action
|
Outcome recording and continued learning
The reasoning layer determines what the evidence licenses SCCE to say or do. A separate realization layer determines how to express it. Surface fluency cannot authorize unsupported facts.
For the complete technical design, see docs/ARCHITECTURE.md.
SCCE is exposed through:
- a local HTTP API and a chat-first workbench in the browser;
- a chat sidebar in VS Code, with reviewed code-change requests reachable from the same conversation;
- a command-line interface;
- repository and trace inspection through
scce-dev-mcp; - PostgreSQL-backed persistent cognitive state.
The interfaces do not contain separate intelligence. They operate against the same local cognitive engine.
All captures below are the real runtime answering against its live PostgreSQL brain — nothing staged, no mock responses.
- 30-second demo video — the workbench answering questions with source-cited answers and expanding the live evidence trace (recorded in real time, played back at 6.4×).



(A CLI capture was removed 2026-08-17: its text was genuine command output, but the image was an HTML re-rendering styled as a terminal, not a screenshot — which fails this section's own "nothing staged" bar. A real terminal capture will replace it.)
Requirements: Node.js 24.18+ (24.x), pnpm 10, and PostgreSQL.
Install and validate:
pnpm install
pnpm validateConfigure the database:
$env:SCCE_DATABASE_URL="postgresql://<user>:<password>@<host>:<port>/<database>"
pnpm scce db migrate
pnpm scce db verifyStart the server or CLI:
pnpm server
pnpm scceFull setup, configuration, rehearsal commands, and VS Code packaging are documented in docs/USER_GUIDE.md.
packages/kernel cognition, graph, evidence, planning, and language
packages/adapters-node PostgreSQL, files, documents, and spreadsheet ingestion
packages/server HTTP API and workbench server
packages/cli command-line interface
packages/ui workbench-facing models and surfaces
packages/vscode loopback-only VS Code integration
tools/scce-dev-mcp repository and trace inspection
docs architecture, guides, and normative contracts
docs/ARCHITECTURE.md— cognitive architecture and runtime pipelinedocs/USER_GUIDE.md— installation and operationdocs/API_SURFACE.md— HTTP APIdocs/README.md— complete documentation indexSECURITY.md— security posture and vulnerability reporting
SCCE is source-available for inspection under a proprietary license. It is not open source, and no license to use, copy, or redistribute the software is granted except as stated in LICENSE and NOTICE.
Own the runtime. Keep the learning.
SCCE — the weightless cognitive engine.
