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 9 stars
0 forks Updated yesterday MIT
Install
Quality Score: 82/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
- 7 months ago
- Last Updated
- yesterday
- Language
- JavaScript
- License
- MIT
Integrates with
Bundled in these plugins
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
debug
Systematic debugging workflow for tracking down bugs and issues
17 Updated 4 days ago
jmylchreest AI & Automation Listed
debug
Systematic Debugging Workflow
4 Updated 1 months ago
AreteDriver Code & Development Listed
debug-error
Systematically debug and fix errors using structured investigation. Use when the user asks to "debug", "fix an error", "troubleshoot", "investigate a bug", or shares an error message or stack trace.
1 Updated today
drafael