Sentry
| Category | Monitoring |
| CLI | sentry-cli |
| Auth | API key |
| Config | SENTRY_AUTH_TOKEN (required), SENTRY_ORG (required), SENTRY_PROJECT (required) |
What it does
Section titled “What it does”Wraps sentry-cli to give CodeBuddy access to your Sentry error tracking. The agent can view recent errors, analyze frequency and impact, link errors to source code, and triage issues.
Prerequisites
Section titled “Prerequisites”Install sentry-cli:
# macOSbrew install getsentry/tools/sentry-cli
# npm (any platform)npm install -g @sentry/cli
# curlcurl -sL https://sentry.io/get-cli/ | bashConfigure authentication:
export SENTRY_AUTH_TOKEN="your-auth-token"export SENTRY_ORG="your-org"export SENTRY_PROJECT="your-project"Verify:
sentry-cli infoCapabilities
Section titled “Capabilities”- Issues — list, view, resolve, unresolve
- Events — view recent error events and stack traces
- Releases — create, list, associate commits
- Source maps — upload, validate
- Deploys — register deployments
Example prompts
Section titled “Example prompts”- “Show the top 5 unresolved errors in production this week”
- “Find the source code causing the TypeError in the auth module”
- “Create a new Sentry release for v2.1.0 and associate the latest commits”
- “Upload source maps for the production build”