debug-error
SolidSystematic 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 3 days ago MIT
Install
Quality Score: 81/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
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
- 3 days ago
- Language
- JavaScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
debug
Systematic debugging workflow for tracking down bugs and issues
15 Updated today
jmylchreest AI & Automation Listed
debug
Systematic Debugging Workflow
4 Updated 5 days ago
AreteDriver Code & Development Listed
debug
When you get a failed result/error/user says its wrong/its a bug, use this skill to systematically debug and fix the problem.
0 Updated today
YoniChechik