This guide answers a simple question:
If you want to use T81 today, what should you run?
It is not a full architecture overview. It is a practical operator path for the current real surfaces in the repo.
Use T81 today as three practical systems:
- governed CanonFS interchange
- bounded AI OS-object chains
- bundle-first object consumption
If you understand those three, you understand the strongest current usable value in the repo.
T81 is a governed execution pipeline where:
- execution is allowed or denied before it runs
- results are stored as canonical objects
- completed work is consumed from a stable bundle, not reconstructed from logs
The system is not centered on model outputs.
It is centered on:
- controlled execution
- canonical artifact chains
- and bundle-first consumption
Typical systems:
- run models first, evaluate later
- emit logs or responses
- reconstruct meaning from execution traces
T81:
- evaluates policy before execution
- produces canonical object chains
- treats the bundle as the final, authoritative object
This shifts the system from:
- "generate and observe"
to:
- "approve, execute, and preserve"
Use this when you want to:
- import host files or directories into CanonFS
- export CanonFS objects back out
- apply policy before import/export side effects
- get stable JSON results with provenance and manifest linkage
Start here:
Core commands:
./build/t81 canonfs import <path> --canonfs-root <root> --json
./build/t81 canonfs export <ref> --canonfs-root <root> --out <path> --jsonWhat you get back:
statuspolicy_resultpolicy_profileprovenance_ref- sometimes
manifest_ref
Use this surface when the main question is:
- what entered CanonFS
- whether it was allowed
- what evidence object was produced
Use this when you want AI execution to end as a canonical object chain instead of a loose model output.
Current admitted family:
assess-fixedroute-fixedclassify-fixed
Start here:
Run the current examples:
bash examples/ai-and-inference/model-load-canonfs/run_assess_fixed_host_action.sh
bash examples/ai-and-inference/model-load-canonfs/run_route_fixed_path_selection.sh
bash examples/ai-and-inference/model-load-canonfs/run_classify_fixed_rule_selection.shWhat each chain does:
- run one bounded AI task
- store result artifact
- store provenance artifact
- store typed downstream record
- store canonical bundle
Use this surface when the main question is:
- can I get a deterministic AI decision chain as a canonical object
Use this when you want to start from the final object and consume the chain safely.
The bundle is the system boundary.
It is the only object required to:
- verify what happened
- trace how it happened
- safely consume the result
Consumers should not reconstruct execution from logs or intermediate state. They should begin from the bundle and follow canonical references.
Start here:
- Bundle consumption contract
- Bundle integration matrix
- Bundle versioning boundary
- Stable baseline contract
Run the current consumer examples:
bash examples/ai-and-inference/model-load-canonfs/run_assess_fixed_bundle_consumer.sh
bash examples/ai-and-inference/model-load-canonfs/run_route_fixed_bundle_consumer.sh
bash examples/ai-and-inference/model-load-canonfs/run_classify_fixed_bundle_consumer.shIf you already have a bundle_ref and want a small normalized projection
instead of a full bundle artifact dump, run:
bash examples/ai-and-inference/model-load-canonfs/summarize_ai_bundle.sh \
"<bundle_ref>" \
"<canonfs_root>"What these prove:
- start from
bundle_ref - read the bundle first
- verify bundle schema
- read
record_refandaction_ref - follow the typed downstream record only after the bundle check
Use this surface when the main question is:
- can another component consume the completed chain without reconstructing it from logs
- policy-gated artifact import and export
- CanonFS content-addressed storage
- deterministic bounded AI object chains
- canonical bundle production
- canonical bundle consumption
- a stable baseline for the admitted bounded family
- a general AI platform
- an orchestration engine
- a broad agent runtime
- a general bundle platform
- a fully general DAIOS in everyday use
If you want the shortest useful path, do this in order:
- run the RFC-00D1 CanonFS interchange example
- run
run_assess_fixed_host_action.sh - run
run_assess_fixed_bundle_consumer.sh - read STABLE_BASELINE_CONTRACT.md
That sequence teaches:
- governed artifact movement
- governed bounded AI object production
- governed object consumption
- If you want to prove import/export plus policy gating:
- use the CanonFS interchange example under
examples/storage-and-canonfs/canonfs-interchange/
- use the CanonFS interchange example under
- If you want a bounded AI decision chain:
- run one of the three admitted family examples under
examples/ai-and-inference/model-load-canonfs/
- run one of the three admitted family examples under
- If you want to consume the final object instead of the intermediate model
output:
- run one of the
*_bundle_consumer.shscripts
- run one of the
- If you want a compact, family-safe bundle summary:
- run
examples/ai-and-inference/model-load-canonfs/summarize_ai_bundle.sh
- run
- If you want to know what is frozen:
Use T81 today as a system that:
- controls what is allowed to execute
- produces canonical object chains instead of transient outputs
- and exposes completed work through bundle-first consumption
That is the clearest current truth of the repo.