agentsclimarketplace

Debugging

Skill LaProgrammerie/ai-engineering-core/skills/debugging

Systematic debugging with drift checks: spec vs code, outdated handoff, reproduce, narrow, minimal fix.From its SKILL.md

Install
npx -y skills add LaProgrammerie/ai-engineering-core --skill debugging

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 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.

SKILL.md

1.5 KB, 327 tokens by cl100k_base, as published. Nobody here has run it

Debugging (global)

Objective

Find root cause with a reproducible method, then propose a minimal verifiable fix.

When to use

  • Failing tests, runtime errors, flaky behaviour
  • Incident analysis (read-only mode if required)

Expected inputs

  • Exact symptom (message, stack, screenshot)
  • Environment, version, reproduction steps
  • Suspected recent changes (if known)
  • Logs or traces available

Steps

  1. Reproduce with a minimal scenario; if impossible, list what is missing.
  2. Narrow: bisect in time (commits) or space (modules).
  3. Hypotheses: rank by likelihood; disprove with evidence (logs, tests, experiments).
  4. Fix: target root cause; avoid expensive band-aids when a cleaner fix is reasonable.
  5. Harden: suggest a small test, assertion, or log to prevent recurrence.

Drift checks (behaviour mismatch)

When behaviour does not match expectations:

  • Check for spec vs implementation drift (.kiro/specs/ or equivalent vs code).
  • Check whether docs/ai/active/handoff.md (or equivalent) is stale relative to what was actually built.
  • If docs are wrong, recommend updating spec / handoff / projections — not only patching code to match outdated text.

Output format

  • Current theory + evidence for / against
  • Proposed fix (or options if uncertain)
  • Verification steps (commands or scenarios)

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.