debug-error

Solid

Systematic debugging workflow for errors and bugs. Use when debugging errors, investigating bugs, troubleshooting issues, or when something isn't working as expected. Integrates Sentry MCP for production error context, Firecrawl for researching fix patterns, and Sequential Thinking for complex multi-step diagnosis.

AI & Automation 6 stars 0 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 81/100

Stars 20%
28
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Debug Error Skill Systematic approach to debugging errors and unexpected behavior. Works with any project. ## MANDATORY: Pre-Debug Checks **BEFORE debugging, you MUST:** ### 1. Read Relevant Documentation ``` README.md (project overview) src/[domain]/@_[domain]-README.md (domain-specific behavior) docs/ (system documentation) ``` ### 2. Check for Sentry Context (if production error) If the error is from production and Sentry is configured, fetch the full context: ```json sentry:search_issues { "organizationSlug": "<ORG_SLUG>", "query": "<error message or description>", "projectSlugOrId": "<PROJECT_SLUG>", "regionUrl": "<REGION_URL>", "limit": 5 } ``` Then get details for the matching issue: ```json sentry:get_sentry_resource { "organizationSlug": "<ORG_SLUG>", "resourceType": "issue", "resourceId": "<ISSUE_ID>" } ``` Extract: stacktrace, breadcrumbs, tags (browser, OS, URL, release), event frequency. ### 3. Check Database State (if data-related) If data is involved, verify expectations against reality using Supabase MCP or direct queries. ### 4. Verification Statement (REQUIRED) Before diving into debug, state: ``` "Pre-debug check: - README/docs read: [list] - Sentry context: [YES with details / NO — not production / not configured] - Database state verified: [YES/NO — findings] - Backend API checked: [YES/NO — status] - Error scope identified: [FE only / BE only / Integration / Data]" ``` --- ## Debug Process ``` 1. Reproduce → 2. Isolate → 3. Res...

Details

Author
kensaurus
Repository
kensaurus/cursor-kenji
Created
5 months ago
Last Updated
2 days ago
Language
JavaScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category