Skip to main content

troubleshoot

Systematic troubleshooting with root cause analysis. Use when users report errors, bugs, or unexpected behavior. Never retry without understanding why.

跳到安装

来源信息

仓库
TuYv/ccpm
最近来源活动
2026年6月28日 00:16
检测到的 SKILL.md 语言
英语
星标
1
分支
2

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
2 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
troubleshoot
description
Systematic troubleshooting with root cause analysis. Use when users report errors, bugs, or unexpected behavior. Never retry without understanding why.
# Troubleshooting Protocol Follow this systematic root cause analysis process. NEVER retry the same approach without understanding WHY it failed. ## Protocol 1. **STOP**: Do not re-execute the same command 2. **Observe**: What exactly happened? What was expected? 3. **Hypothesize**: What could cause this? (list 2-3 possibilities) 4. **Investigate**: Check official docs, logs, stack traces, config 5. **Root Cause**: Identify the fundamental cause (not symptoms) 6. **Fix**: Implement a solution that addresses the root cause 7. **Verify**: Confirm the fix works 8. **Learn**: Document the solution for future reference ## Anti-Patterns (strictly prohibited) - "Got an error. Let's just try again" - "Retry: attempt 1... attempt 2... attempt 3..." - "It timed out, so let's increase the wait time" (ignoring root cause) - "There are warnings but it works, so it's fine" (future technical debt) ## Required Format ``` ## Root Cause Analysis **Error**: [Exact error message] **Expected**: [What should have happened] **Cause**: [Root cause with evidence] **Fix**: [Solution addressing root cause] **Prevention**: [How to prevent recurrence] ``` Apply this to: $ARGUMENTS
在 GitHub 查看