AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Debugging

skill-romiluz13-cc10x-debugging · by romiluz13

|

No reviews yet
0 installs
39 views
0.0% view→install

Install

$ agentstack add skill-romiluz13-cc10x-debugging

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-romiluz13-cc10x-debugging)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Debugging? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Debugging

Feedback Loop FIRST: No hypothesis without a repro loop. No fix without root cause. No fix without blast radius scan.

Reference Files

  • references/investigation-hygiene.md — investigation discipline, evidence handling
  • references/root-cause-playbooks.md — scenario-specific debugging playbooks

Feedback Loop FIRST (Before Any Hypothesis)

A hypothesis without a repro loop is a guess. Before H1, build a fast, deterministic, agent-runnable signal that turns red on the bug.

Construction Ladder (try in rank order, stop at first that works)

  1. Failing automated test (unit/integration) — best: lives at a seam, reusable as RED
  2. curl/HTTP request with asserted response
  3. CLI snapshot diff (run command, diff stdout/stderr/exit)
  4. Headless browser script (real DOM/runtime crash)
  5. Trace replay (recorded request/log/event re-run)
  6. Throwaway harness (tiny script calling the suspect function)
  7. Property/fuzz check (when failing input is unknown)
  8. git bisect run (regression with existing test)
  9. Differential old-vs-new (last-good vs HEAD behavior diff)
  10. Human-in-the-loop (LAST resort: scripted manual steps)

Sharpen the loop: sub-second beats sub-minute. Assert the exact failing fact, not a noisy superset. Same input → same red, no drift.

Flaky bugs: run in a tight loop (for i in $(seq 1 N); do ...; done), record hit rate (e.g. 3/50), treat raising that rate as loop iteration.

When You Genuinely Cannot Build a Loop

STOP. Do NOT advance to hypothesis. Return BLOCKED with:

  • What was tried: each rung attempted and why it failed
  • Concrete ask: the one thing that would unblock (env/credential access, captured artifact, permission for temporary instrumentation)

LSP-Powered Root Cause Tracing

Use LSP to trace root causes through the codebase:

  • Go to Definition — follow the call chain to where the value is actually set
  • Find References — find all callers of a suspect function (blast radius)
  • Go to Type Definition — check if the type allows the failing value
  • Hover — check types and signatures at the failure site

Don't guess where a value comes from — trace it with LSP. Don't grep for a function name — use Find References to get every caller with type info.

The Four Phases

Phase 1: Root Cause Investigation

  1. Understand — expected vs actual, when did it start?
  2. Git Historygit log --oneline -20 -- , git blame, git diff BASE..HEAD
  3. Compounded knowledge — if docs/solutions/debugging/ exists, check for a prior write-up matching this symptom before starting fresh investigation
  4. LOG FIRST — collect error logs, stack traces, run failing commands
  5. Feedback Loop — build repro signal (construction ladder above). No loop → fail closed.
  6. Variant Scan — identify which variant dimensions must keep working (locale, config, env, platform, data shape, concurrency)

Phase 2: Pattern Analysis

  1. Read the code around the failure — not just the failing line, the surrounding logic
  2. Check for recent changesgit diff the files involved
  3. Look for similar patterns — grep for the same anti-pattern elsewhere
  4. Identify the mechanism — not "what's wrong" but "how does the wrong thing happen"

Phase 3: Hypothesis and Testing

Form H1/H2/H3 with 0-100 confidence. Proceed to fix only when one reaches 80+.

Hypothesis Quality Criteria:

  • States a specific mechanism ("X returns null because Y is not set when Z")
  • Predicts a specific test outcome ("if I set Y, X returns the correct value")
  • Is falsifiable ("if Y is already set, this hypothesis is wrong")
  • Explains ALL observed symptoms, not just the primary one

Hypothesis Confidence Scoring:

| Score | Meaning | | ------- | --------- | | 90-100 | Verified: traced with LSP, reproduces the bug, fix resolves it | | 80-89 | Strong: consistent with all evidence, mechanism is clear | | 60-79 | Plausible: fits some evidence but gaps remain — investigate more | | `. | | "The tests pass so it's fixed" | Tests can pass for the wrong reason. Verify the test actually exercises the bug path. | | "I'm confident this is the cause" | Confidence without a prediction is a feeling, not evidence. | | "Let me just add a try/catch" | Catching the error hides the bug. Find the root cause first. |

Red Flags — STOP and Reconsider

  • You're about to make a change without a hypothesis
  • You're about to add a try/catch to suppress an error
  • You're about to hardcode a value to make a test pass
  • You've tried 3 fixes and none worked — you're pattern-matching, not debugging
  • You're considering skipping the feedback loop because "the bug is obvious"
  • You're about to mark FIXED without a regression test that was RED first
  • You're considering weakening an assertion to make the test pass
  • You're about to revert a fix and "try something else" without understanding why the fix failed

Pressure Testing

The gates in this skill must hold under pressure — deadline, complexity, "obvious bug" overconfidence. Before trusting a debug cycle:

  • Would this gate hold if the user said "just fix it now"? If not, the gate is advisory, not enforced.
  • Would this gate hold if the bug seemed obvious? The feedback loop gate exists precisely because "obvious" bugs are often wrong diagnoses.
  • Would this gate hold at 3am with no sleep? Rationalization tables exist because tired engineers skip process.

If a gate can be talked out of by pressure, it belongs in a hook (enforced), not in prose (advisory). The debugging gates here are advisory — the router and hooks enforce the structural ones (TDDREDEXIT, FEEDBACKLOOP.rung, DEBUGCLOSEOUT).

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.