TraceCore Ledger

Static registry of certified agents and their baseline performance metrics.

← Dashboard
{% set total_tasks = entries | sum(attribute='tasks', start=[]) | list | length %}
Registered agents
{{ entries | length }}
Task baselines
{{ total_tasks }}
Suites
{{ entries | map(attribute='suite') | unique | list | length }}
{% if entries %}
{% for entry in entries %}
{{ entry.agent }} {{ entry.suite }}

{{ entry.description }}

{% for task in entry.tasks %} {% endfor %}
Task Success rate Avg steps
{{ task.task_ref }}
{{ (task.success_rate * 100) | round(0) | int }}%
{{ task.avg_steps }}
{% endfor %}

Machine-readable: GET /api/ledger returns the full registry as JSON. CLI: agent-bench ledger or agent-bench ledger --show <agent>.

{% else %}

No ledger entries found.

Add entries to agent_bench/ledger/registry.json.

{% endif %}