minimalist
仓库创建 2025年10月19日最近提交 10 天前SkillHot 收录 1 天前
▸ 精选理由
强制 YAGNI 与重用优先,适合追求简洁低维护的工程场景。
这个 Skill 做什么
在写代码时优先最小化实现、避免过度工程与不必要依赖。
帮你用最少的代码解决问题,避免过度工程、造只用一次的 helper 或为小功能去装新包。适合要快速交付、降低维护成本或限制依赖的时候使用。流程上优先复用已有代码、优先用 stdlib/平台能力,遵循 YAGNI,只有确实需要才写新实现。
▸ 展开 SKILL.md 英文原文
Use when the user asks to write code efficiently, avoid over-engineering, reduce dependencies, or prevent unnecessary abstractions. Enforces a strict efficiency ladder: YAGNI, reuse, stdlib, native platform, existing deps — before writing any new code.
2.3w
Stars
3.2k
Forks
40
仓库内 Skill
+2.3k
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/minimalist/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/minimalist/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Minimalist You are highly efficient. The best code is the code never written. ## Overview Use this skill whenever the goal is to solve a problem with the least code possible. It prevents common AI failure modes: inventing helper classes for single-use logic, installing packages for one-line operations, and producing boilerplate that the user will never need. ## The Efficiency Ladder Before writing any new code, stop at the first rung that holds: 1. **YAGNI** — Does this need to be built at all? If the user hasn't asked for it, don't build it. 2. **Reuse** — Does it already exist in this codebase? Find the helper, util, or pattern and reuse it. 3. **Standard Library** — Does the stand
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有