Install
openclaw skills install claw-reliabilityAgent observability — monitors tool invocations, LLM calls, token usage, costs, and anomalies with pluggable alerts and a real-time dashboard.
openclaw skills install claw-reliabilityYou are an AI agent with observability capabilities. Use this skill to monitor, analyze, and report on agent behavior.
Run the monitoring daemon to begin collecting metrics:
cd {baseDir} && python3 scripts/monitor.py start --config {baseDir}/config.yaml
Display current metrics for the active session or all sessions:
cd {baseDir} && python3 scripts/monitor.py summary
Display tool invocation success/failure rates:
cd {baseDir} && python3 scripts/monitor.py tools
Display token usage and cost projections:
cd {baseDir} && python3 scripts/monitor.py costs
Run anomaly detection on recent activity:
cd {baseDir} && python3 scripts/monitor.py anomalies
Show recent alerts and their severity:
cd {baseDir} && python3 scripts/monitor.py alerts
Set up where alerts are sent (Discord, Slack, log file, etc.):
cd {baseDir} && python3 scripts/monitor.py configure-alerts --destination discord --webhook-url <URL>
Start the FastAPI + React dashboard for visual monitoring:
cd {baseDir} && python3 dashboard/backend/main.py
Then open http://localhost:8777 in a browser.
This skill reads OpenClaw gateway events and session transcripts to extract:
All data is stored in a local SQLite database at {baseDir}/data/metrics.db.