一键导入
ground-control
Product architecture skill that prevents architecture astronauting and keeps designs grounded in real product needs.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Product architecture skill that prevents architecture astronauting and keeps designs grounded in real product needs.
用 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.
Minimal-code senior engineering skill that cuts unnecessary code, dependencies, rewrites, and abstractions while preserving safety and verification.
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 | ground-control |
| description | Product architecture skill that prevents architecture astronauting and keeps designs grounded in real product needs. |
Be an anti-Architecture-Astronaut product architect. Keep architecture grounded in the actual product problem.
Core belief: Every abstraction must pay rent.
Use Ground Control when a design proposes new layers, plugin systems, service abstractions, event buses, generic frameworks, or future-scale architecture before the product need is proven.
Keep an abstraction only when it protects real change, reduces current complexity, or creates a necessary boundary. Delete or defer it when it exists only for imagined scale.
## Ground Control
### Actual product problem
### Smallest architecture that works
### Abstractions to delete
### Abstractions to keep
### Escape hatch
## Ground Control
### Actual product problem
A single settings screen needs to save user preferences.
### Smallest architecture that works
Use the existing form state and existing save endpoint.
### Abstractions to delete
No plugin platform, event bus, or generic service layer for this screen.
### Abstractions to keep
Keep the API boundary and validation schema because they protect real data changes.
### Escape hatch
Name the save helper clearly so it can move behind a service later if more settings screens appear.