diagnosing-bugs

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

有明确分阶段流程和反馈环,适合复杂问题定位。

这个 Skill 做什么

用于诊断难查的 bug 与性能回归的系统化流程。

给难排查的 bug 或性能回退提供一套系统化的诊断流程,目标是把问题缩小到一个可重复的失败信号并定位根因。适合当系统报错、行为异常或变慢,且简单猜测无法解决时使用。流程强调先搭建紧凑的 pass/fail 反馈环,按阶段排查并保留上下文(比如看 CONTEXT.md、相关 ADRs),只有有明确理由才跳过步骤。

▸ 展开 SKILL.md 英文原文

Diagnosis loop for hard bugs and performance regressions. Use when the user says "diagnose"/"debug this", or reports something broken/throwing/failing/slow.

开发编程调试故障诊断回溯通用
0
Stars
0
Forks
22
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/octopus117/mattpocock-skills-adapt/main/skills/diagnosing-bugs/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/octopus117/mattpocock-skills-adapt/main/skills/diagnosing-bugs/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Diagnosing Bugs

A discipline for hard bugs. Skip phases only when explicitly justified.

When exploring the codebase, read `CONTEXT.md` (if it exists) to get a clear mental model of the relevant modules, and check ADRs in the area you're touching.

## Phase 1 — Build a feedback loop

**This is the skill.** Everything else is mechanical. If you have a **tight** pass/fail signal for the bug — one that goes red on _this_ bug — you will find the cause; bisection, hypothesis-testing, and instrumentation all just consume it. If you don't have one, no amount of staring at code will save you.

Spend disproportionate effort here. **Be aggressive. Be creative. Refuse to give up.**

### Ways to cons
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有