incremental-implementation

Implements multi-file code changes in tested, committed vertical slices.

Updated Sep 5, 2026
One-click install
npx skills add https://github.com/nntoan/ultra-omp --skill incremental-implementation-nntoan
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: incremental-implementation
Source: https://github.com/nntoan/ultra-omp/tree/main/packages/proflow/skills/incremental-implementation
Command: npx skills add https://github.com/nntoan/ultra-omp --skill incremental-implementation-nntoan

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Large features implemented in one pass produce bugs that are hard to locate, broken builds between steps, and painful rollbacks. This Skill enforces a disciplined increment cycle so every change lands in a working, testable state. ## Core Features & Use Cases - Increment Cycle: Implement, test, verify, commit, then move to the next slice so the codebase never sits broken. - Slicing Strategies: Choose vertical slices, contract-first slicing for parallel backend/frontend work, or risk-first slicing to prove uncertain pieces early. - Scope and Simplicity Rules: Enforces one logical change per commit, feature flags for incomplete work, safe defaults, and rollback-friendly changes. - Use Case: When building a task management feature, deliver create, list, edit, and delete as four separate tested slices instead of one 500-line change. ## Quick Start Ask the agent to implement the next task from your plan incrementally, starting with only the database schema and API endpoint, running the repository's test and build commands after each slice before touching the UI.

Frequently Asked Questions about incremental-implementation

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement a large feature without breaking the build?▼

Break the feature into thin vertical slices where each slice delivers working end-to-end functionality. After each slice, run the test suite and build, then commit before starting the next slice so the codebase never sits in a broken state.

What is vertical slice development in software engineering?▼

Vertical slicing builds one complete path through the stack per increment, such as database plus API plus UI for a single operation. Each slice leaves the system working and testable, unlike horizontal layers that deliver nothing usable until the end.

When should I use feature flags for incomplete work?▼

Use feature flags whenever a feature is not ready for users but you need to merge increments to the main branch. Gate the new code behind an environment variable or config flag that defaults to off, keeping incomplete work invisible.

When is incremental implementation not needed?▼

Skip it for single-file, single-function changes where the scope is already minimal. The overhead of slicing, per-increment verification, and separate commits adds no value when the entire change is small and self-contained.

Why should refactors be separate commits from features?▼

Mixing refactors with feature changes makes both harder to review and debug, since a regression cannot be attributed to either change cleanly. Separate commits keep each change atomic, revertable, and easy to bisect.