一键导入
simplify
Phase 3 review — find unnecessary code, abstractions, and dead paths, then simplify
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Phase 3 review — find unnecessary code, abstractions, and dead paths, then simplify
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Adversarial code review — find bugs, style issues, SDK misuse, then challenge findings
Pre-PR pipeline — version bump check, changelog, lint, build, and diff summary
Phase 1 planning — read docs, read source, write implementation plan
Phase 4 verification — lint check then full dual-backend build verification
Adversarial code review with two passes. First finds issues, then challenges each finding to eliminate false positives. Use before merging.
Review and simplify recent code changes. Remove unnecessary abstractions, dead code, and complexity while preserving behavior.
| name | simplify |
| description | Phase 3 review — find unnecessary code, abstractions, and dead paths, then simplify |
| user-invocable | true |
| allowed-tools | ["Read","Write","Edit","Bash","Glob","Grep"] |
Phase 3: Simplify
Review the recent changes and simplify them.
make lint after each edit to catch regressions immediately.make verify to confirm nothing broke.Target: fewer lines, same behavior. Remove anything not strictly needed.