10x-implement

Implement phased technical plans from plan.md with verification and per-phase commits.

Updated May 24, 2026
One-click install
npx skills add https://github.com/DevMachaj/Projekt-certyfikacyjny --skill 10x-implement-devmachaj
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: 10x-implement
Source: https://github.com/DevMachaj/Projekt-certyfikacyjny/tree/main/.claude/skills/10x-implement
Command: npx skills add https://github.com/DevMachaj/Projekt-certyfikacyjny --skill 10x-implement-devmachaj

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Approved technical plans often drift during implementation: steps get skipped, progress tracking gets lost, and commits bundle unrelated changes. This Skill executes a plan from context/changes/<change-id>/plan.md phase by phase, keeping the plan's Progress section as the single source of truth and producing one clean Conventional-Commits commit per phase. ## Core Features & Use Cases - Phase-driven execution: Resolves a change-id or plan path, reads the plan and referenced files fully, creates one task per phase, and resumes from the first unchecked Progress item. - Structured verification ritual: Runs success criteria, gates on manual confirmation, stages only touched files by explicit path, detects unrelated dirty paths, and writes the commit SHA back into each completed Progress row. - Mismatch handling: When reality diverges from the plan, it presents the discrepancy and asks whether to adapt, skip, or re-plan instead of silently improvising. - Use Case: After approving a three-phase plan for adding OAuth login, run the skill with the change-id to implement each phase, verify it, and land a scoped commit like feat(oauth-login): add token endpoint (p1) with the SHA recorded in the plan. ## Quick Start Ask the assistant to implement the approved plan for your change-id, for example by saying: implement the plan at context/changes/oauth-login/plan.md starting with 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 Claude?▼

Invoke the skill with a change-id or a path to context/changes/<change-id>/plan.md. It reads the plan and referenced files, creates one task per phase, and starts at the first unchecked item in the Progress section.

How does the skill track implementation progress?▼

Progress lives only in the plan's ## Progress section as checkbox lines. Completed steps flip from - [ ] to - [x], and after each phase's commit the short SHA is appended to every row flipped during that phase.

What happens when the code doesn't match the plan?▼

The skill stops, presents the expected versus actual situation with an explanation, and asks you to choose between adapting and continuing, skipping that part, or stopping to re-plan.

Can I resume an interrupted plan implementation?▼

Yes. Re-invoke the skill with the same change-id and it resumes from the first unchecked Progress line, trusting existing checkmarks. Rows already carrying a SHA suffix are never double-appended.

Why does the skill refuse to commit with git add -A?▼

It stages only the explicit touched-file set tracked during the phase plus plan.md, so unrelated dirty paths never leak into a phase commit. If unrelated dirty files exist, it asks whether to continue, stage all, or abort.