用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/cajias/timesfm-autonomous-trainer --skill dedup-rules命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | dedup-rules |
| description | Rules for deduplicating code review findings across agents |
Apply after collecting all findings from all agents.
"Command injection in review.sh" and "Unsanitized input in review.sh" are the SAME finding (both about input validation in the same file). Keep the more detailed one.
"Token exposure in env" and "Secrets in environment variables" are the SAME. "No validation" and "Missing input sanitization" for the same function are the SAME. When agents use different terminology for the same issue, merge.
If code-reviewer and silent-failure-hunter both flag the same error handling issue, keep only one. Prefer the agent whose scope best matches the finding (error handling goes to silent-failure-hunter).
If one finding is a specific case of a broader finding (e.g., "missing null check at line 42" is a child of "function lacks input validation"), keep only the specific one.
Multiple instances of the same pattern across files (e.g., 5 functions all missing error handling) become one finding listing all instances.
"Would this require the same fix?" If YES, it's a duplicate. Keep the most detailed version.