OctoArch v5.0: Zero-Trust B2B Runtime with JSON-Based AI Personas

OctoArch v5.0 is an open-source zero-trust B2B cognitive runtime designed for enterprise applications requiring strict security and mathematical control over AI hallucinations. Built by a developer inspired by the OpenClaw ecosystem, it targets production use cases like fiscal and invoice extraction where standard text-based prompting falls short.
Core Architecture Features
The system implements three key architectural innovations:
- AIEOS (Digital DNA): Instead of standard text roles, OctoArch uses strict JSON files to define AI personas. These JSON files contain parameters like
logic_weight: 0.95,creativity_weight: 0.05, andrisk_tolerance: 0.0. The core runtime reads these files and dynamically injects the exact APItemperatureand PBAC constraints in real-time, physically altering the LLM's state based on the active role. - The Titanium Cage (Zero-Trust): OctoArch eliminates default "God Mode" access. It implements strict path jailing through a
validatePathfunction and segment filtering to prevent the AI from executing Path Traversal attacks (like../) on the host server. The default state is a restricted sandbox. - Swarm Hot-Swapping: The system can write its own tools at runtime. It spawns a Sub-Agent in an isolated sandbox, writes the code, runs
npx tsc --noEmitto validate TypeScript syntax, and promotes the validated code to production without restarting the server.
Technical Implementation
The developer built OctoArch specifically for B2B scenarios where mathematical control over hallucinations and strict sandbox security were not achievable with standard approaches. The project is open-sourced under the Apache 2.0 license, with the core engine available on GitHub.
The architecture represents a departure from text-based prompting systems, instead treating AI personas as JSON-defined objects with precise numerical weights that directly influence LLM behavior and security constraints.
📖 Read the full source: r/openclaw
👀 See Also

HyperResearch: Open-source Claude Code skill harness turns it into a deep research agent
HyperResearch converts Claude Code into a 16-step deep research pipeline with persistent knowledge store, fact-checking, and authenticated web sessions. Open-source, single-command install, outperforms OpenAI and Google on DeepResearch Bench.

AlterSpec v1.0: Runtime Policy Enforcement for AI Agents
AlterSpec v1.0 is an open-source runtime enforcement engine that sits between AI agents and their tools, evaluating actions against YAML-defined policies before execution. It provides allow/deny/review decisions, cryptographic policy signing, and audit logging.

Super Claude browser extension makes Claude.ai UI fully customizable
A developer built a browser extension that lets users customize every aspect of Claude.ai's interface — colors, fonts, layout, plus usage tracking and token counting. The extension works on Chrome and Firefox and was developed using Claude itself.

CogniLayer: An MCP Server for Persistent Memory in Claude Code
CogniLayer is an open-source MCP server that provides Claude Code with persistent memory across sessions using a SQLite database with FTS5 full-text search and vector embeddings. It solves the problem of Claude forgetting project context between sessions.