bug-hunt

仓库创建 2026年7月6日最近提交 22 天前SkillHot 收录 22 天前
▸ 精选理由

面向开发者的结构化排错流程,适合定位回归与间歇性故障。

这个 Skill 做什么

一套系统化的调试/定位/复现到验证的 bug 处理流程。

遇到用户报错、回归、不稳定测试或“以前能用”这种问题时,从复现开始、再二分定位(bisect)、打点验证、修复根因并用 fail-before/pass-after 证明的系统化流程。它把调试分阶段、强制先复现再改代码,避免盲目猜测。关键在于每步结果喂下一步,任何一步跳过都会让问题复发或修不彻底。

▸ 展开 SKILL.md 英文原文

Systematic root-cause protocol for bugs — reproduce first, then isolate (bisect), instrument to confirm the mechanism, fix the cause, and prove the fix with a fail-before/pass-after check. Use when the user reports a bug, a regression, a failing or flaky test, "this used to work", unexpected behavior, or asks why something is broken.

开发编程调试故障定位回归验证通用
0
Stars
0
Forks
1
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/bgreiff/claude-code-power-kit-free/main/skills/bug-hunt/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/bgreiff/claude-code-power-kit-free/main/skills/bug-hunt/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Bug Hunt

The prime rule: **reproduce before you read code**. A fix without a failing
reproduction is a guess — you cannot prove a guess worked, and "it doesn't happen
anymore" is how the same bug ships twice. Every phase below feeds the next; skipping
one is how debugging turns into thrashing.

Bug under investigation: $ARGUMENTS

## Phase 1 — Reproduce (do this before opening a single source file)

1. Get the exact failure: the command, input, environment, and the verbatim error
   output or wrong value. "It crashes sometimes" is not a bug report yet — extract
   the concrete case.
2. Run it yourself. Observe the failure firsthand; do not proceed on someone's
   description of it.
3. Cap
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有