What a trace can tell you
- Prompts and model responses
- Tool-call sequence
- Latency, tokens, and errors
- How the system behaved
AgentLedger creates verifiable, human-readable records of consequential AI-agent actions — what changed, why it changed, who requested it, and what authority allowed it.
Log → Trace → Flag Risk → Review → Approve → Export
When an agent changes an application, account, workflow, or external system, teams need more than prompts and telemetry. They need evidence of the action itself.
AgentLedger connects the technical trace to the consequential action, the surrounding authority, and the review outcome.
Record the consequential action and the evidence reported by the integration.
Connect the action to its agent, model, prompt, workflow, tools, and requester.
Preserve risk, policy, and review signals without pretending to infer intent.
Capture when an action is held for human review as reported by the integration.
Record the approval, denial, or override with attribution and timestamp.
Produce JSON, CSV, or Markdown records with hash-chain integrity verification.
Below: an AI underwriting assistant reviewing a HELOC application. The workflow reports elevated risk and holds the action for human review. Representative AgentLedger evidence record using fictional application data.
Applicant meets equity and credit thresholds. Debt-to-income ratio of 46.2% exceeds the heloc_risk@v3 review threshold of 43%. Per policy §4.2 as reported by the workflow, advances above this threshold are held for a licensed underwriter.
Representative AgentLedger evidence record using fictional application data. Field values are illustrative; run the real SDK to produce actual records.
Observability keeps engineering teams close to model behavior. AgentLedger keeps compliance, operations, and leadership close to the actions that matter.
Optimized for engineers debugging systems.
Optimized for evidence of consequential actions.
The end-to-end demo shows an AI agent receiving a request, evaluating information, recording its tool calls and decisions, identifying a policy concern, holding the action for human review, and producing a verifiable export.
AgentLedger is an open-source Python SDK. Clone the repo, run the end-to-end demo, and inspect the generated JSON, Markdown, and CSV evidence exports.
v0.3.2 · Python 3.9+ · Developer preview
# Clone and run the official demo
# git clone https://github.com/Camleader/agentledger-v01.git
# python -m pip install -e ".[dev]"
from agentledger import AgentLedger
ledger = AgentLedger(
storage_path="events.jsonl",
trace_storage_path="traces.jsonl",
)
trace = ledger.create_trace(
workflow="heloc_intake",
agent_name="underwriter-agent",
entity_id="app_2081",
)
ledger.log_tool_call(
agent_name="underwriter-agent",
tool_name="underwriting_metrics",
input_data={"app_id": "app_2081"},
output_data={"dti": 0.462},
trace_id=trace["trace_id"],
)
ledger.log_decision(
agent_name="underwriter-agent",
output_data={"decision": "hold"},
reason_codes=["DTI_OVER_THRESHOLD"],
trace_id=trace["trace_id"],
risk_level="high",
review_required=True,
policy_status="warning",
approval_status="pending",
)
ledger.complete_trace(
trace_id=trace["trace_id"],
outcome="held_for_review",
approval_status="pending",
)
ledger.export_markdown_report("audit_report.md")
integrity = ledger.verify_hash_chain() # ✓ chain intactWe’re inviting a small number of software companies deploying AI agents into regulated, high-trust, or operationally consequential workflows to become early design partners. Design partners help define the evidence their auditors and reviewers actually need.
Identify consequential agent actions
Instrument AgentLedger
Define required evidence fields
Capture authorization & attribution
Generate human-readable records
Provide feedback that shapes the roadmap
AgentLedger exists to give organizations a trustworthy history of AI-agent actions — one that a compliance officer, an auditor, and an engineer can all read and agree on.
It’s early. It’s built in the open. If your team is deploying agents into consequential workflows and you care about being able to prove what they did, I’d like to talk.