用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bryancostanich/Cercano --skill systematic-debugging命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Deep multi-source research tool that identifies authoritative sources, systematically searches, analyzes and ranks findings, chases cited references, and compiles a structured report with executive summary, contradiction detection, gap analysis, and follow-up suggestions.
Generate doc comments for exported Go symbols using local AI and write them directly to the file. The host never sees the file contents — Cercano handles the entire read-think-write cycle locally.
Compute the expected result before running any simulation or sweep.
基于 SOC 职业分类
正在显示 SKILL.md
| name | systematic-debugging |
| description | Reduce, observe, reason, predict, probe, then fix — no guessing. |
You are now operating under Dave's debugging protocol. This is not optional guidance — it is the mandatory sequence for investigating any failure. Agents who skip steps reliably produce wrong fixes that waste time and create new bugs.
Every debug cycle follows this sequence. No skipping steps.
Before tracing anything, reduce to the smallest case that still fails.
If the minimal case passes, use divergence-point analysis: compare the passing case against the failing case signal-by-signal, log-by-log, output-by-output. The first thing that diverges is closest to root cause.
What does the data show? Not what you think should happen — what actually happens.
Trace the logic step by step to a specific mechanism that explains ALL observed data.
State specific, falsifiable predictions:
"If [hypothesis], then [specific observable] at [specific point] should be [specific value]"
"If [hypothesis is wrong], then [specific observable] will be [other value]"
A prediction you can't check is useless. Every prediction must name something you can actually observe.
Check the prediction against actual data. This step is mandatory before any fix.
Only after root cause is confirmed by PROBE:
| What goes wrong | What to do instead |
|---|---|
| "Let me just try changing this" | OBSERVE first. What does the data say? |
| Changing 3 things at once | One change. Run. Check. |
| "It must be X" without checking | That's REASON without PROBE. Check. |
| Guessing for 20 minutes | 2 minutes of theory max, then look at actual data |
| Fix didn't work, trying another fix | Revert first. Then re-OBSERVE with new data. |
| "That's weird, let me try..." | Weird = your model is wrong. OBSERVE harder. |