The Chat Box Is a Lie: Debug Agents from the Log, Not the UI
UI chat transcripts are an approximate rendering of agent state; any serious LLM debugging must treat content-addressed logs as the single source of truth.
AngleObservability and debugging practice
Source video ↗The 20% Failure Rate Hiding in Your LLM Output
Untyped LLM responses carry a measurable malformed-output failure rate that structured output enforcement eliminates; enforcing typed contracts at the runtime boundary is non-negotiable.
AngleReliability engineering for LLM workflows
Source video ↗Stop Wiring Agent Graphs; Let Events Draw the Topology
Explicit graph frameworks impose edge maintenance that event subscription on an immutable log eliminates, and the resulting emergent topology is simpler to operate.
AngleArchitecture critique of agent frameworks
Source video ↗Agent Runtimes Are the New Kernel: Typed Events Make Bad Actions Impossible
Agent reliability should live in runtime-enforced typed contracts, not prompt discipline; a kernel-like runtime that rejects malformed tool calls and events is the foundation for trustworthy agents.
AngleInfrastructure design for agent systems
Source video ↗EventLog Agent Runtime
movement-labA minimal runtime with typed events on an immutable log lets a developer add a new agent by dropping one manifest file and without editing any existing agent, event, or graph definition.
Proof of conceptImplement a Postgres-backed event log with typed event subscription; define 3 agents as markdown+YAML files; add a 4th agent that subscribes to an existing event and verify no existing files change.
MeasurementNumber of files changed to introduce a new agent; success of fan-out to new subscriber; absence of explicit edge declarations.
Source video ↗Structured-Output Failure Benchmark
beyond-evalsOn a set of tool-calling and data-extraction tasks, enforcing typed structured outputs at runtime reduces malformed LLM response rate by a statistically significant margin compared to prompt-only instructions, across multiple models.
Proof of conceptCreate a benchmark harness that runs identical tasks with and without schema-enforced structured outputs; record parse/validation failures from model responses.
MeasurementMalformed response rate (parse/validation failures) per condition; effect size across models; confidence interval.
Source video ↗Chat-Transcript vs Log Diff
gatehouseIn agent sessions with context compaction or tool use, the visible chat transcript omits or distorts at least one prompt-state component compared to the content-addressed event log, for the majority of sessions.
Proof of conceptRun representative agent workflows (multi-turn, tool calls, compaction) capturing both UI transcript and content-addressed log; build a diff tool that flags missing or rewritten prompt components.
MeasurementPercentage of sessions with transcript-log mismatch; type and count of missing components (system prompts, tool results, compaction notices).
Source video ↗Content-Addressed Log Retention and Compaction
newFor long-running agent workloads, a compaction strategy that stores content-addressed deltas and retains event metadata can bound storage growth while preserving replay and diff correctness.
Proof of conceptImplement a compaction layer over an append-only content-addressed log and run a simulated agent workload; measure storage before/after and verify replay produces identical artifacts.
MeasurementStorage reduction percentage; replay equivalence (hash match); query latency for historical events.
Source video ↗