Workflow debugging
Skill subhansh-dev/agent-maxxing/examples/workflow-debugging
95+ agent skills, 19 UI components, 7 system prompts from Claude Fable 5, GPT-5.5, Gemini CLI & more. Self-fine-tune your agent: paste one prompt and it reads every skill, internalizes patterns, and becomes elite. Works with Claude Code, Codex, Cursor, OpenCode + 60 more agents.
npx -y skills add subhansh-dev/agent-maxxing --skill workflow-debuggingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Systematically debug a production issue using the debugging chain.
SKILL.md
1.6 KB, 379 tokens by cl100k_base, as published. Nobody here has run it
Multi-Agent Workflow: Debugging a Production Issue
Systematically debug a production issue using the debugging chain.
Skills Used
| Skill | Role |
|---|---|
| Debugging Patterns | Systematic methodology |
| Execution Protocol | Problem-solving chain |
| Runtime Verify | Run and observe |
| Code Review Checklist | Verify fix |
Workflow
Step 1: Reproduce
Load Execution Protocol skill.
Run the code. Hit the error. See it yourself.
Don't guess — observe.
Step 2: Read the Error
Read the COMPLETE error message.
Extract: error type, file:line, stack trace, context.
Note: what was the user doing when it failed?
Step 3: Bisect
Load Debugging Patterns skill.
Comment out half the code. Does it still happen?
Binary search through the codebase.
Log state at each step.
Step 4: Trace the Flow
Follow the data from input to output.
Where does it go wrong?
Check: async timing, null values, state mutations.
Add console.log at each step.
Step 5: Fix and Verify
Load Runtime Verify skill.
Apply the fix.
Run the app. Drive the changed path.
Push on it: try edge cases, wrong inputs.
Verdict: PASS / FAIL
Step 6: Prevent Recurrence
Load Code Review Checklist.
Add a test case for the bug.
Check: does this pattern exist elsewhere?
Update documentation if needed.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.