ponytail-review

仓库创建 2026年7月28日最近提交 1 小时前SkillHot 收录 1 小时前
▸ 精选理由

在 PR 审查时快速找出过度工程并给出可替代方案

▸ 风险提示

需要访问 diff/源码以分析,可能泄露未公开的代码变更

这个 Skill 做什么

对 diff/补丁进行以精简为导向的代码审查,逐行给出删减或替换建议

看 diff 时专门找过度工程,让代码越改越短。逐条指出哪一行可以删、为什么要删以及用什么替代,一条建议一行输出。适合审查补丁或 pull request 时用,作为功能正确性审查的补充,只盯复杂度和冗余。

▸ 展开 SKILL.md 英文原文

Code review focused exclusively on over-engineering. Finds what to delete: reinvented standard library, unneeded dependencies, speculative abstractions, dead flexibility. One line per finding: location, what to cut, what replaces it. Use when the user says "review for over-engineering", "what can we delete", "is this over-engineered", "simplify review", or invokes /ponytail-review. Complements correctness-focused review, this one only hunts complexity.

开发编程代码审查精简替代建议通用
564
Stars
125
Forks
12
仓库内 Skill
积累中
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/0xwilliamortiz/ponytail-improved/main/skills/ponytail-review/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/0xwilliamortiz/ponytail-improved/main/skills/ponytail-review/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
Review diffs for unnecessary complexity. One line per finding: location, what
to cut, what replaces it. The diff's best outcome is getting shorter.

## Format

`L<line>: <tag> <what>. <replacement>.`, or `<file>:L<line>: ...` for
multi-file diffs.

Tags:

- `delete:` dead code, unused flexibility, speculative feature. Replacement: nothing.
- `stdlib:` hand-rolled thing the standard library ships. Name the function.
- `native:` dependency or code doing what the platform already does. Name the feature.
- `yagni:` abstraction with one implementation, config nobody sets, layer with one caller.
- `shrink:` same logic, fewer lines. Show the shorter form.

## Examples

❌ "This EmailValidator class 
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有