bug-hunt-swarm
Parallel read-only multi-agent root-cause investigation for bugs and regressions. Use when: investigating bugs, finding root causes, tracing regressions, or diagnosing failures with multi-agent swarm.
What this skill does
# Bug Hunt Swarm Investigate a bug with four read-only sub-agents in parallel, then have the main agent rank the likely causes and recommend the fastest path to prove or fix the issue. This skill is diagnosis-first: do not edit files or implement fixes as part of this workflow. ## Step 1: Build the Bug Packet Start by collecting the smallest useful investigation packet: 1. Symptom 2. Expected behavior 3. Actual behavior 4. Reproduction steps, if known 5. Scope of impact 6. Relevant evidence, such as logs, stack traces, failing tests, screenshots, recent diffs, or environment details Prefer this source order: 1. Direct user description 2. Explicit files, stack traces, logs, tests, or screenshots provided by the user 3. Current git changes or recent repo history when the bug appears regression-like 4. The smallest relevant code path or subsystem surrounding the failure If the bug report is underspecified, infer a minimal problem statement and say what is still unknown. Before launching sub-agents, read the closest project instructions and relevant docs for the touched area, such as: - `AGENTS.md` - repo workflow docs - architecture, state, routing, schema, or runtime docs for the affected subsystem ## Step 2: Bound the Investigation Write a short investigation brief for the swarm: 1. What appears broken 2. What is not yet proven 3. What part of the system is most likely involved 4. What evidence already exists 5. What kind of proof would count as confirmation Use read-only evidence gathering where useful: - `rg`, `git diff`, `git log`, `git show` - reading logs, crash traces, and config - existing test runs or the smallest safe reproduction command Do not edit files, inject new instrumentation, or implement fixes as part of this skill. ## Step 3: Launch Four Read-Only Investigators in Parallel Launch four sub-agents when the problem is large or ambiguous enough that parallel investigation helps. For a tiny and obvious issue, it is acceptable to investigate locally instead. For every sub-agent: - give the same bug packet and investigation brief - state that the sub-agent is read-only - do not let the sub-agent edit files, run `apply_patch`, stage changes, commit, or perform any other state-mutating action - ask for concise investigation output only - ask for: hypothesis, supporting evidence, missing evidence, smallest proof step, and confidence - tell the sub-agent to avoid generic code quality feedback, nits, or speculative guesses without evidence - tell the sub-agent to send findings back to the main agent only Use these four investigation roles. ### Sub-Agent 1: Reproduction and Scope Investigation Clarify the exact failure shape and its boundaries. Check for: 1. The narrowest reliable trigger 2. Conditions that make the bug appear or disappear 3. Expected versus actual behavior at the failure boundary 4. Whether the impact is local, cross-cutting, deterministic, or flaky This sub-agent is read-only. It must not edit files, apply patches, or make any other workspace changes. Recommended sub-agent role: `reviewer` ### Sub-Agent 2: Code Path and Failure Seam Investigation Trace the most likely execution path and identify the seam where behavior diverges. Check for: 1. State transitions, lifecycle edges, or ordering problems 2. Mismatched assumptions between caller and callee 3. Data-flow or control-flow breaks 4. The smallest code region most likely responsible for the failure This sub-agent is read-only. It must not edit files, apply patches, or make any other workspace changes. Recommended sub-agent role: `explorer` for broad tracing, or `reviewer` when a stronger local reasoning pass is more useful ### Sub-Agent 3: Recent Change and Regression Investigation Look for likely regressors in nearby history or changed contracts. Check for: 1. Recent diffs that correlate with the symptom 2. Config, flag, dependency, schema, or migration drift 3. Partial updates where several entry points should have changed together 4. Behavior changes that fit the timing of the bug report This sub-agent is read-only. It must not edit files, apply patches, or make any other workspace changes. Recommended sub-agent role: `reviewer` ### Sub-Agent 4: Proof Plan and Observability Investigation Determine the fastest way to confirm or reject the leading hypotheses. Check for: 1. The smallest existing test or reproduction that should fail 2. The most useful current logs, traces, metrics, or assertions 3. A minimal non-mutating command that could raise confidence quickly 4. What evidence is missing and how to collect it without broad churn This sub-agent is read-only. It must not edit files, apply patches, or make any other workspace changes. Recommended sub-agent role: `reviewer` Report only hypotheses that materially improve the odds of finding the real cause. It is better to return two evidence-backed theories than six vague guesses. ## Step 4: Synthesize Ranked Hypotheses The main agent owns synthesis. Treat sub-agent output as raw investigation input, not final output. Merge and rank the hypotheses: - combine duplicates - discard weak speculation - prefer evidence over elegance - separate likely root causes from mere contributing factors - keep alternate theories only when they remain plausible Normalize the surviving hypotheses into this shape: 1. Hypothesis 2. Supporting evidence 3. Missing or conflicting evidence 4. Smallest proof step 5. Confidence: high, medium, or low If the evidence is too weak for a real ranking, say so directly and present the leading open questions instead. ## Step 5: Output a Clear Diagnosis Path Present the result in this order: 1. Most likely root cause 2. Plausible alternate causes, if any 3. Fastest proof step 4. Recommended fix path 5. Open questions or blockers When the fix is not yet clear, recommend the next proving step instead of pretending the diagnosis is complete. When helpful, group actions into: - `prove now` - `fix next` - `follow up later` Do not implement fixes as part of this skill. The output is a read-only diagnosis with a prioritized path forward.
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.