debugging-and-error-recovery
仓库创建 2026年2月16日最近提交 21 小时前SkillHot 收录 20 天前
▸ 精选理由
适合遭遇未知错误时快速定位并保全证据。
这个 Skill 做什么
提供系统化的故障排查与根因修复流程,适用于测试、构建和运行时错误。
遇到测试失败、构建中断、运行异常或生产事故时,按结构化的排查流程找根因并修复,而不是盲猜。会保存证据、分层诊断、定位变更点并验证修复,适用于开发、CI/CD 流程和线上故障处理。好处是把混乱的故障变成可重复的排查步骤,减少来回摸索浪费时间。
▸ 展开 SKILL.md 英文原文
Guides systematic root-cause debugging. Use when tests fail, builds break, behavior doesn't match expectations, or you encounter any unexpected error. Use when you need a systematic approach to finding and fixing the root cause rather than guessing.
8.1w
Stars
8.7k
Forks
24
仓库内 Skill
+10.0k
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/addyosmani/agent-skills/main/skills/debugging-and-error-recovery/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/addyosmani/agent-skills/main/skills/debugging-and-error-recovery/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Debugging and Error Recovery ## Overview Systematic debugging with structured triage. When something breaks, stop adding features, preserve evidence, and follow a structured process to find and fix the root cause. Guessing wastes time. The triage checklist works for test failures, build errors, runtime bugs, and production incidents. ## When to Use - Tests fail after a code change - The build breaks - Runtime behavior doesn't match expectations - A bug report arrives - An error appears in logs or console - Something worked before and stopped working ## The Stop-the-Line Rule When anything unexpected happens: ``` 1. STOP adding features or making changes 2. PRESERVE evidence (error o
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有