Integrity infrastructure for AI systems.
Mobius Substrate is a set of open-source tools that make integrity measurable, enforceable, and correctable in AI-governed systems. It provides intent accountability, integrity scoring, and multi-agent consensus — so AI systems can be held to their own stated values over time.
| Component | What It Does | Status |
|---|---|---|
| EPICON | Records why decisions were made, not just what changed | Live |
| MII | Scores system integrity on a 0-1 scale, continuously | Live |
| MIC | Credits earned through verified integrity, not speculation | Beta |
| Sentinel Council | AI agents that govern the system, not users | Live |
| DVA | Distributed agent orchestration with constitutional constraints | Beta |
git clone https://github.com/kaizencycle/Mobius-Substrate.git
cd Mobius-Substrate
npm install
# Start the integrity ledger
cd services/civic-ledger
npm run dev
# Check the service is running
curl http://localhost:3000/health
# Query the integrity score
curl http://localhost:3000/giFull quickstart: docs/05-IMPLEMENTATION/guides/quickstart/HELLO_WORLD.md
HUMAN INTENT
|
OAA HUB --> parses goals into specs
|
THOUGHT BROKER --> multi-agent consensus (EPICON-3)
|
MOBIUS LEDGER --> immutable integrity record (EPICON-2)
|
INTEGRITY CORE --> validation & circuit breakers (EPICON-1)
|
LIVE SERVICES
| Service | Port | Purpose |
|---|---|---|
| Civic Ledger | 3000 | Immutable attestation storage and integrity record |
| GI Aggregator | 3001 | Global Integrity score computation |
| MIC Indexer | 4002 | Integrity credit accounting |
| OAA Hub | 3004 | Human intent to system specs |
| Thought Broker | 4005 | Multi-LLM consensus engine |
Mobius-Substrate/
├── apps/ # Deployable applications (portal, broker, indexer, shield, gateway)
├── services/ # Backend services (civic-ledger, gi-aggregator, epoch-burn)
├── packages/ # Shared libraries (integrity-core, civic-sdk, oaa-memory)
├── sentinels/ # AI governance agents (ATLAS, AUREA, EVE, JADE, HERMES + others)
├── docs/ # Technical documentation, architecture, operations
├── specs/ # Protocol specifications
├── tests/ # Test suites
├── scripts/ # Build and operations tooling
├── labs/ # Experimental proofs of concept
└── infra/ # Infrastructure and deployment configs
AI systems drift from their stated values. This happens because:
- Intent is undocumented. Git tells you what changed, not why.
- Integrity is unmeasured. There's no continuous score for whether a system is living up to its own commitments.
- Governance is an afterthought. Constraints get added after deployment, not built into the architecture.
Mobius Substrate addresses all three by making integrity a first-class system property — something that's measured, enforced, and corrected at the infrastructure level.
Developers: Start with the Quick Start above, then explore services/civic-ledger/ and packages/integrity-core/.
Researchers: See docs/07-RESEARCH-AND-PUBLICATIONS/for-academics/README.md for academic context, or browse docs/07-RESEARCH-AND-PUBLICATIONS/papers/ for published research on integrity-driven architecture.
Governance / Policy: See docs/07-RESEARCH-AND-PUBLICATIONS/for-governments/README.md for how Mobius applies to institutional AI governance.
Contributors: Read CONTRIBUTING.md. PRs require an EPICON intent block — we dogfood our own accountability tools.
| Service | URL |
|---|---|
| Mobius Portal | mobius-browser-shell.vercel.app |
| Integrity Ledger | civic-protocol-core-ledger.onrender.com |
We welcome contributions. The system uses additive-only changes with integrity gates.
- Read CONTRIBUTING.md
- Check Good First Issues
- Fork, branch, PR with EPICON intent block
- CI runs integrity checks automatically
Anti-nuke protection: PRs with >5 file deletions are blocked. Force-push to main is disabled.
AGPL-3.0 with Ethical Addendum — See LICENSE and ETHICAL_ADDENDUM.md
| Resource | Link |
|---|---|
| GitHub | github.com/kaizencycle/Mobius-Substrate |
| Substack | kaizencycle.substack.com |
| Issues | File an Issue |
Integrity infrastructure. Built slowly. Built with memory.