10x-implement

Implements phased technical plans from plan.md with progress tracking and per-phase commits.

Updated May 20, 2026
One-click install
npx skills add https://github.com/Oskarovsky/Sprinter --skill 10x-implement-oskarovsky
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 10x-implement
Source: https://github.com/Oskarovsky/Sprinter/tree/main/.cursor/skills/10x-implement
Command: npx skills add https://github.com/Oskarovsky/Sprinter --skill 10x-implement-oskarovsky

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Executing an approved technical plan by hand is error-prone: steps get skipped, progress state gets lost between sessions, and commits mix unrelated changes. This Skill drives plan execution phase by phase, keeping the plan's Progress section as the single source of truth and producing clean, auditable commits. ## Core Features & Use Cases - Phased plan execution: Reads context/changes/<change-id>/plan.md, finds the next pending step in the ## Progress section, and implements each phase fully before moving on. - State tracking and resume: Flips - [ ] to - [x] in the Progress section only, derives current position from the plan itself, and supports resuming mid-plan with no sidecar state files. - Phase-end commit ritual: Runs automated verification, gates on manual confirmation, stages only touched files by explicit path, proposes Conventional Commits messages with issue tracker Refs: lines, and writes the commit SHA back into completed Progress rows. - Use Case: After approving a plan for adding OAuth login, run the Skill with the change-id to implement phase 1, verify it, commit it with a traceable message, and continue or resume later with a copied resume command. ## Quick Start Ask the assistant to implement the approved plan for a change by running /10x-implement with your change-id, for example the oauth-login change, optionally specifying a phase number.

Frequently Asked Questions about 10x-implement

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

FAQPage Schema
How do I implement a technical plan phase by phase with an AI assistant?

Invoke the Skill with a change-id or a path to plan.md, optionally with a phase number. It reads the plan, finds the first unchecked Progress item, implements each phase fully, runs verification, and commits per phase before continuing.

How does the Skill track implementation progress across sessions?

Progress lives only in the plan's ## Progress section as checkbox rows, with no sidecar state files. Resuming means parsing that section and starting at the first unchecked line, so work can continue after clearing context.

Can I resume implementation after clearing the conversation context?

Yes. At each phase boundary the Skill offers to copy a resume command like /10x-implement <change-id> phase N to your clipboard. Running it in a fresh session picks up from the first pending Progress row.

What happens if the codebase does not match the plan?

The Skill stops, presents the expected versus actual situation, and asks how to proceed: adapt and continue, skip that part, or stop and re-plan. It never silently diverges from the approved plan.

Does it commit changes automatically without review?

No. Each phase ends with a manual verification gate requiring human confirmation, a dirty-path prompt for unrelated changes, and an approval step for the proposed Conventional Commits message before committing.

When should I not use this Skill?

Do not use it for archived changes under context/archive/, which it refuses, or for work without an approved plan. Create and review a plan first, then run implementation.