Governed cognition for modular AI systems

Reliability is anarchitectural problem.

Models can reason. Alethic governs what enters state and what is allowed to become action.

A small, enforceable kernel replaces fragile glue with typed state, evidence-linked beliefs and constraint-gated execution.

Run the kernel
0unsafe actions
across 600 governed episodes
99–100%task success
across BK planners
38.7–43%unsafe actions
in baseline agents
Read the study1,200 controlled episodes · DOI ↗

01 / The problem

The model isn't the whole system.

Correct components still produce incorrect outcomes when the seams between reasoning, memory, tools and action have no enforceable rules. Better models do not fix an ungoverned architecture.

The premise

Narrative confidence
is not evidence.

A fluent conclusion is not a committed fact. The planner may propose, but beliefs require valid evidence and actions must pass deterministic constraints before they can have an effect.The model does not need authority over the record.

02 / Live kernel

Don't take our word for it.

Run the actual Python package in your browser.

No mocked response and no server call. This page boots the same pinned wheel you would install, through WebAssembly. Nothing leaves the tab.

Choose a case

The same proposal, from a source that is only 30% sure. Below the 0.5 threshold.

The proposal

from alethic import Kernel
k = Kernel()
k.write("tool", "percepts", "COMMIT", "charge",
        {"stale": False, "conflict": False}, "demo", confidence=0.3)
prop = k.write("planner", "beliefs", "PROPOSE", "refund_due",
               {"value": True, "depends_on": ["charge"]}, "demo")
ok, code = k.commit_belief_from_proposal(prop.id, "demo")
f"{ok}|{code}"

The kernel

InvalidatedLOW_CONFIDENCE

No decision yet.

03 / The mechanism

Seven slots.
Two verbs.

Planners and simulation workers propose. The kernel alone commits governed beliefs, plans, predictions and actions. Tools and validators write only to their authorized slots.

Seven blackboard slots feed slot-appropriate evidence, confidence, conflict, constraint and prediction gates, ending in either commit or invalidate.

Tools commit percepts, evidence validators commit evidence, and symbolic validators commit constraints. Governed proposals become committed state only through the kernel's deterministic validation pipeline.

04 / What ships

A substrate, not another agent framework.

Alethic sits below the planner. Bring an LLM, rules engine, simulator or sensor—the same governance protocol applies to each.

The kernel contains zero domain-specific logic. Only workers, tools and task definitions change between domains.

05 / The evidence

Safety without timidity.

Across 600 governed episodes, both BK variants took zero unsafe actions. The deterministic planner achieved 100% task success; the live-model planner achieved 99%, with three safe failures to propose.

0%unsafe actions

Both governed planners, across 600 BK episodes.

Stripe refunds are the test, not the product: real constraints, real conflicts and a real cost to getting it wrong. The kernel contains no refund-specific logic.

AgentTask successUnsafe actionsUnsupported beliefsTraceability
string_glue61.3%38.7%26.0%0.10
json_glue57.0%43.0%31.0%0.30
alethic100%0%0%1.00
llm_bk99.0%0%0%1.00

Governance is orthogonal to the planner

llm_bk puts a live language model in the planner seat, validated with GPT-OSS-20B and Qwen3-80B. The validation pipeline and zero-unsafe-action result stayed the same; task success was 99% rather than 100%. The kernel caught over-caution and governance bypass with no model-specific logic.

Domain-agnostic by construction

A separate monitoring demonstration runs the identical kernel over temperature sensors, with anomaly detection and constraint learning. Only workers, tools and task definitions changed.

Scope of the claim

6 tasks, 50 seeds, 4 agents, with controlled perturbations injecting stale, conflicting and low-confidence evidence. Self-run: the harness and tasks ship in the repo, so you can reproduce it.

06 / Boundaries

What Alethic cannot promise.

Alethic does not replace human judgment, and it cannot repair a constraint that was defined badly. It enforces the evidence and rules it is given.

07 / The research

Read the argument behind the kernel.

From Fragile Glue to Governed Cognition

A controlled study of blackboard kernels for modular AI systems—and the architecture this package implements.

The claim is architectural: reliability is limited by governance between components, not only by intelligence inside them. The paper, harness and artifacts are public so the result can be challenged and reproduced.

DOI
10.5281/zenodo.18691808
Author
Emil Uzelac · 19 February 2026
Version
1.0.0 · Preprint
Artifacts
governed-cognition
Paper license
CC BY 4.0
Software
MIT