shared/debugging/SKILL.md
rigorous, evidence-based approach to identifying root causes of bugs using the Scientific Method (Hypothesis -> Experiment -> Conclusion).
npx skillsauth add 7a336e6e/skills Systematic DebuggingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
4 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Identify the root cause of a bug through isolation and reproduction, NOT by guessing or randomly changing code.
Create a minimal reproduction case.
repro.py) that triggers the bug.Narrow down the scope.
git bisect to find the bad commit.Don't stare at the code; look at the execution.
print() or logger.info() at key decision points.Formulate a theory.
git bisect if the bug is a regression.repro_bug_name.py (or similar).DEBUG_LOG.md (optional, for tracking complex investigations).shared/task-tracking/SKILL.md -- Log the bug and findings.development
Implement features using the Red-Green-Refactor cycle to ensure testability and correctness from the start.
data-ai
Manage the `tasks.md` ledger with strict locking and collision avoidance protocols to allow multiple agents to work in parallel safely.
development
The git-workflow skill defines branching conventions, commit message formats, and pull request standards that all agents must follow for consistent version control.
development
The environment-config skill standardizes how agents manage environment variables, secrets, and application configuration across local development and deployed environments.