systematic-debugging

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

防止盲目修补,强调查明根因再改,提升修复质量与可追溯性

这个 Skill 做什么

遇到 Bug 或测试失败时引导进行系统化根因分析再修复

遇到 Bug 或测试失败时,按步骤带你查清楚“为什么会出错”再去修,避免盲目打补丁。通常会包含复现、采集证据、列假设、做实验来验证根因,最后才改代码或测试。特别强调不能跳过根因分析,保证修复不会留下隐患或引入新问题。

▸ 展开 SKILL.md 英文原文

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes

开发编程调试根因分析故障排查通用
1
Stars
0
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/MaximoCorrea1/ultra-powers/main/flows/ultra-powers/skills/systematic-debugging/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/MaximoCorrea1/ultra-powers/main/flows/ultra-powers/skills/systematic-debugging/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Systematic Debugging

## Overview

Random fixes waste time and create new bugs. Quick patches mask underlying issues.

**Core principle:** ALWAYS find root cause before attempting fixes. Symptom fixes are failure.

**Violating the letter of this process is violating the spirit of debugging.**

## The Iron Law

```
NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST
```

If you haven't completed Phase 1, you cannot propose fixes.

## When to Use

Use for ANY technical issue:
- Test failures
- Bugs in production
- Unexpected behavior
- Performance problems
- Build failures
- Integration issues

**Use this ESPECIALLY when:**
- Under time pressure (emergencies make guessing tempting)
- "Just one q
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有