Learn Enterprise Readiness
July 2, 2026 ยท View on GitHub
learn is the enterprise learning-accountability edge: it automates course logistics, runs a real
study loop against an operator's own practice, and halts hard at every step that is supposed to
prove a human learned something, credentials, certifications, payment, and CAPTCHA included.
This guide aligns the flagship with Project Telos context envelopes and action receipts. The goal is unattended agent work that can be left running and later inspected: what context the agent saw, what exact material it relied on, what it changed, what verified, and what remained unverifiable.
Enterprise Role
- Automate course and certification logistics (navigate, click, fill non-sensitive fields, wait,
capture) while every
assessstep, and every credential, payment, CAPTCHA, or account-creation step, halts unconditionally for the operator. - Run a teach-you learning loop (spaced repetition, retrieval practice, predict-then-observe,
self-explanation, misconception tracking, prerequisite gating) over the operator's own recorded
practice, and gate a
masteryverdict on that practice alone. - Emit a witnessed, hash-chained receipt that separates automated logistics, human assessment, and aid visualizations into structurally distinct channels, so a downstream reader cannot mistake one for another.
Host Commands
node src/cli.mjs statusandnode src/cli.mjs doctorfor host readiness;doctorre-derives every integrity invariant at runtime and reportsMATCH/DEGRADED.node src/cli.mjs run WORKFLOW.json --id IDandnode src/cli.mjs resume ID --attest NOTEfor gated, resumable workflow runs.node src/cli.mjs verify IDandnode src/cli.mjs receipt IDfor ledger replay and receipt emission (JSON, Markdown, HTML).node src/cli.mjs tutor plan|record|due|misconceptions|retrieval|explain|predict|score|path| study|study-receipt|masteryfor the learning loop, andtutor reverifyto recompute an emitted receipt's evidence (typedCHAIN_BROKEN/VERDICT_MISMATCHfailures; exit 0 only when clean).node src/mcp.mjsfor a stdio MCP host exposing the advisory/read surface only.
Context Envelope Contribution
- Workflow runs should carry the ledger's own
seq,stepKind, and digest fields as the context a downstream agent or reviewer replays against, not a prose summary of what happened. - Study sessions should be referenced by their own hash-chained
studyReceiptentries rather than re-derived from a paraphrase; the receipt already carriesdue,mastery,misconceptions, andvisualizationsas one coherent, re-checkable snapshot. - Aid visualizations (
interop/telos.mjs) carryprovenance: "aid"and ascene_spec_hash/result_hashpair; a context packet should reference those hashes, not restate the rendered content as if it were evidence of learning.
Action Receipt Contribution
receipt/receipt.mjsemits the input for aproject-telos.action-receipt/v1-style receipt: logistics steps actuated, the human-assessment gate points reached, any witnessed-auto submissions and the pre-submit state digest they carry, and aid visualizations, each in its own structurally separate section.- Side-effect class for logistics steps is
read(navigate/click/fill/waitFor/capture) orexternal_call(submit, witnessed-auto only, with operator authorization already recorded).assessnever appears as an actuated side effect; it appears only as ahuman-gateledger entry. - Verification verdicts come from
Ledger.verify()(tamper-evident hash chain) and fromdoctor()'s integrity-invariant checks.
Readability Gate
Enterprise agent output should be easier for the next agent and a human reviewer to continue:
- Keep patches small enough to review and tied to one bounded work item.
- Prefer named helpers and domain terms (
gate,ledger,witness,mastery) over dense inline logic. - Preserve public interfaces (CLI subcommands, MCP tool names, receipt field names) unless the receipt explains why they moved.
- Leave tests, command output, changed files, and next action in the handoff.
- Mark missing source refs, stale sessions, failed tests, and verifier abstentions (
UNVERIFIABLE) as such instead of guessing.
Platform Boundary
The flagship remains usable alone through CLI JSON and as part of a larger surface through MCP. IDE, CLI, TUI, and application hosts should consume the same status/doctor/receipt fields rather than reimplementing flagship behavior. The MCP surface is deliberately advisory-only: it never performs a real course action, never authors a graded answer, and never moves the mastery-gate needle on the agent's behalf. That stays operator-driven on the CLI.
See Project Telos project-telos.context-envelope/v1 and project-telos.action-receipt/v1 for the
shared cross-tool contract.