Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/vimalk0703/shipworthy/systematic-debuggingnpx skills add Vimalk0703/shipworthy --skill systematic-debugginggit clone --depth 1 https://github.com/Vimalk0703/shipworthyWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00039 | $0.00673 |
| Opus 5 | $0.00019 | $0.00336 |
| Sonnet 5 | $0.00008 | $0.00135 |
| Haiku 4.5 | $0.00004 | $0.00067 |
Grade A, and why
systematic-debugging scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Systematic Debugging
The Anti-Pattern This Prevents
Trial-and-error debugging: change something, see if it works, repeat. This approach takes 2-3 hours and has a 50% first-time fix rate. Systematic debugging takes 15-30 minutes with a 95% first-time fix rate.
The 4 Phases
Phase 1: Observe
Gather evidence before forming theories.
- What exactly is the symptom? (error message, wrong output, crash)
- When does it happen? (always, sometimes, only in production)
- What changed recently? (git log, recent deploys, config changes)
- Can you reproduce it reliably?
- Read the FULL error message and stack trace
Phase 2: Hypothesize
Form testable theories based on evidence.
- What could cause this symptom?
- List 2-3 hypotheses, ranked by likelihood
- Each hypothesis must be testable — "something is wrong" is not a hypothesis
- Consider: is this a code bug, a data bug, a config bug, or an environment bug?
Phase 3: Test
Test each hypothesis methodically.
- Start with the most likely hypothesis
- Design a test that would CONFIRM or ELIMINATE the hypothesis
- Run the test. Read the results carefully.
- If confirmed: proceed to Phase 4
- If eliminated: move to the next hypothesis
Phase 4: Implement
Fix the root cause, not the symptom.
- Write a test that reproduces the bug FIRST (TDD applies to bugs too)
- Implement the fix
- Run the reproducing test — it should pass now
- Run the full test suite — nothing else should break
- Verify the fix in the original context where the bug was observed
The 3-Fix Rule
If 3 attempted fixes don't resolve the issue, STOP.
You're likely:
- Fixing a symptom, not the root cause
- Working with wrong assumptions
- Dealing with an architectural issue that requires a different approach
When you hit the 3-fix limit:
- Step back and re-examine your assumptions
- Re-read the error messages and logs from scratch
- Consider whether the bug is in a different layer than you're looking at
- Discuss with the user before proceeding
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 68 lines · 39 tokens per session scan A ce0c7ca32fcf
systematic-debugging is a skill published in the GitHub repository Vimalk0703/shipworthy (7 stars, last pushed 4mo ago), licensed MIT. It adds 39 tokens to every session and 673 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
ring:adopting-lib-commons-huma-wrapper
Adopting the lib-commons/v5 shared Huma (OAS 3.1) OpenAPI wrapper + RFC 9457 problem model (commons/net/http/{openapi,problem}) in a Lerian Go service: wire openapi.New/ServeSpec + problem.Install (central >=500 scrub) on BOTH runtime and spec-gen paths, the per-rail problem.MapError flex seam, and rename-only spec…
ring:applying-composition-patterns
React composition patterns that scale. Avoid boolean prop proliferation by using compound components, lifting state, and composing internals. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or during architecture review. Skip for simple components with 1-2 props…
ring:searching-code
Forensic code search and analysis with optional Chain of Draft (CoD) ultra-concise mode. Five-phase methodology (clarification, planning, execution, analysis, synthesis) with severity assessment. Use for targeted investigation of specific patterns, bugs, or vulnerabilities. Skip for broad architecture mapping (use…
ring:opening-pull-requests
Open a GitHub Pull Request with automatic base branch detection, scope allowlist enforcement, PR template filling, and post-create base verification. Replaces ring:generating-pr-descriptions. Use after pushing a branch when ready to open a PR. Skip if the branch is not yet pushed or there are uncommitted changes …
ring:cleaning-comments
Cleaning redundant and obvious comments following clean code principles while preserving meaningful documentation. Supports git scope filtering (staged, unstaged, branch, commit-range). Use when code has excessive comments, during code review, or post-refactor cleanup. Skip when reviewing documentation files or…
ring:fixing-lint
Fixing lint to a clean state: runs the linter, groups reported issues into independent streams, and dispatches one parallel fixer agent per stream (ring:backend-go for Go, ring:general-purpose otherwise), iterating until clean. Use when a codebase has lint errors across multiple files. Skip for a single error (fix…