CANONIC Foundation

CANONIC Whitepaper

The specification IS the product. If it runs, it is compliant. If it is not compliant, it does not run. There are no external auditors. The system is the audit.


Dexter Hadley, MD/PhD 1 Founder, CANONIC February 23, 2026


Abstract

CANONIC is a self-enforcing governance protocol for compliant service composition. Three primitives — INTEL, CHAT, COIN — compose into six services, governed by three pillars, validated across eight binary dimensions. The framework compiles itself before it compiles anything else: score 255 or reject. This paper formalizes the CANONIC specification: primitives, services, pillars, tiers, stages, and the self-referential publishing pipeline. Compliance is not bolted on — it is the infrastructure.


Table of Contents

  1. The Protocol
  2. Three Primitives
  3. Six Services
  4. Three Pillars
  5. Tier Algebra
  6. Self-Enforcement
  7. The Publishing Pipeline
  8. Economics
  9. The GALAXY
  10. What We Learned

Appendix A: Tier Algebra Proofs Appendix B: Service Composition Matrix Appendix C: References


1. The Protocol

The CANONIC spec is a single object. Everything inside the braces is compliant. Everything outside does not run.

SPEC = {
    primitives: {INTEL, CHAT, COIN}
    services:   {LEARNING, TALK, SHOP, LEDGER, VAULT, WALLET}
    pillars:    {COMPLIANCE, GALAXY, SURFACE}
    tiers:      {COMMUNITY, BUSINESS, ENTERPRISE, AGENT, MAGIC}
    stages:     {nda, work, shop, coin, close}
    workflows:  {collab, deal, contract}
}
graph LR
    subgraph "SPEC = SCOPE"
        P["Primitives<br/>INTEL · CHAT · COIN"]
        SV["Services<br/>LEARNING · TALK · SHOP<br/>LEDGER · VAULT · WALLET"]
        PI["Pillars<br/>COMPLIANCE · GALAXY · SURFACE"]
        T["Tiers<br/>COMMUNITY → BUSINESS<br/>→ ENTERPRISE → AGENT → MAGIC"]
    end

    P --> SV --> PI --> T

Source: canonic-canonic/MAGIC/CANON.md 2

SPEC = {SCOPE}. The scope is its own specification 3. There is nothing outside the braces to speculate on. If it compiles, it is governed. If it does not compile, it does not ship.

1.1 Stages — Deal Scope

Every relationship moves through five stages. The stages are ordered and irreversible — a deal cannot move backward.

Stage Label Meaning
nda Under NDA Relationship established, terms private
work Active Work in progress
shop Due Diligence Evaluation and validation
coin Term Sheet Economics defined
close Closed Deal complete

1.2 Workflows — Work Scope

Three workflows map to three tiers. Each workflow composes a subset of services — higher tiers unlock more services 2.

Workflow Tier Services
collab (RESEARCH) COMMUNITY LEARNING, TALK
deal (COMMERCIAL) BUSINESS LEARNING, TALK, SHOP, LEDGER
contract (ENTERPRISE) ENTERPRISE LEARNING, TALK, SHOP, LEDGER, VAULT, WALLET

2. Three Primitives

Every CANONIC service composes from three primitives. Primitives are irreducible — they cannot be decomposed further. Services compose them; they never duplicate 2.

Primitive Function Meaning
INTEL KNOW What you know. The orchestrator. Every service wires INTEL.
CHAT SAY What you say. Industry determines voice. CHAT wires INTEL — never speaks without knowledge.
COIN EARN What you earn. WORK → LEDGER → COIN. Every dollar is a governance action.
graph TD
    INTEL["INTEL<br/>━━━━━━━━━<br/>KNOW<br/>The orchestrator"]
    CHAT["CHAT<br/>━━━━━━━━━<br/>SAY<br/>Industry voice"]
    COIN["COIN<br/>━━━━━━━━━<br/>EARN<br/>Work receipt"]

    INTEL --> CHAT
    INTEL --> COIN
    CHAT --> COIN

    style INTEL fill:#f7931a,color:#fff,font-weight:bold
    style CHAT fill:#4a90d9,color:#fff,font-weight:bold
    style COIN fill:#2ecc71,color:#fff,font-weight:bold

Source: canonic-canonic/MAGIC/SURFACE/ primitive declarations 2

INTEL is first. CHAT wires INTEL — it cannot speak without evidence 4. COIN wires both — you cannot earn without knowledge and speech. The dependency chain is strict: INTEL → CHAT → COIN.


3. Six Services

Six composable services. Each composes primitives — never duplicates them. Services compose into workflows. Workflows compose into tiers.

Service Primitives Action Scope
LEARNING INTEL Govern accumulation patterns, deltas, decisions
TALK CHAT + INTEL Governed speech every word grounded, claims evidenced
SHOP COIN + INTEL Public projection products discoverable, priced in COIN
LEDGER COIN Verifiable chain id, prev, ts, type, key, gradient
VAULT COIN + INTEL Private projection auth-gated, per-actor balances
WALLET COIN Per-USER container MINT, TRANSFER, SPEND, SETTLE

Source: canonic-canonic/MAGIC/SURFACE/SERVICES/ 2

3.1 LEARNING — Governed Accumulation

LEARNING is the accumulation lane for INTEL. Patterns, deltas, decisions — the artifacts of governed experience. LEARNING.md rotates at epoch boundaries: frozen epochs become LEARNING-{EPOCH}.md. The archive is append-only. Nothing is deleted 2.

3.2 TALK — Governed Speech

TALK = CHAT + INTEL. Every word is grounded. Every claim is evidenced. CHAT never speaks without INTEL — that constraint is structural, not advisory 4. Industry is the only variable: FINCHAT, LAWCHAT, MAMMOCHAT, ONCOCHAT. The governance is identical; the voice changes.

3.3 SHOP — Public Projection

SHOP discovers {USER}/**/SHOP.md files. Products are discoverable. Prices are in COIN. The public surface of governed commerce.

3.4 LEDGER — Verifiable Chain

The LEDGER is an append-only chain of WORK 5. Each record: id (hash), prev (hash), ts (nanoseconds), type (GRADIENT), key (domain/repo/scope), from_bits / to_bits (0..255), gradient (delta), inventor (actor label) 2. The LEDGER is not speculative — it is a verifiable receipt of governance work performed.

3.5 VAULT — Private Projection

VAULT discovers SERVICES/**/VAULT.md files. Auth-gated. Per-actor balances, scope flow, reserves. The private surface of governed state.

3.6 WALLET — Per-USER Container

Each USER has a WALLET. Events: MINT:WORK (validated work creates COIN), MINT:SIGNUP (500 COIN bonus), MINT:PYRAMID (500 COIN to referrer), TRANSFER (USER to USER), SPEND (pay for SHOP product), SETTLE (COIN exits to fiat via Stripe), CLOSE (epoch snapshot) 2.


4. Three Pillars

MAGIC governs through three pillars. Each pillar governs a distinct surface of the protocol:

Pillar Governs Surface
COMPLIANCE Tier algebra Which tier, which services, which constraints
GALAXY Federation identity ORGs are stars, USERs are planets, identity never collapses
SURFACE Platform lanes Toolchain + clients + publishing
graph LR
    MAGIC["MAGIC<br/>━━━━━━━━━<br/>255 bits"]

    C["COMPLIANCE<br/>tier algebra"]
    G["GALAXY<br/>federation identity"]
    S["SURFACE<br/>platform lanes"]

    MAGIC --> C
    MAGIC --> G
    MAGIC --> S

    style MAGIC fill:#f7931a,color:#fff,font-weight:bold

Source: canonic-canonic/MAGIC/CANON.md pillar declarations 2

COMPLIANCE defines what you can do. GALAXY defines who you are. SURFACE defines where you ship. The three are orthogonal — changing one does not change the others.


5. Tier Algebra

Tiers compose monotonically. Higher tiers include all constraints of lower tiers. Adding a dimension can only increase the tier. Removing one can only decrease it. There are no shortcuts 3.

5.1 Tier Definitions

Tier Requirement Level
COMMUNITY TRIAD (CANON.md + VOCAB.md + README.md) 1
BUSINESS COMMUNITY + {SCOPE}.md (the spec/interface) 2
ENTERPRISE BUSINESS + COVERAGE.md + ROADMAP.md 3
FOUNDATION ENTERPRISE with open canon 3
AGENT ENTERPRISE + LEARNING/ (accumulated patterns) 4
MAGIC AGENT + full compliance validation (255 bits) 5
\[\text{MAGIC} \supset \text{AGENT} \supset \text{ENTERPRISE} \supset \text{BUSINESS} \supset \text{COMMUNITY}\]

FOUNDATION = ENTERPRISE at level 3, but open canon. Non-profit equals enterprise equals open equals free. The governance is identical; the access model differs 3.

Tier inheritance is cumulative — each tier is a strict superset of the tier below 2.

5.2 Tier Composition

Each tier composes a subset of eight governance dimensions. Tiers are cumulative — higher tiers include all dimensions of lower tiers plus additional requirements.

Tier Dimensions
COMMUNITY Declaration + Evidence + Structure
BUSINESS COMMUNITY + Community
ENTERPRISE BUSINESS + History + Practice
AGENT ENTERPRISE + Learning
MAGIC AGENT + Language = all eight

At MAGIC, all eight dimensions are satisfied. At anything less, the system identifies which dimensions are missing and reports the gap. The score is diagnostic, not decorative.

5.3 The Eight Dimensions

Dimension What It Proves
Declaration CANON.md exists. Axiom stated.
Evidence Claims backed by artifacts.
History ROADMAP.md tracks what comes next.
Community {SCOPE}.md exists. Can be rebuilt.
Practice COVERAGE.md measures governance completeness.
Structure inherits: chain, axiom, MUST/SHOULD constraints.
Learning LEARNING.md accumulated patterns. What was learned.
Language LANGUAGE inherited through DESIGN cascade.

Source: canonic-canonic/MAGIC/COMPLIANCE/ tier algebra 2


6. Self-Enforcement

The framework validates compliance with itself. If it runs, it is compliant. If it is not compliant, it does not run. There are no external auditors. The system IS the audit 3.

Compliance state is binary:

The self-referential property is the critical innovation: CANONIC governs itself before it governs others 4. The kernel compiles in O(1) time, scores 255, and proves its own compliance. This is not a consulting engagement that prescribes what it does not practice. This is a system that runs on itself.


7. The Publishing Pipeline

The spec distributes itself through three content lanes, each advertising the next:

BLOG  → accumulates  → speculation   → COMMUNITY  → FREE
PAPER → versions     → specification → BUSINESS   → $100/yr
BOOK  → emerges      → canon         → ENTERPRISE → CONTRACT

The content IS the funnel 6. A blog post introduces a concept (speculation). A paper formalizes it (specification). A book canonizes it (enterprise doctrine). Each stage is governed by the same 255-bit framework — the publishing pipeline is self-referential.

The pipeline is evidenced. Seven papers at 255 govern the intellectual foundation 34678910. Blog posts advertise. The CANONIC CANON 3 is the book emerging from the papers. Everything feeds forward.


8. Economics

COIN = WORK. Every dollar spent is a governance action. Every governance action is work. The economics and the product are the same thing 4.

Speculation ≠ Specification. When SPEC = {SCOPE}, there is nothing to speculate on. The value is the compliance. The compliance is the product. COIN is not a speculative token — it is a verifiable work receipt minted on an immutable, append-only ledger 6.

8.1 The COIN Lifecycle

graph LR
    WORK["WORK<br/>validated governance action"]
    MINT["MINT<br/>COIN created"]
    WALLET["WALLET<br/>per-USER balance"]
    SPEND["SPEND<br/>SHOP purchase"]
    SETTLE["SETTLE<br/>fiat exit via Stripe"]

    WORK --> MINT --> WALLET
    WALLET --> SPEND
    WALLET --> SETTLE

    style WORK fill:#f7931a,color:#fff,font-weight:bold
    style MINT fill:#2ecc71,color:#fff,font-weight:bold

Source: canonic-canonic/MAGIC/SURFACE/SERVICES/ECON.md 2

COIN enters via MINT, moves via TRANSFER, exits via SPEND or SETTLE 11. The cycle is closed. Every COIN traces back to a governance action. Every governance action traces back to WORK. There is nothing else.

8.2 MINT Events

Event Amount Trigger
MINT:WORK Variable Validated governance action (gradient × weight)
MINT:SIGNUP 500 COIN New user promotion
MINT:PYRAMID 500 COIN Referral bonus to existing user

8.3 Exit Events

Event Mechanism Constraint
TRANSFER USER → USER Both parties governed
SPEND USER → SHOP Product must be in SHOP.md
SETTLE COIN → Fiat Stripe integration; KYC required
CLOSE Epoch snapshot Balance frozen at epoch boundary

9. The GALAXY

The GALAXY is the federation identity model where compliant services compose 9. ORGs are stars. USERs are planets. Identity boundaries are first-class — they never collapse 2.

9.1 Two Fleets

Fleet ORG Function
Platform canonic.org FOUNDATION + INDUSTRIES + MAGIC
Proof hadleylab.org Clinical evidence + DEXTER services

Source: HTTP.json 2-fleet contract 2

9.2 ORG Topology

Sixteen ORGs across five roles 9:

Role ORGs Function
GOV canonic-canonic, canonic-foundation Constitutional authority, programming standards
PROOF hadleylab-canonic, adventhealth-canonic Clinical evidence, deployed services
PLATFORM canonic-magic, canonic-apple Toolchain distribution, platform integration
LANG 8 runtime SDKs Language-native MAGIC primitives
INDUSTRY canonic-industries Vertical compliance distribution

9.3 Identity Boundaries

ORG and USER projections never collapse 2. Each maintains its own governance scope:

All surfaces — WEB (.io), iOS (native), Android (native), magic:// — meet the same 255-bit governance gate. No surface can bypass signature or governance.


10. What We Learned

The original whitepaper described six services — PITCH, TALK, DEAL, TIME, SHOP, VIA — and a MAGICVERSE of three views. That was the state of knowledge in early February 2026.

Three things changed:

1. Primitives are more fundamental than services. Services are compositions of primitives. The original spec described services directly. The current spec describes three primitives (INTEL, CHAT, COIN) and derives six services from their composition. This is a depth gain — moving from the phenotype to the genotype 8.

2. Pillars structure the governance surface. COMPLIANCE, GALAXY, and SURFACE are orthogonal governance surfaces. The original spec folded all governance into a flat SPEC object. The current spec separates what you can do (COMPLIANCE), who you are (GALAXY), and where you ship (SURFACE). This is the separation of concerns that makes 255-bit validation tractable.

3. The GALAXY replaced the MAGICVERSE. The MAGICVERSE was three rendering views. The GALAXY is a federation of governed organizations with identity boundaries, role-based clades, and a two-fleet architecture hardened by a mass extinction event 9. The model grew from a rendering abstraction to a phylogenetic system.

The spec evolves. The governance is constant. 255 or reject.



Appendix A: Tier Algebra Proofs

A.1 Monotonicity

Theorem. The tier function $T: 2^D \to {\text{COMMUNITY}, \ldots, \text{MAGIC}}$ is monotonically non-decreasing.

Proof: Let $S \subseteq S’$ be two dimension sets. Then $G(S) = \sum_{d \in S} 2^d \leq \sum_{d \in S’} 2^d = G(S’)$. Since tier thresholds are ordered, $T(S) \leq T(S’)$. $\square$

A.2 Cumulative Inclusion

Theorem. Services available at tier $T$ are a superset of services at tier $T-1$:

\[\text{services}(T) \supseteq \text{services}(T-1)\]

Proof: By tier definition, $T$ includes all constraints of $T-1$ plus additional constraints. The additional constraints unlock additional services but do not restrict existing ones. $\square$

A.3 FOUNDATION Equivalence

Theorem. FOUNDATION = ENTERPRISE at level 3 with open canon.

Proof: Both require COMMUNITY + BUSINESS + COVERAGE.md + ROADMAP.md. FOUNDATION adds canon: open constraint. ENTERPRISE adds canon: private constraint. The governance is identical; the access model differs. $\square$


Appendix B: Service Composition Matrix

B.1 Primitive Wiring

Service INTEL CHAT COIN
LEARNING    
TALK  
SHOP  
LEDGER    
VAULT  
WALLET    

Source: canonic-canonic/MAGIC/SURFACE/SERVICES/ declarations 2

Every service that wires INTEL has governed knowledge. Every service that wires CHAT has governed speech. Every service that wires COIN has governed economics. No service duplicates a primitive. No primitive appears outside a service.

B.2 Workflow Composition

Workflow Tier Services
collab (RESEARCH) COMMUNITY LEARNING, TALK
deal (COMMERCIAL) BUSINESS LEARNING, TALK, SHOP, LEDGER
contract (ENTERPRISE) ENTERPRISE LEARNING, TALK, SHOP, LEDGER, VAULT, WALLET

Appendix C: References

C.1 Internal Sources — CANONIC Gov Tree

# Source Gov Tree Path
I-1 Author CV VITAE/VITAE.md
I-2 The CANONIC CANON PAPERS/CANONIC-CANON.md
I-3 The $255 Billion Wound PAPERS/the-255-billion-dollar-wound.md
I-4 MammoChat OPTS–EGO Ledger PAPERS/opts-ego.md
I-5 Code Evolution Theory PAPERS/code-evolution-theory.md
I-6 MAGIC Specification canonic-canonic/MAGIC/
I-7 The Neutral Theory of CANONIC Evolution PAPERS/neutral-theory.md
I-8 Evolutionary Phylogenetics PAPERS/evolutionary-phylogenetics.md
I-9 PAPERS Evolution Ledger PAPERS/EVOLUTION.md

C.2 External Sources

# Source
X-1 Nakamoto, S. (2008). Bitcoin: A Peer-to-Peer Electronic Cash System.
X-2 Buterin, V. (2014). Ethereum: A Next-Generation Smart Contract and Decentralized Application Platform.

Figures

Context Type Data
post pipeline steps: Primitives → Services → Pillars → Dimensions → 255

CANONIC Whitepaper | February 2026 SPEC = {SCOPE}. If it compiles, it is governed. If it does not compile, it does not ship. Source: VITAE 1


References

1. [I-1] Author CV.

2. [I-6] The CANONIC CANON (book).

3. [I-2] MammoChat OPTS-EGO Ledger.

4. [I-3] Code Evolution Theory.

5. [X-1] Metcalf, D., Hadley, D., et al. ABC: AI, Blockchain, and Cybersecurity for Healthcare. Routledge (2024). ISBN 978-1032394558.

6. [I-4] The Neutral Theory of CANONIC Evolution.

7. [I-5] Evolutionary Phylogenetics of CANONIC.

8. [I-7] CANONIC Whitepaper v1.

9. [I-8] MammoChat to MAGIC (Blog).

10. [I-9] Why We Built This (Blog).

11. [X-2] Nakamoto, S. Bitcoin: A Peer-to-Peer Electronic Cash System (2008). https://bitcoin.org/bitcoin.pdf

CANONIC ∩ FOUNDATION
TALK AUTO