Use Sentry CLI Debug
SkillMonitoring & opsUse the official Sentry CLI to investigate issues, events, traces, and logs for Vibe Remote without committing Sentry credentials into the repository.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Use Sentry CLI Debug skill
What this skill tells your AI
The instructions your AI receives, as published by avibe-bot/avibe in .agents/skills/use-sentry-cli-debug/SKILL.md and read by ahel’s review.
Use this skill when the user asks to inspect Sentry issues, events, traces, logs, or authenticated Sentry API responses from the command line while working in the Vibe Remote repository.
Core Rules
- Prefer
sentryCLI subcommands over raw REST calls. Usesentry issue,sentry event,sentry trace, andsentry logfirst. Fall back tosentry apionly when the dedicated command cannot expose the needed field. - Do not commit credentials. Prefer
sentry auth logininteractive auth. If token auth is required, use a shell-scopedSENTRY_AUTH_TOKENor another untracked local secret source. Never write tokens into tracked repo files. - Keep output small. Prefer
--json --fields ...,--limit ..., andjqwhen filtering. - Stay read-only by default. Do not resolve, mute, delete, or otherwise mutate Sentry state unless the user explicitly asks.
- Verify CLI context before debugging. Run
sentry auth status, then confirm the target org/project if auto-detection looks ambiguous.
Prerequisites
If sentry is not installed:
curl https://cli.sentry.dev/install -fsS | bash
Then verify:
sentry --help
sentry auth status
Authentication options that do not require committing secrets:
# Preferred: interactive login managed by the CLI
sentry auth login
# Alternative: shell-scoped token
export SENTRY_AUTH_TOKEN=...
sentry auth login --token "$SENTRY_AUTH_TOKEN"
Never add the token to tracked files such as .env, .envrc, config/*.json, settings.json, or skill files.
Repo-Specific Context
Before querying Sentry, read vibe-remote.md for the tags and environment metadata currently attached by this repository.
Important current signals:
component=servicefor the main servicecomponent=uifor the Flask UImode=<config.mode>primary_platform=<config.platforms.primary>deployment_environment=<resolved environment>release=vibe-remote@<version>
These are useful narrowing dimensions when many unrelated issues exist in the same Sentry org/project.
Debug Workflow
1. Confirm auth and scope
sentry auth status
sentry org list
sentry project list <org>
If auto-detection is unreliable, use explicit <org>/<project> in every command.
2. Triage recent issues
sentry issue list <org>/<project> \
--query 'is:unresolved' \
--limit 10 \
--json \
--fields shortId,title,count,userCount,lastSeen,level,status
Common filters:
sentry issue list <org>/<project> --query 'is:unresolved environment:regression'
sentry issue list <org>/<project> --query 'component:service'
sentry issue list <org>/<project> --query 'component:ui'
sentry issue list <org>/<project> --query 'primary_platform:slack'
sentry issue list <org>/<project> --query 'release:vibe-remote@1.2.3'
3. Inspect one issue deeply
sentry issue view <short-id>
sentry issue explain <short-id>
Use sentry issue explain only after you have the raw issue details. Treat the AI explanation as a hint, not ground truth.
4. Inspect concrete event, trace, and logs
sentry event view <org>/<project>/<event-id>
sentry trace view <trace-id>
sentry trace logs <trace-id> --limit 100
sentry log list <org>/<project> --query 'level:error' --limit 100
Use trace and log commands when the issue points to timing, retries, upstream HTTP failures, or multi-step orchestration problems.
5. Use sentry api only as a fallback
sentry api /api/0/organizations/<org>/issues/
Prefer --method, --data, and --header only when the dedicated CLI command cannot express the operation.
Vibe Remote Triage Hints
- If the bug is user-visible in regression, first search
environment:regression. - Split
component:serviceandcomponent:uiearly. Do not mix backend startup errors with UI Flask failures. - When the report is platform-specific, try
primary_platform:<platform>and cross-check local logs if Sentry detail is incomplete. - If no Sentry result appears, check whether the problem was only logged locally in
~/.vibe_remote/logs/vibe_remote.log. - If Sentry output is too noisy, reduce fields instead of pasting full blobs back to the user.
When Not to Use This Skill
- When the user wants release management or source map upload only, use generic
sentryCLI commands directly without a full debug workflow. - When the user explicitly wants dashboard/MCP-based investigation instead of CLI.
Signals
- GitHub stars
- 505
- Forks
- 79
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
use-sentry-cli-debug- Source
- github.com/avibe-bot/avibe