t81-foundation

T81 Operator Guide

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.

Start Here

Use T81 today as three practical systems:

  1. governed CanonFS interchange
  2. bounded AI OS-object chains
  3. bundle-first object consumption

If you understand those three, you understand the strongest current usable value in the repo.

What This System Actually Is

T81 is a governed execution pipeline where:

The system is not centered on model outputs.

It is centered on:

How This Differs From Typical AI Systems

Typical systems:

T81:

This shifts the system from:

to:

1. Governed CanonFS Interchange

Use this when you want to:

Start here:

Core commands:

./build/t81 canonfs import <path> --canonfs-root <root> --json
./build/t81 canonfs export <ref> --canonfs-root <root> --out <path> --json

What you get back:

Use this surface when the main question is:

2. Bounded AI OS-Object Chains

Use this when you want AI execution to end as a canonical object chain instead of a loose model output.

Current admitted family:

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.sh

What each chain does:

  1. run one bounded AI task
  2. store result artifact
  3. store provenance artifact
  4. store typed downstream record
  5. store canonical bundle

Use this surface when the main question is:

3. Bundle-First Consumption

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:

Consumers should not reconstruct execution from logs or intermediate state. They should begin from the bundle and follow canonical references.

Start here:

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.sh

If 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:

  1. start from bundle_ref
  2. read the bundle first
  3. verify bundle schema
  4. read record_ref and action_ref
  5. follow the typed downstream record only after the bundle check

Use this surface when the main question is:

What T81 Is Capable Of Right Now

What T81 Is Not Yet

Best Learning Order

If you want the shortest useful path, do this in order:

  1. run the RFC-00D1 CanonFS interchange example
  2. run run_assess_fixed_host_action.sh
  3. run run_assess_fixed_bundle_consumer.sh
  4. read STABLE_BASELINE_CONTRACT.md

That sequence teaches:

If You Want X, Run Y

One-Line Operating Rule

Use T81 today as a system that:

That is the clearest current truth of the repo.