用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/pynbj1001/alpha-sense --skill systematic-debugging命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
贝叶斯 Lollapalooza 投资追踪器。当用户提到"@贝叶斯 [公司]""贝叶斯追踪""持续跟踪某个标的""用贝叶斯更新概率""多因子共振概率跟踪"时触发本技能。本技能能够设定、更新、查看多个投资标的的贝叶斯后验概率,七个维度(价格、基本面、新闻、宏观、技术面、行业格局、外生冲击)的信号综合驱动,突破临界点时主动提醒。
乱世投资策略——AI革命与地缘裂变时代的全球配置筛选与检验框架。当用户提到"@乱世""@策略""投资筛选""检验标的""当前环境该不该买""乱世怎么配置""地缘风险下的投资"时触发本技能。综合周金涛周期框架、佩雷丝技术革命理论、李蓓宏观对冲体系、王川指数型投资理念、达利欧债务周期、反向策略六大框架。
董德志(国信证券宏观与固收首席分析师)的债券投资分析框架。 核心工具:「货币+信用」风火轮(四象限判断债市牛熊)、「名义增速定利率」、利率箱体理论、多资产交叉验证。 当用户提到「@债券大师」「@董德志」「@固收」「@利率研判」「@风火轮」「@债市判断」「@信用利差」时触发本技能。 适用场景:中国债市趋势研判、利率中枢定位、信用债策略、大类资产配置。
基于 SOC 职业分类
正在显示 SKILL.md
| name | systematic-debugging |
| description | Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes |
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.
NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST
If you haven't completed Phase 1, you cannot propose fixes.
Use for ANY technical issue: test failures, bugs in production, unexpected behavior, performance problems, build failures, integration issues.
Use ESPECIALLY when:
BEFORE attempting ANY fix:
Read Error Messages Carefully
Reproduce Consistently
Check Recent Changes
Trace Data Flow
test-driven-development skill)ALL of these mean: STOP. Return to Phase 1.
| Excuse | Reality |
|---|---|
| "Issue is simple, don't need process" | Simple issues have root causes too. |
| "Emergency, no time for process" | Systematic debugging is FASTER than guess-and-check. |
| "Just try this first, then investigate" | First fix sets the pattern. Do it right. |
| "I see the problem, let me fix it" | Seeing symptoms ≠ understanding root cause. |
| "One more fix attempt" (after 2+) | 3+ failures = architectural problem. |
| Phase | Key Activities | Success Criteria |
|---|---|---|
| 1. Root Cause | Read errors, reproduce, check changes | Understand WHAT and WHY |
| 2. Pattern | Find working examples, compare | Identify differences |
| 3. Hypothesis | Form theory, test minimally | Confirmed or new hypothesis |
| 4. Implementation | Create test, fix, verify | Bug resolved, tests pass |