OpenClaw Quickstart
This is the fastest path to get Chirpier working with OpenClaw.
Recommended path
- create or copy a Chirpier API key from the web app
- export that key into the OpenClaw runtime as
CHIRPIER_API_KEY - install or load
chirpier-skills - start with the
chirpierskill - emit one canonical OpenClaw event
- confirm the event definition appears in Chirpier
- create one chart and one policy
For v1, Chirpier standardizes backend rollup periods on:
minutehourday
Use those values in event-log and alerting APIs. UI shortcuts like 30d belong to chart/embed filtering, not the backend period contract.
If you want the opinionated OpenClaw workflow, use chirpier-skills. If you want the thinnest possible setup, emit the same events directly with the SDK.
Minimal example:
Raw API
curl -X POST "https://logs.chirpier.co/v1.0/logs" \
-H "Authorization: Bearer $CHIRPIER_API_KEY" \
-H "Content-Type: application/json" \
-d '[{"agent":"openclaw.main","event":"tool.errors.count","value":1,"meta":{"tool_name":"browser.open","workflow":"triage"}}]'Then continue with Use chirpier-skills, Analytics Comparisons, and Canonical Event Names.
Last updated on