debugging-patterns
The debugging-patterns skill provides structured root cause analysis frameworks including log-first investigation methodology, git bisect correlation analysis, and pattern-based diagnosis with confidence scoring. Use this skill during the DEBUG workflow investigation phase, when build tests fail unexpectedly, or when reviewing error handling gaps to systematically gather evidence before forming hypotheses.
git clone --depth 1 https://github.com/a5c-ai/babysitter /tmp/debugging-patterns && cp -r /tmp/debugging-patterns/library/methodologies/cc10x/skills/debugging-patterns ~/.claude/skills/debugging-patternsSKILL.md
## Pattern-Based Diagnosis - Check patterns.md for known gotchas matching the error - Cross-reference with common patterns: null pointer, race condition, resource leak, config error - Rate root cause confidence (>=80% to proceed with fix) ## Evidence Collection - Stack traces with full call chain - Error messages with context - Exit codes from reproduction attempts - Git blame/log for change correlation - Environment differences (if applicable) ## When to Use - During DEBUG workflow investigation phase - When BUILD tests fail unexpectedly - When reviewing error handling gaps ## Agents Used - `bug-investigator` (primary consumer) - `silent-failure-hunter` (pattern reference)
Review TypeScript code changes for consistency, type safety, and monorepo patterns across babysitter packages
Generate and validate documentation for @a5c-ai/babysitter-sdk CLI commands and exported APIs
Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to implementation.