Debugging Assistant Prompts

Systematic prompts for debugging complex issues

Category:prompts
Type:prompt
Difficulty:beginner
productivity
testing
beginner

Description

Prompts designed to help debug complex issues methodically. Guides through error analysis, reproduction steps, root cause identification, and fix verification. Includes prompts for different types of bugs.

Content

Resource Content
# Debugging Assistant Prompt

Help me debug this issue:

**Error/Symptom:** [Describe the error or unexpected behavior]

**Steps to Reproduce:**
1. [Step 1]
2. [Step 2]
3. [Expected vs Actual result]

**Relevant Code:**
```
[Paste relevant code]
```

**What I've Tried:**
- [Attempt 1]
- [Attempt 2]

**Environment:**
- OS: []
- Node/Python version: []
- Package versions: []

Please help me:
1. Identify the root cause
2. Suggest a fix
3. Explain why this happened
4. Recommend how to prevent it in the future