Download for macOS
Skill

incremental-implementation

@addyosmani Updated 2026-07-26

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.

agent-skillsantigravityclaude-codecodexcursorskills

Install

git clone https://github.com/addyosmani/agent-skills /tmp/agent-skills && ln -s /tmp/agent-skills/skills/incremental-implementation ~/.claude/skills/incremental-implementation

From README

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.