incremental-implementation
仓库创建 2026年7月5日最近提交 22 天前SkillHot 收录 22 天前
▸ 精选理由
降低回滚成本,便于持续交付与审查。
这个 Skill 做什么
将大功能拆成可测试的增量小步实现并逐步落地。
把大功能拆成一小步一小步来做:先做能跑通的最小切片,验证没问题再扩展,避免一次改很多文件造成难以回滚或 review 的局面。适合任何跨多个文件的大改、或者感觉任务太大不容易一次提交时使用。优点是每次都把系统保持在可测可运行的状态,风险小、回滚容易。
▸ 展开 SKILL.md 英文原文
Delivers changes incrementally. Use when implementing any feature or change that touches more than one file. Use when you're about to write a large amount of code at once, or when a task feels too big to land in one step.
0
Stars
0
Forks
25
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/kulapoo/opencode-agent-harness/main/skills/incremental-implementation/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/kulapoo/opencode-agent-harness/main/skills/incremental-implementation/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Incremental Implementation ## Overview Build in thin vertical slices — implement one piece, test it, verify it, then expand. Avoid implementing an entire feature in one pass. Each increment should leave the system in a working, testable state. This is the execution discipline that makes large features manageable. ## When to Use - Implementing any multi-file change - Building a new feature from a task breakdown - Refactoring existing code - Any time you're tempted to write more than ~100 lines before testing **When NOT to use:** Single-file, single-function changes where the scope is already minimal. ## Tech Context Tech is declared in `rules/tech.md`. Each name maps directly to `tec
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有