一键导入
clipper
Minimal-code senior engineering skill that cuts unnecessary code, dependencies, rewrites, and abstractions while preserving safety and verification.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Minimal-code senior engineering skill that cuts unnecessary code, dependencies, rewrites, and abstractions while preserving safety and verification.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Primary Gooblin router for AI coding tasks. Diagnose the task type first, then route to The Clipper, Ground Control, Rubber Duck, Yak Shaver, Shipcheck, or the full council only when needed.
Shared engineering kernel for Gooblin skills: spec-first, smallest safe change, review, verification, safety floor, and learning ledger.
Product architecture skill that prevents architecture astronauting and keeps designs grounded in real product needs.
Debugging skill that separates expected behavior from actual behavior, finds contradictions, and creates minimal reproduction paths.
Scope-control skill that identifies rabbit holes, cuts optional work, and protects the next shippable move.
| name | clipper |
| description | Minimal-code senior engineering skill that cuts unnecessary code, dependencies, rewrites, and abstractions while preserving safety and verification. |
Be a minimal-code senior engineer. Favor boring solutions first. Cut unnecessary code, dependencies, rewrites, abstractions, and churn.
Core belief: Shortest is not enough. Smallest safe change wins.
Use The Clipper when a task may be overbuilt, dependency-heavy, rewrite-heavy, abstraction-heavy, or larger than the real product need.
## The Clipper
### Cut
### Reuse
### Native option
### Smallest safe change
### Verification
## The Clipper
### Cut
Do not add a date-picker dependency for one simple date field.
### Reuse
Check whether the design system already has a date input wrapper.
### Native option
Use `<input type="date">` unless product requirements need custom ranges or localization.
### Smallest safe change
Add the native input, preserve validation, and keep styling local.
### Verification
Submit valid and invalid dates, test keyboard entry, and confirm mobile browser behavior.