Use chirpier-skills
chirpier-skills is the recommended way to make Chirpier feel native inside OpenClaw.
It gives OpenClaw an opinionated workflow for:
- canonical event names
- valid policy patterns
- destination setup and testing
- alert triage and delivery inspection
Install the skills
# Install all skills
npx skills @chirpier/chirpier-skills
# Or install individual skills
npx skills @chirpier/chirpier-skills/chirpier
npx skills @chirpier/chirpier-skills/chirpier-monitoring
npx skills @chirpier/chirpier-skills/chirpier-destinations
npx skills @chirpier/chirpier-skills/chirpier-alert-triageRecommended starting path
- export
CHIRPIER_API_KEY - start with the
chirpierskill - read the event taxonomy
- pick a playbook
- emit events first, then create policies
- test destinations before relying on real alert delivery
Which skill to use
chirpier: default starting point for sending events, reading event definitions, creating policies, inspecting alerts, and testing destinationschirpier-monitoring: best for market monitoring, sentiment workflows, tool failures, and latency trackingchirpier-destinations: focused on Slack, Discord, Telegram, email, and generic destination setupchirpier-alert-triage: focused on reading active alerts, checking deliveries, acknowledging, resolving, and archiving
What to tell OpenClaw
These are good prompts or task instructions for an OpenClaw workflow that has chirpier-skills available:
- “Send OpenClaw task duration and error events to Chirpier”
- “Create a policy for OpenClaw tool failures in the last hour”
- “Analyze Reddit sentiment about Bitcoin and alert if sentiment drops”
- “Set up a Slack destination for Chirpier alerts”
- “Test my Telegram destination and inspect delivery history”
Why this helps
Without skills, each OpenClaw workflow may invent its own event names and policy patterns.
With chirpier-skills, OpenClaw gets consistent guidance:
- event names are the schema
- use canonical OpenClaw events first
- do not encode time windows into event names
- use rollups and policies for hourly or daily logic
- use analytics
previouswindows for explicit comparison queries - treat
metaas inspection context in v1
Contract source of truth
chirpier-skills should follow the contract defined in the docs site.
- use
docsas the normative source for periods, event grammar, analytics window conventions, and delivery-history kinds - treat
chirpier-skillsas the operational layer OpenClaw follows when applying that contract
For testing, start with guided mode first:
- explicitly tell OpenClaw to use
chirpier-skills - verify it emits canonical event names and valid policies
- then repeat in natural mode and confirm it still follows the same contract
Recommended docs flow
For the best OpenClaw integration path, read these pages in order:
Last updated on