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 JavaScript example:
import { createClient } from "@chirpier/chirpier-js";
const client = createClient({ key: process.env.CHIRPIER_API_KEY! });
await client.log({
agent: "openclaw.main",
event: "tool.errors.count",
value: 1,
meta: { tool_name: "browser.open", workflow: "triage" },
});
await client.flush();
await client.shutdown();Then continue with Use chirpier-skills and Canonical Event Names.
Last updated on