api-and-interface-desi…
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints,…
Guides systematic root-cause debugging. Use when tests fail, builds break, something that worked yesterday broke, behavior doesn't match expectations, or you encounter any unexpected error. Use when you need to figure out what broke and why — a systematic approach to finding and
$ npx -y skills add addyosmani/agent-skills --skill debugging-and-error-recovery --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/debugging-and-error-recoveryContext preview
The summary Claude sees to decide when to auto-load this skill.
Guides systematic root-cause debugging. Use when tests fail, builds break, something that worked yesterday broke, behavior doesn't match expectations, or you encounter any unexpected error. Use when you need to figure out what broke and why — a systematic approach to finding and
name: debugging-and-error-recovery description: Guides systematic root-cause debugging. Use when tests fail, builds break, something that worked yesterday broke, behavior doesn't match expectations, or you encounter any unexpected error. Use when you need to figure out what broke and why — a systematic approach to finding and fixing the root cause rather than guessing.
Systematic debugging with structured triage. When something breaks, stop adding features, preserve evidence, and follow a structured process to find and fix the root cause. Guessing wastes time. The triage checklist works for test failures, build errors, runtime bugs, and production incidents.
When anything unexpected happens:
1. STOP adding features or making changes 2. PRESERVE evidence (error output, logs, repro steps) 3. DIAGNOSE using the triage checklist 4. FIX the root cause 5. GUARD against recurrence 6. RESUME only after verification passes
**Don't push past a failing test or broken build to work on the next feature.** Errors compound. A bug in Step 3 that goes unfixed makes Steps 4-6 wrong.
Work through these steps in order. Do not skip steps.
Make the failure happen reliably. If you can't reproduce it, you can't fix it with confidence.
Can you reproduce the failure?
├── YES → Proceed to Step 2
└── NO
├── Gather more context (logs, environment details)
├── Try reproducing in a minimal environment
└── If truly non-reproducible, document conditions and monitor**When a bug is non-reproducible:**
Cannot reproduce on demand:
├── Timing-dependent?
│ ├── Add timestamps to logs around the suspected area
│ ├── Try with artificial delays (setTimeout, sleep) to widen race windows
│ └── Run under load or concurrency to increase collision probability
├── Environment-dependent?
│ ├── Compare Node/browser versions, OS, environment variables
│ ├── Check for differences in data (empty vs populated database)
│ └── Try reproducing in CI where the environment is clean
├── State-dependent?
│ ├── Check for leaked state between tests or requests
│ ├── Look for global variables, singletons, or shared caches
│ └── Run the failing scenario in isolation vs after other operations
└── Truly random?
├── Add defensive logging at the suspected location
├── Set up an alert for the specific error signature
└── Document the conditions observed and revisit when it recursFor test failures (npm shown — substitute the repository's own test command, per the test-driven-development skill's Discover the Stack First section):
# Run the specific failing test npm test -- --grep "test name" # Run with verbose output npm test -- --verbose # Run in isolation (rules out test pollution) npm test -- --testPathPattern="specific-file" --runInBand
Narrow down WHERE the failure happens:
Which layer is failing? ├── UI/Frontend → Check console, DOM, network tab ├── API/Backend → Check server logs, request/response ├── Database → Check queries, schema, data integrity ├── Build tooling → Check config, dependencies, environment ├── External service → Check connectivity, API changes, rate limits └── Test itself → Check if the test is correct (false negative)
**Use bisection for regression bugs:**
# Find which commit introduced the bug git bisect start git bisect bad # Current commit is broken git bisect good <known-good-sha> # This commit worked # Git will checkout midpoint commits; run your test at each git bisect run npm test -- --grep "failing test" # substitute the repository's focused-test command
Create the minimal failing case:
A minimal reproduction makes the root cause obvious and prevents fixing symptoms instead of causes.
Fix the underlying issue, not the symptom:
Symptom: "The user list shows duplicate entries" Symptom fix (bad): → Deduplicate in the UI component: [...new Set(users)] Root cause fix (good): → The API endpoint has a JOIN that produces duplicates → Fix the query, add a DISTINCT, or fix the data model
Ask: "Why does this happen?" until you reach the actual cause, not just where it manifests.
Write a test that catches this specific failure:
// The bug: task titles with special characters broke the search
it('finds tasks with special characters in title', async () => {
await createTask({ title: 'Fix "quotes" & <brackets>' });
const results = await searchTasks('quotes');
expect(results).toHaveLength(1);
expect(results[0].title).toBe('Fix "quotes" & <brackets>');
});This test will prevent the same bug from recurring. It should fail without the fix and pass with it.
After fixing, verify the complete scenario with the repository's own commands (npm shown):
# Run the specific test npm test -- --grep "specific test" # Run the full test suite (check for regressions) npm test # Build the project (check for type/compilation errors) npm run build # Manual spot check if applicable npm run dev # Verify in browser
Test fails after code change: ├── Did you change code the test covers? │ └── YES → Check if the test or the code is wrong │ ├── Test is outdated → Update the test │ └── Code has a bug → Fi
Production-grade engineering skills for AI coding agents. Skills encode the workflows, quality gates, and best practices that senior engineers use when building software.
Get the whole plugin, auto-invokedRepo: addyosmani/agent-skills
Guides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints,…
Tests in real browsers via Chrome DevTools MCP. Use when building or debugging anything that runs in a browser. Use when you need to inspect the DOM, capture…
Automates CI/CD pipeline setup. Use when setting up or modifying build and deployment pipelines. Use when you need to automate quality gates, configure test…
Conducts multi-axis code review. Use before merging any change. Use when reviewing code written by yourself, another agent, or a human. Use when you need to…
Simplifies code for clarity. Use when refactoring code for clarity without changing behavior. Use when code works but is harder to read, maintain, or extend…
Establishes a project's quality bar as a written contract and stops agents quietly lowering it. Interviews the user on which dimensions matter, supplies sane…