원클릭으로
bugfix
Check Sentry errors, Axiom logs, and other monitoring sources for bugs, then fix them with regression tests
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check Sentry errors, Axiom logs, and other monitoring sources for bugs, then fix them with regression tests
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Process raw sources into wiki pages — creates summaries, entities, and concept pages
Recursively crawl a documentation site, converting each page to markdown
Fetch Google Docs and convert to markdown
Generate TTS audio from speaker_notes and upload to Vercel Blob
Generate AI illustrations for course cards and upload to Vercel Blob
Convert PDF files to markdown
| name | bugfix |
| description | Check Sentry errors, Axiom logs, and other monitoring sources for bugs, then fix them with regression tests |
| user-invocable | true |
| allowed-tools | Read, Write, Edit, Glob, Grep, Bash, Agent |
Check all monitoring sources for issues affecting the coffeeandai app, then fix them.
Check Sentry for unresolved errors:
export SENTRY_AUTH_TOKEN="$(grep SENTRY_AUTH_TOKEN .env 2>/dev/null | cut -d= -f2 || echo '')"
curl -s -H "Authorization: Bearer $SENTRY_AUTH_TOKEN" \
"https://sentry.io/api/0/projects/nexxt-wh/coffeeandai/issues/?query=is:unresolved&limit=25"
https://sentry.io/api/0/issues/{issue_id}/events/latest/Check Axiom for errors and performance issues:
export AXIOM_TOKEN="$(grep AXIOM_TOKEN .env 2>/dev/null | cut -d= -f2 || echo '')"
vercel dataset filtered to vercel.projectName == "coffeeandai"level == "error" logs in the last hourhttps://api.axiom.co/v1/datasets/vercel/queryFor each issue found:
web/e2e/ or unit test in web/__tests__/)npx playwright test from web/ to verifyAfter fixing:
curl -X PUT -H "Authorization: Bearer $SENTRY_AUTH_TOKEN" \
-H "Content-Type: application/json" \
"https://sentry.io/api/0/projects/nexxt-wh/coffeeandai/issues/" \
-d '{"id": ["ISSUE_ID"], "status": "resolved"}'
Report summary of what was found and fixed.
Tokens should be in .env file or environment. If not found, check Vercel env vars:
SENTRY_AUTH_TOKEN — personal token with admin scopeAXIOM_TOKEN — org token with read access (dataset: vercel)