Training · ComposerMoveemergingverified

Show the Working

also known as transparency-for-trust, expose agent reasoning, agent observability for trust, explain-then-act, audit trail teaching

A training module that teaches builders to surface agent reasoning and action traces to end users — via logs, step-by-step summaries, or the explain-then-act pattern. Users can then verify agent behaviour and trust the output enough to adopt it.

How the learner advances

Intent. Teach builders to instrument their agents with human-readable reasoning traces so end users can verify agent behaviour without reading code or logs.

When to apply. Use this move whenever an agent's output will be acted upon by a human who did not write the agent — which is almost every production use case. Apply it before the agent reaches end users; retrofitting observability after a trust incident is harder and often too late to prevent adoption failure.

Threshold — earns the next step. The builder's agent exposes a readable trace or step summary that a non-technical user can interpret without help, and that user can confirm whether the agent behaved correctly.

Masterpiece — the artifact that proves it. An instrumented agent that exposes a three-layer structured trace (context, reasoning, actions) to its end user — verified by a non-technical tester who can confirm correct behaviour without asking the builder to explain any part of it.

Facets

  • Containerworkshop
  • Modeconcepthands-on-build
  • Reachteam
  • Personabuilder
  • Craft (AI Fluency)discernmentdescription
  • Guardrailresponsible-userisk

Inputs

  • Builders with a working agentParticipants who have a prototype or production agent and are about to expose it to end users or stakeholders who need to trust its output.
  • Tracing tool accessAn observability tool the builders can instrument during the workshop — OpenTelemetry, Langfuse, or LangSmith are common choices. Access needs to be configured before the session.
  • End-user acceptance test criteriaA clear definition of what a non-technical end user needs to be able to read in a trace to confirm the agent behaved correctly. This prevents the workshop from producing traces that only the builder can interpret.

Outputs

  • A more capable learnerA builder who can instrument any agent with structured reasoning traces, write human-readable step summaries, and design an explain-then-act interaction pattern.
  • Masterpiece: an agent with a readable traceThe participant's agent updated to expose a human-readable trace or step summary to the end user — not just the final answer — verified by a non-technical tester who can confirm the agent behaved correctly without reading code.
  • Instrumented agent codebaseThe agent's source code with tracing calls added, covering the three log layers: context (what the agent knew), reasoning (why it chose), and actions (what it did).

Steps (4)

  1. Explain the trust gap and the three log layers

    Open with the core problem: over 65% of organisations cite lack of explainability as the primary barrier to AI adoption. Introduce the three log layers — context (what the agent knew), reasoning (why it chose), and actions (what it did) — as the minimum readable trace structure. Show examples from real agents: one with no trace, one with a developer-only log, and one with a human-readable summary.

  2. Demonstrate explain-then-act pattern

    Show an agent built with the explain-then-act pattern: before taking any action, the agent outputs a brief reasoning statement that the user can read and optionally interrupt. Walk through the implementation. Show where in the agent loop the reasoning step is inserted and how it is formatted for non-technical readers. Show how to add a human-in-the-loop gate for high-stakes actions.

  3. Instrument an existing agent

    Builders add tracing calls to their own agent using the chosen tool. The goal is to cover all three log layers. The instrumentation must produce output that a non-technical person can read — not just raw JSON or framework debug logs. Builders test their traces by reading them aloud and checking whether a colleague who did not write the agent can follow what happened.

  4. Non-technical user acceptance test

    Each builder recruits a non-technical tester — a colleague, product manager, or workshop participant from another team — to read the trace and confirm whether the agent behaved correctly. The tester records any trace elements they could not understand. Builders revise until the tester can confirm correct behaviour without asking the builder to explain.

Principles

  • A trace that only the builder can read has not been written for the user.
  • Trust is earned by showing reasoning before the user has to ask — explain-then-act, not act-then-defend.
  • Three log layers are the minimum: context, reasoning, actions — missing any one leaves the user unable to verify the full decision.

Unlocks methodologies (2)

A learner who completes this pattern is equipped to execute these methodology families:

Agent ConstructionEvaluation

Known uses (4)

Known failure modes (2)

Related trainings (2)

Sources (3)

Provenance

  • Ecosystem: neutral
  • Added to catalog:
  • Last updated:
  • Verification status: verified