Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

OpenClaw plugin exposing 0 skills.

Install to Claude Code

openclaw plugin add bardusco/clawtrace

Run in Claude Code. Add the marketplace first with /plugin marketplace add bardusco/clawtrace if you haven't already.

README.md

ClawTrace

Real-time action audit dashboard for OpenClaw

ClawTrace captures every tool call your AI agent makes and displays them in a live, filterable dashboard. Perfect for monitoring, debugging, and understanding what your agent is doing.

!ClawTrace Dashboard

Features

  • 🔴 Live streaming — SSE-powered real-time updates
  • 🔍 Smart filtering — by tool, session, channel, or free text
  • 🔒 Auto-redaction — secrets, tokens, and long strings are automatically sanitized
  • 📊 Session labels — human-readable names instead of cryptic session IDs
  • 🤖 Auto agent name — reads from IDENTITY.md automatically
  • ⏱️ Duration tracking — see how long each tool call takes
  • 📥 Export — download full JSONL ledger for analysis
  • 🌙 Dark theme — easy on the eyes

Installation

1. Copy the clawtrace folder to your OpenClaw extensions directory:

   cp -r clawtrace ~/.openclaw/extensions/

2. Enable the plugin in your OpenClaw config (~/.openclaw/config.yaml):

   plugins:
     clawtrace:
       enabled: true

3. Restart OpenClaw:

   openclaw gateway restart

4. Open the dashboard at: http://localhost:19099/ledger

Configuration

All settings are optional with sensible defaults:

| Option | Default | Description | |--------|---------|-------------| | enabled | true | Enable/disable the plugin | | bind | 127.0.0.1 | Bind address for HTTP server | | port | 19099 | HTTP port (uses gateway port if not set) | | pathPrefix | /ledger | URL path prefix | | ledgerPath | <workspace>/memory/clawtrace.jsonl | Where to store the ledger | | maxString | 160 | Max string length before redaction | | dropKeysRegex | (token\|secret\|password\|...) | Keys to always redact | | enableNotes | true | Allow adding manual notes via API | | agentName | (from IDENTITY.md) | Override agent display name |

API Endpoints

| Endpoint | Method | Description | |----------|--------|-------------| | /ledger | GET | Dashboard UI | | /ledger/events | GET | SSE live stream | | /ledger/api/recent?n=200 | GET | Last N entries as JSON | | /ledger/api/export | GET | Download full JSONL | | /ledger/api/note | POST | Add a manual note |

Ledger Format

Each line in the JSONL ledger:

{
  "ts": "2025-02-04T19:00:00Z",
  "source": "plugin",
  "agent": { "id": "main", "name": "Pi" },
  "session": { "key": "agent:main:main", "id": "...", "label": "Danilo", "channel": "telegram" },
  "tool": "exec",
  "phase": "done",
  "summary": "ls -la",
  "details": { "durationMs": 42, "result": "ok" }
}

Privacy & Security

  • All secrets are auto-redacted before logging
  • Runs on localhost by default (not exposed to internet)
  • No data leaves your machine

License

MIT

Related plugins

Browse all →