implementation-checkpoint-planner

Insert evidence-based review checkpoints into implementation plans after high-risk work.

Updated Jul 7, 2026
One-click install
npx skills add https://github.com/vmitsaras/Agent-Skills --skill implementation-checkpoint-planner-vmitsaras
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: implementation-checkpoint-planner
Source: https://github.com/vmitsaras/Agent-Skills/tree/main/skills/project-planning/implementation-checkpoint-planner
Command: npx skills add https://github.com/vmitsaras/Agent-Skills --skill implementation-checkpoint-planner-vmitsaras

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Implementation plans often defer review until the end, letting architectural mistakes, broken contracts, or invalid assumptions propagate into dependent tasks where fixes become expensive. This Skill adds targeted review gates at the points where failure would cause the most downstream damage. ## Core Features & Use Cases - Risk-Based Checkpoint Placement: Identifies foundational, irreversible, cross-cutting, or contract-boundary work and places review gates before dependent tasks expand on it. - Decision-Oriented Gates: Defines for each checkpoint the decision question, required evidence, review mechanism, owner role, and explicit continue/revise/replan/waive outcomes. - Dependency Protection: Maps which downstream tasks are blocked by each gate and which work can safely proceed in parallel. - Use Case: Given a 20-task implementation plan for a new API with a data migration, use this Skill to insert a contract-test checkpoint after the schema task and a rollback-proof checkpoint after the migration, before any consumers are built. ## Quick Start Use the implementation-checkpoint-planner to add evidence-based review gates to this implementation plan and show which tasks each checkpoint blocks.

Frequently Asked Questions about implementation-checkpoint-planner

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

FAQPage Schema
How do I add review gates to an implementation plan?▼

Map task dependencies, mark work with high uncertainty, irreversibility, or blast radius, then place a checkpoint after enough evidence exists but before dependent expansion. Define each gate's decision question, required evidence, reviewer role, and continue/revise/replan criteria.

Where should checkpoints go in a software implementation plan?▼

Place checkpoints after foundational abstractions, API or schema contracts, irreversible changes like data migrations, cross-cutting concerns such as security or accessibility, and multi-team handoffs. Avoid gating routine low-risk reversible work.

What evidence should a go/no-go checkpoint require?▼

Require the smallest observable evidence set that exposes the key failure mode: passing contract or integration tests, migration dry runs with rollback proof, working vertical slices, measured performance thresholds, or recorded stakeholder approval.

When should I not add a checkpoint to a plan?▼

Skip checkpoints for routine, low-risk, reversible work with no downstream dependents, and remove gates whose review cost exceeds the plausible cost of failure. Do not add a gate solely because a phase ends.

What happens when an implementation checkpoint fails?▼

A failed checkpoint triggers a bounded revise path for rework and re-review, or a replan path when evidence invalidates an assumption or architecture choice. Downstream tasks stay blocked and later checkpoints are re-evaluated rather than blindly resuming.