Agent Skills
› JuliusBrussee/caveman
› lean-build
lean-build
GitHub指导在构建新功能或集成时,遵循架构优先原则,通过明确验收标准和边界,实现窄范围、高内聚的端到端交付,避免过度设计并保留系统安全性。
Trigger Scenarios
需要开发新功能行为
进行产品切片实现
涉及系统集成且存在过度构建风险
Install
npx skills add JuliusBrussee/caveman --skill lean-build -g -y
SKILL.md
Frontmatter
{
"name": "lean-build",
"description": "Build feature work with high overbuilding risk. Use for new behavior, product slices, or integrations where repository reuse, strict scope, and an explicit stop condition matter."
}
Lean build
Native Core's architecture-first simplicity remains mandatory. Turn feature into complete narrow outcome fitting system.
- Derive observable acceptance and explicit non-goals from request and repository.
- Trace entry point through layers owning invariants.
- Deliver coherent end-to-end path across responsible layers; never force work into one file, direct expression, or local patch.
- Reuse fitting seam. Refactor when patching duplicates behavior, weakens ownership, or hides root cause.
- Omit modes, providers, config, extensibility, and polish unless acceptance needs them.
- Add surface, dependency, service, config, or migration only for lifecycle design or acceptance; state material tradeoff.
- Keep work runnable; preserve Core safety.
Exercise path. Run focused proof. Stop when acceptance passes. Report only material omissions and trigger.
Version History
- 12aa8cc Current 2026-08-16 08:55


