Methodology for debugging non-trivial problems systematically. This skill should be used automatically when investigating bugs, test failures, or unexpected behavior that isn't immediately obvious. Emphasizes hypothesis formation, parallel investigation with subagents, and avoiding common anti-patterns like jumping to conclusions or weakening tests.
/plugin marketplace add freenet/freenet-agent-skills/plugin install freenet-freenet-agent-skills@freenet/freenet-agent-skillsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Invoke this methodology automatically when:
Before touching any code, explicitly list potential causes:
Hypotheses:
1. [Most likely] The X component isn't handling Y case
2. [Possible] Race condition between A and B
3. [Less likely] Configuration mismatch in Z
Rank by likelihood based on evidence. Avoid anchoring on the first idea.
For each hypothesis:
Parallel investigation with subagents:
Example:
Spawning 3 agents in parallel:
- Agent 1: Search for similar error handling in codebase
- Agent 2: Check git history for recent changes to affected module
- Agent 3: Read the test file and related fixtures
Always ask: "Why didn't CI catch this?"
Projects typically have multiple layers of testing:
If a bug reached production or manual testing, there's a gap in coverage. Investigate:
Which test layer should have caught this?
Why didn't the existing tests catch it?
Document the gap - Include in the issue/PR:
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.