بنقرة واحدة
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)