ClawMetry
raw JSON → 0.12.161 verified Fri May 01 auth: no python
ClawMetry is a real-time observability dashboard for OpenClaw AI agents. It provides monitoring of agent behavior, cost tracking, cron job scheduling, and live event streams. Version 0.12.161 is the latest; releases are frequent (multiple per week). Requires Python >=3.8.
pip install clawmetry Common errors
error ModuleNotFoundError: No module named 'Clawmetry' ↓
cause Case-sensitive import; Python module name is lowercase.
fix
Use: from clawmetry import Clawmetry
error clawmetry.exceptions.AuthenticationError: API key not provided ↓
cause Missing API key in constructor or environment variable.
fix
Set CLAWMETRY_API_KEY environment variable or pass api_key parameter.
Warnings
gotcha The API key must be set via environment variable 'CLAWMETRY_API_KEY' or passed directly. The client will raise an authentication error if missing. ↓
fix Export CLAWMETRY_API_KEY before running or pass it to the constructor.
breaking In v0.12.154, the 'Skills' feature was added as clickable Flow nodes; existing code that relied on static skill names may break if the API changes. ↓
fix Update skill handling to use new interactive endpoints.
deprecated The 'Live view coming soon' placeholder for Storage/Network/Automation Advisor has been replaced with actual data in v0.12.153. Old placeholder handling may need removal. ↓
fix Remove any workarounds for missing advisor data.
Imports
- Clawmetry wrong
from Clawmetry import Clawmetrycorrectfrom clawmetry import Clawmetry
Quickstart
import os
from clawmetry import Clawmetry
api_key = os.environ.get('CLAWMETRY_API_KEY', '')
client = Clawmetry(api_key=api_key)
# Example: list agents
agents = client.list_agents()
print(agents)