What problem does it solve?
Large implementation tasks in the Novu monorepo are slow and error-prone when done serially in a single checkout, and parallel edits often collide on the same files. This Skill coordinates the whole implementation: it cuts a plan into disjoint vertical slices, runs one subagent per slice on its own git worktree, and merges everything back with a single integration pass.
Core Features & Use Cases
- Parallel slice execution: Splits a plan into seams touching disjoint files, then fans out subagents in parallel, each on an isolated worktree branched from the feature branch.
- TDD at pre-agreed seams: Decides upfront which slices are TDD-able (use cases, resolvers) versus verify-by-lint (dashboard UI), and instructs each subagent accordingly.
- Staged review and merge: Each slice commits and runs a park-and-review pass before merging back with --no-ff, followed by a cross-slice integration pass, a whole-diff code quality review, and one full test suite run.
- Use Case: Given a feature plan touching the Novu API and dashboard, invoke this Skill to implement backend policy, migrations, and UI copy in parallel worktrees, then merge and validate the combined diff.
Quick Start
Ask the agent to implement the current plan or ticket using nv-implement, splitting the work into parallel slices on separate worktrees.