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

Debug

skill-hellotern-sextant-debug · by hellotern

>-

— No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-hellotern-sextant-debug

✓ 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 No
  • ✓ 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-hellotern-sextant-debug)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
○ 5mo 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 Debug? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

!../principles/SKILL_BODY.md

!../tool-gitnexus/SKILL_BODY.md


Debugging Workflow

Disambiguation Gate

> Before starting: Can you point to a specific function or line and say "the bug is here"? > → Yes → Stop. Use sextant:fix-bug — the location is known, that skill handles the fix. > → No → Continue here. This skill is for "symptom known, location unknown."

Core Principle

Debug by bisection, not inspection. Form a hypothesis about which boundary separates correct from incorrect behavior, then eliminate layers until only the root cause remains.


Complete Execution Workflow

Step 1: Capture the Symptom

Before forming any hypothesis, establish a precise symptom record:

  • Error message (exact text, stack trace if available)
  • Reproduction steps (what sequence of actions triggers it?)
  • Frequency (always / intermittent / environment-specific)
  • Regression (did this ever work? What changed recently?)
─── Symptom Record ──────────────────────────────────
Error / unexpected output: 
Trigger steps:             
Frequency:                 Always / Intermittent (~X%) / Specific environment only
Regression:                Yes (last known good: ) / No / Unknown
─────────────────────────────────────────────────────

Step 2: Identify Paradigm + Select Isolation Strategy

Identify which architecture paradigm applies (per §6.0), then use the corresponding isolation strategy:

| Paradigm | Isolation Direction | Isolation Technique | |----------|---------------------|---------------------| | Backend layered | Entry → Logic → Data (inward) | Add logging at each layer boundary; find the first layer that returns incorrect data | | Frontend component tree | Page → Feature → Atom (downward) | Props injection test: pass hardcoded data directly to component, bypass store | | CLI / Script | Entry → Command handler → Core logic (inward) | Print intermediate values at each function boundary | | Functional (FP) | I/O boundary → Pure core (inward) | Test pure functions in isolation; side effects confined to boundaries | | Concurrent / Async | Reconstruct timing diagram; locate shared state | Add timestamps/sequence numbers to logs; inspect lock points on shared state | | Event-driven | Trace event publish → handler chain | Log each consumed event; verify handler receives correct payload |

🔗 When GitNexus is available, use context / trace MCP tools to map the call chain automatically.

Step 3: Form and Validate Hypotheses

Bisection protocol: Find the boundary between "working correctly" and "already wrong."

  1. Identify the layer / module where the symptom surfaces — this is the observation point
  2. Ask: "Is the input to this layer already wrong, or does this layer corrupt correct input?"
  3. Move the observation point inward (toward the source) until you find the first layer that produces incorrect output
  4. That boundary is your root cause hypothesis

For intermittent bugs (concurrency / async):

  • Add sequence numbers or timestamps to logs before the symptom point
  • Identify the shared state that changes between passing and failing runs
  • Hypothesis format: "Thread A reads X before Thread B writes the updated value"

For environment-specific bugs:

  • List all environmental differences (OS, config, versions, data state)
  • Eliminate variables one by one until the failing condition is isolated
─── Hypothesis Log ──────────────────────────────────
Hypothesis 1: 
  Test:   
  Result: ✅ Confirmed / ❌ Eliminated / ⏳ Pending

Hypothesis 2: ...
─────────────────────────────────────────────────────

Hypothesis limit gate — trigger when 3+ hypotheses have been eliminated without confirming root cause:

Stop the bisection loop. Do not generate more hypotheses. Instead, choose one of the following escalation paths:

  1. Request more context — ask the user for: a minimal reproduction case, relevant logs or stack traces at the failure point, or the last known-good commit/state
  2. Suggest git bisect — if the bug is a regression with an unknown introduction point, git bisect identifies the exact commit; ask the user to run it and share the result
  3. Add structured logging — propose specific log statements at the current observation point boundary; ask the user to re-run and share the output before resuming bisection
  4. Widen the symptom map — if only one symptom was captured, ask whether the bug manifests differently under other conditions (different inputs, environments, users)
─── Escalation Decision ─────────────────────────────
Hypotheses eliminated: N
Root cause: ⏳ not yet confirmed
Escalation chosen: 
Information needed from user: 
─────────────────────────────────────────────────────

Step 4: Confirm Root Cause → Hand Off to Fix

When you can answer all three:

  1. Which function / line produces the incorrect output?
  2. Under what exact input or state does the failure occur?
  3. Why does that code produce incorrect output (logic error, missing guard, race condition, wrong assumption)?

→ Root cause is confirmed. Hand off: switch to sextant:fix-bug.

Provide the fix-bug workflow with pre-filled context:

  • Root cause location (file + function)
  • Trigger conditions
  • Impact scope already identified (skip fix-bug Step 2 if already covered here)

Forbidden Actions

  • Do not apply a workaround (try/except swallowing, hardcoded fallback value) before the root cause is confirmed — this hides the bug
  • Do not generate a list of all possible causes without narrowing — work by elimination, not enumeration
  • Do not start fixing while the location is still uncertain — confirm first, then hand off to sextant:fix-bug

Reply Format

Debug Summary:

| # | Item | Detail | |---|------|--------| | [1] | Symptom | | | [2] | Paradigm | → isolation strategy: | | [3] | Hypotheses tested | | | [4] | Root cause | / ⏳ Not yet confirmed (next step: ) | | [5] | Next action | Switch to sextant:fix-bug with pre-filled context / |

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.