用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/fabioc-aloha/Alex_Plug_In --skill root-cause-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | root-cause-analysis |
| description | Find the true source, not symptoms — systematic debugging from observation to permanent fix |
| tier | core |
| applyTo | **/*debug*,**/*error*,**/*bug*,**/*issue*,**/*problem* |
If you fixed it but it came back, you fixed a symptom.
Every symptom has a cause. Every cause has a deeper cause. Keep digging until you reach something you can prevent, not just fix.
| # | Question | Answer |
|---|---|---|
| 1 | Why did the page crash? | JavaScript threw a TypeError on null |
| 2 | Why was the value null? | The API returned an empty response |
| 3 | Why did the API return empty? | The database query timed out |
| 4 | Why did the query time out? | Missing index on a 10M-row table |
| 5 | Why was the index missing? | No performance review in the PR process |
Root cause: Process gap (no performance review), not the missing index. Fix the system: Add performance checklist to PR template, not just add the index.
| Trap | Example | How to Avoid |
|---|---|---|
| Stopping at human error | "Dev forgot to add the index" | Ask why was it possible to forget? |
| Single chain only | Only follow one branch | Branch at each Why if multiple causes |
| Speculation without evidence | "Probably because of..." | Each answer must have evidence |
| Going too deep | Why #12: "Because physics" | Stop when you reach an actionable system change |
| Category | Common Patterns | Investigation Tools |
|---|---|---|
| Code | Null reference, off-by-one, race condition, type mismatch | Debugger, unit tests, static analysis |
| Data | Corrupt input, unexpected format, encoding issues | Query logs, data validation, sample inspection |
| Infrastructure | Disk full, memory exhaustion, network partition | Metrics dashboards, health endpoints, top/df |
| Dependencies | Breaking change, version mismatch, transitive conflict | Lockfile diff, changelog review, npm ls |
| Configuration | Wrong env var, feature flag state, missing secret | Config diff, environment comparison |
| Process | Missing review, unclear ownership, no runbook | Post-mortem patterns, team interviews |
When you don't know where the bug is, halve the search space:
git bisect between good and bad# Binary search with git bisect
git bisect start
git bisect bad HEAD # Current commit is broken
git bisect good v2.3.0 # This tag was working
# Git checks out middle commit, you test
# Repeat: git bisect good/bad until found
git bisect reset # Return to HEAD when done
// Binary search debugging in code
async function findBreakingChange(
commits: string[],
testFn: (commit: string) => Promise<boolean>
): Promise<string | null> {
let left = 0;
let right = commits.length - 1;
while (left < right) {
const mid = Math.floor((left + right) / 2);
const works = await testFn(commits[mid]);
if (works) {
left = mid + 1; // Bug introduced after this commit
} else {
right = mid; // Bug exists at or before this commit
}
}
return commits[left] ?? null;
}
| Time | Event | Source |
|---|---|---|
| T-24h | Deploy v2.3.1 | CI/CD logs |
| T-12h | Config change: cache TTL 60→30s | Config audit log |
| T-2h | First user report | Support tickets |
| T-0 | Alert fired | Monitoring |
Key question: What changed between "working" and "broken"?
| Evidence Type | Confidence | Example |
|---|---|---|
| Reproduces on demand | High | "Every time I submit this form..." |
| Correlates with a deploy | Medium | "Started after we deployed" |
| Timing coincidence | Low | "Started Monday" (traffic patterns?) |
| "It's never done this before" | Very Low | Memory is unreliable — check logs |
| Phase | Purpose | Example | Deadline |
|---|---|---|---|
| Immediate | Stop the bleeding | Rollback, disable feature, redirect traffic | Now |
| Permanent | Fix root cause | Add missing index, fix validation, patch dependency | This sprint |
| Prevention | Stop recurrence | Add CI check, monitoring alert, runbook, PR checklist | Next sprint |
Test the fix: The permanent fix should make the immediate fix unnecessary. If you remove the band-aid and the symptom returns, you haven't found root cause.
| Symptom | Obvious Cause | Deeper Root Cause |
|---|---|---|
| Memory leak | Unclosed resource | No resource cleanup pattern in codebase |
| N+1 queries | Missing join | ORM hides query count, no query logging |
| Intermittent test failure | Timing-dependent | Shared mutable state between tests |
| "Works on my machine" | Different environment | No environment parity tooling (Docker, etc.) |
| Data corruption | Missing validation | Validation in UI only, not at API boundary |
| Slow deploys | Large artifact | No build caching, monorepo without selective builds |
The RCA section of a post-mortem should include: