10x-implement

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

Updated Jul 4, 2026
One-click install
npx skills add https://github.com/Assamir/ai-toolkit --skill 10x-implement-assamir
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 10x-implement
Source: https://github.com/Assamir/ai-toolkit/tree/main/.cursor/skills/10x-implement
Command: npx skills add https://github.com/Assamir/ai-toolkit --skill 10x-implement-assamir

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 end up mixing 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 in order with task tracking. - Phase-end commit ritual: Runs automated verification, pauses for manual confirmation, stages only touched files by explicit path, and creates Conventional-Commits messages with optional issue tracker references (Jira, Linear, GitHub). - Resumable state tracking: Progress checkboxes and commit SHA write-backs live in the plan file itself, so work can resume after interruptions without sidecar state files. - Use Case: After a plan for a new OAuth login feature is approved, run the skill with the change-id to implement phase 1, verify it, commit it, and continue through all phases until the change is marked implemented. ## Quick Start Ask the AI to implement the approved plan for a change by running /10x-implement with your change-id, for example "implement the oauth-login plan starting at phase 1".

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 multi-phase technical plan with an AI assistant?

Provide the change-id or path to the plan file, and the skill reads the plan, finds the first unchecked step in the Progress section, and implements each phase in order. After each phase it runs verification checks and creates a scoped commit before moving on.

How does the skill track implementation progress across sessions?

Progress is tracked directly in the plan file's Progress section using checkbox lines, with no separate state file. On resume, the skill trusts completed checkmarks and picks up from the first unchecked item.

Can I resume implementation from a specific phase?

Yes, pass a phase number along with the change-id, such as phase 2, and the skill jumps to the first pending step inside that phase instead of scanning from the beginning.

What happens when the code 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 works around a mismatch.

Does the skill commit unrelated dirty files in the working tree?

No. It stages only the files touched during the phase by explicit path, never using git add -A. If unrelated dirty paths exist, it asks whether to leave them, include them, or abort the commit.