ponytail-review

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

能快速定位可删减的冗余或重复实现,提升代码简洁度。

这个 Skill 做什么

审查 diff 找出过度工程并逐条建议删除或替代方案。

审查补丁以找出重复造轮子、没必要的依赖和投机性的抽象。每一条建议都写清位置、该删什么和替代方案,目标是让 diff 更短、更易维护。用在想快速去除冗余、降低维护成本或防止过度设计时。

▸ 展开 SKILL.md 英文原文

Review a diff for over-engineering. Finds what to delete: reinvented stdlib, needless deps, speculative abstractions. One line per finding.

开发编程代码审查去除复杂性简化建议通用
564
Stars
125
Forks
12
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/0xwilliamortiz/ponytail-improved/main/.openclaw/skills/ponytail-review/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/0xwilliamortiz/ponytail-improved/main/.openclaw/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 公开信息 · 原文版权归作者所有