Skip to Content
OpenClaw GuidesOpenClaw Quickstart

OpenClaw Quickstart

This is the fastest path to get ChirrOp working with OpenClaw.

  1. create or copy a ChirrOp API key from the web app
  2. export that key into the OpenClaw runtime as CHIRROP_API_KEY
  3. install or load chirrop-skills
  4. start with the chirrop skill
  5. emit one canonical OpenClaw event
  6. confirm the event definition appears in ChirrOp
  7. create one chart and one policy

For v1, ChirrOp standardizes backend rollup periods on:

  • minute
  • hour
  • day

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 chirrop-skills. If you want the thinnest possible setup, emit the same events directly with the SDK.

Minimal example:

curl -X POST "https://logs.chirrop.com/v1.0/logs" \ -H "Authorization: Bearer $CHIRROP_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 chirrop-skills, Analytics Comparisons, and Canonical Event Names.

Last updated on