LaunchKit · 2026
Back to Skills

sentry-observability

Add observability to your OpenClaw instance — errors, logs, and traces sent to Sentry.

0
615 downloads
by @sergical

Setup & Installation

openclaw skills install @sergical/sentry-observability

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install sentry-observability

Version History

v1.1.0Feb 17, 2026 - Version note by skill developer:

Added structured logs docs (sentry log list/view), log buffer flush gotcha, updated plugin reference with real implementation, fixed config path docs

What This Skill Does

Connects an OpenClaw instance to Sentry for error tracking, structured logs, and performance traces. Covers plugin setup to route telemetry and CLI-based investigation of issues, logs, and events.

The Sentry CLI covers listing issues, getting AI-generated fix plans, and marking issues resolved in the terminal, without opening the web dashboard for routine investigation.

When to use it

  • Monitoring production errors from an OpenClaw gateway
  • Streaming real-time structured logs to catch failures as they happen
  • Running AI root cause analysis on unresolved exceptions
  • Filtering logs by level or message content from the terminal
  • Resolving Sentry issues directly via CLI without opening a browser

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Why is my OpenClaw gateway throwing errors in production?

AGENT
  1. 1Run `sentry issue list <org>/<project> --query "is:unresolved" --sort date --limit 5` to find recent issues
  2. 2Run `sentry issue view <short-id>` to see context, affected users, and timeline
  3. 3Run `sentry issue explain <issue-id>` to get AI root cause analysis via Sentry Seer
  4. 4Run `sentry issue plan <issue-id>` to generate concrete fix steps
  5. 5Run `sentry api /issues/<id>/ --method PUT --field status=resolved` to close the issue after fixing
OUTPUT

Root cause identified with a concrete fix plan; issue marked resolved in Sentry

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Sentry accountSENTRY_AUTH_TOKEN environment variable (or interactive login via sentry auth login)