10x-plan

Create detailed implementation plans through iterative research and structured questioning.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Turning a vague task or ticket into an actionable implementation plan usually requires hours of codebase exploration, requirement clarification, and design decisions. This Skill automates that process by researching the codebase, asking targeted clarifying questions scaled to task complexity, and producing a phased, verifiable plan document. ## Core Features & Use Cases - Adaptive Questioning: Scales the number and depth of clarifying questions based on task complexity (LOW/MEDIUM/HIGH) and upstream artifacts like frame briefs and research docs, avoiding redundant questions. - Parallel Codebase Research: Spawns Explore and general-purpose sub-agents to map relevant files, trace data flow, and surface existing patterns before writing the plan. - Structured Plan Output: Writes a phased plan to context/changes/<change-id>/plan.md with success criteria, a two-page plan brief, and a machine-readable Progress section for execution tracking. - Use Case: Given a ticket to add OAuth login, the Skill reads prior research, asks a handful of architecture and edge-case questions, then produces a multi-phase plan with automated and manual verification steps ready for implementation. ## Quick Start Invoke the skill with a change id or task description, for example: create an implementation plan for the oauth-login change using the existing research document.

Frequently Asked Questions about 10x-plan

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

FAQPage Schema
How do I create an implementation plan from a ticket or task description?

Invoke the skill with the task description, a change id, or a path to a research or frame document. It reads all referenced files, researches the codebase with parallel sub-agents, asks clarifying questions scaled to complexity, then writes a phased plan to context/changes/<change-id>/plan.md.

How does the skill decide how many questions to ask before planning?

Question count scales with assessed complexity: 4-6 for LOW, 7-10 for MEDIUM, and 11-15 for HIGH tasks. Providing upstream artifacts like a frame brief or research doc reduces the count further, since decisions already documented are not re-asked.

What files does the implementation plan skill generate?

It writes plan.md containing phases, success criteria, and a Progress checklist section, plus plan-brief.md as a two-page summary. Both live in context/changes/<change-id>/, and change.md is updated to status: planned.

Can I resume or refine an existing implementation plan?

Yes, passing a change id that already has a plan.md triggers resume or refine mode. The skill refuses to write into archived changes under context/archive/ and instructs you to open a new change instead.

What is the Progress section in the generated plan?

Progress is a machine-readable checklist at the bottom of plan.md with one entry per verification step, formatted as - [ ] phase.index title. Execution skills flip items to [x] and append commit SHAs, making it the single source of truth for implementation state.