Lesson 2 of 6·10 min read

AI Transparency & Documentation

Transparency is not just a regulatory obligation — it is a foundation of trust toward customers, employees, and supervisory authorities. OpenClaw automates the creation and maintenance of required transparency documentation.

Transparency Reporting

Automatic Report Generation

OpenClaw generates regulatory-compliant reports at the click of a button:

  • AI System Card — Profile for each AI system (analogous to model cards)
  • Decision Audit Report — Traceability of all agent decisions within a period
  • Risk Assessment Report — Current risk assessment with history
  • Performance Report — Accuracy, robustness, error rates

AI System Card

For each registered system, OpenClaw creates a structured overview:

AI System Card: Customer Support Agent v3.1
─────────────────────────────────────────────
Provider:           EverStrategy GmbH
Purpose:            Automated customer consultation
Risk class:         Limited Risk (transparency obligation)
Model:              GPT-4o via Azure OpenAI
Data sources:       Knowledge Base, CRM (anonymized)
Decision types:     Product recommendation, ticket routing
Human oversight:    Escalation at confidence < 0.7
Last updated:       2026-02-18

Decision Audit Trails

Every agent decision is accompanied by a complete audit trail:

FieldDescriptionExample
Trace IDUnique identifiertr_a8f2e901
TimestampTime of decision2026-02-18T14:23:01Z
AgentWhich agent decidedsupport-agent-v3.1
InputInput (pseudonymized if applicable)"I need help with..."
DecisionDecision madeticket_routing: billing
ReasoningRationale for the decision"Keywords: invoice, payment"
ConfidenceAgent's confidence0.94
ModelModel usedgpt-4o-2025-08-06
TokensTokens consumed312 in / 89 out

Model Versioning Records

OpenClaw tracks every change to the agent system:

  • Prompt versions — Every change to the system prompt is versioned
  • Model switches — When the underlying LLM is changed
  • Tool changes — New tools, changed permissions
  • Guardrail updates — Changes to safety rules
  • Configuration changes — Temperature, max tokens, etc.

Diff View

For each version, you can open a diff view:

- system_prompt v2.3:
+ system_prompt v2.4:
  You are a customer advisor for EverStrategy.ai.
- Answer questions about our products.
+ Answer questions about our products and services.
+ Refer billing questions to the finance team.
  Be friendly and professional.

Explainability Logging

OpenClaw captures the chain-of-thought reasoning for each LLM call:

  • Reasoning Traces — What considerations did the agent make?
  • Tool Selection Rationale — Why was a specific tool chosen?
  • Confidence Scores — How confident was the agent in its decision?
  • Alternative Decisions — What alternatives were considered?

Practical Tip: Enable explainability logging at minimum for all high-risk and limited-risk agents. During an audit, you must be able to demonstrate why an agent made a specific decision — not just what it decided.