Install
openclaw skills install rollbarMonitor and manage Rollbar error tracking. List recent items, get item details, resolve/mute issues, and track deployments via the Rollbar API.
openclaw skills install rollbarMonitor and manage Rollbar errors directly from OpenClaw.
Set your Rollbar access token as an environment variable:
export ROLLBAR_ACCESS_TOKEN=your-token
⚠️ Security: Store tokens in environment variables or a secure secret manager — never commit them to repository files.
Two token types are supported:
read scope for monitoring; add write scope only if you need to resolve/mute items. This is the most restrictive and safest option for single-project use.--project-id <id> to target specific projects. The skill auto-resolves a project read token from the account token. Note: account tokens grant broader access — only use when you need to monitor multiple projects.All commands use the helper script rollbar.sh in this skill directory.
./skills/rollbar/rollbar.sh projects
./skills/rollbar/rollbar.sh items [--project-id <id>] [--status active|resolved|muted] [--level critical|error|warning|info] [--limit 20]
./skills/rollbar/rollbar.sh item <item_id>
./skills/rollbar/rollbar.sh occurrences <item_id> [--limit 5]
./skills/rollbar/rollbar.sh resolve <item_id>
./skills/rollbar/rollbar.sh mute <item_id>
./skills/rollbar/rollbar.sh activate <item_id>
./skills/rollbar/rollbar.sh deploys [--limit 10]
./skills/rollbar/rollbar.sh project
./skills/rollbar/rollbar.sh top [--limit 10] [--hours 24]
To get automatic alerts for new critical/error items, set up a cron job in OpenClaw:
"Check Rollbar for new critical or error-level items in the last hour. If any new items appeared, summarize them and alert me."
Recommended schedule: every 30–60 minutes during work hours.
top command sorts active items by occurrence count — useful for daily triage.