AI agents can produce correct-looking outputs while hiding broken, drifting, or unsafe decision paths.
LTP makes multi-step agent behavior replayable, inspectable, and auditable through deterministic traces and causal/log lineage.
Use it to debug, evaluate, and monitor AI agents when the path matters as much as the final answer.
- Deterministic replay of agent traces.
- Causal/log lineage for multi-step decisions.
- Inspection of unsupported, drifting, or unauditable execution paths.
- Audit-friendly evidence for AI safety, evals, monitoring, and compliance workflows.
- A practical surface for coding agents, long-horizon evals, AI-control research, and regulated agentic systems.
- An agent emits an execution trace.
- LTP replays the trace deterministically.
- The inspector checks whether the execution path was admissible, drifting, or unsupported.
- The result becomes auditable evidence, not just an output log.
LTP is a deterministic oversight and replay protocol for agent traces. It helps teams inspect whether an AI or agent followed an admissible, grounded execution path, detect drift, reject unsupported outputs or actions, and preserve audit-grade evidence for high-risk workflows.
For reviewers navigating the broader ecosystem: LTP is the trace/replay/continuity layer in a broader trustworthy-agent evidence architecture. See the Portfolio Reviewer Path, the Ecosystem Spider Map, the LS Grant Reviewer Packet 2026, and the ProofPath ecosystem graph.
Current interest: 3 stars β π± New signal π
Want to join? Click here to show support!
Project status: Active protocol and SDK development with multi-language CI checks.
Fast validation (under 2 minutes):
pnpm install --frozen-lockfile
pnpm testIf you are evaluating LTP for a $20k-$50k AI safety / open-source infrastructure seed grant, start with:
- Portfolio reviewer path:
docs/PORTFOLIO_REVIEWER_PATH.md - Ecosystem spider map:
docs/ECOSYSTEM_SPIDER_MAP.md - Reviewer path:
docs/GRANT_REVIEWER_PATH.md - Seed grant proposal:
docs/GRANT_PROPOSAL_20K_50K.md - Benchmark plan:
docs/BENCHMARK_PLAN.md - Evaluation protocol:
docs/EVALUATION_PROTOCOL.md - Showcase trace map:
docs/SHOWCASE_TRACES.md - Repository map:
docs/REPO_MAP.md - Documentation status:
docs/DOCS_STATUS.md - Existing evidence and non-claims:
docs/GRANT_EVIDENCE.md - Grant brief:
GRANT_BRIEF.md
Modern agent systems can produce outputs that look plausible while following unsupported, drifting, or unauditable execution paths. LTP exists to make those paths inspectable, replayable, and rejectable, with evidence that can be reviewed by operators, auditors, and compliance teams.
LTP is not a general-purpose runtime orchestrator. In v0.1, its practical identity is deterministic replay, execution-path inspection, admissibility judgment, and evidence export.
flowchart LR
A["Agent / Runtime"] -->|"emits events"| B["LTP Trace JSONL"]
B --> C["Replay Engine"]
B --> D["Two-Phase Inspector"]
C --> E["Replay Result"]
D --> F["Admissibility Decision"]
F -->|"admissible"| G["Proceed / Accept"]
F -->|"drift"| H["Review / Audit"]
F -->|"rejected"| I["Block / Reject"]
E --> J["Conformance Report"]
F --> J
J --> K["Audit Evidence Bundle"]
B --> L["SDKs and Adapters"]
L --> M["LangGraph / AutoGen / CrewAI / Custom Agents"]
J --> N["Commercial Audit / Hosted Conformance / Pilot Review"]
More detail: docs/architecture/LTP-Architecture.md
- Deterministic replay-based inspection for agent execution traces.
- Oversight decisions on execution paths:
admissible / drift / rejected. - Two-phase oversight checks (pre-action/pre-generation and post-generation/post-action).
- Unsupported-path rejection within the oversight profile, including ungrounded or hallucinated claims.