10x-test-plan

Orchestrates phased test rollouts by writing and maintaining a stateful test-plan.md.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Teams investing in tests for an existing product often lack a structured strategy: they either write tests ad hoc, over-invest in expensive e2e coverage, or produce a test plan that goes stale after the first sprint. This Skill writes a phased test rollout strategy grounded in real evidence (PRD, roadmap, git hot-spots, user interview) and then drives each rollout phase through the research, plan, and implement chain, resuming from the next pending phase on every run. ## Core Features & Use Cases - Stateful rollout orchestration: Re-derives progress from artifacts on disk (change folders, research.md, plan.md) and hands off to the next downstream command, so re-running always resumes where you left off. - Evidence-based risk map: Combines document discovery, a git hot-spot scan, a test-base profile, and a five-question user interview into an impact × likelihood risk map with response guidance per risk. - Growing cookbook: The generated test-plan.md starts as a strategy (§1–§5) and fills in cookbook patterns (§6) as each rollout phase ships, with a freshness ledger to prevent rot. - Use Case: A brownfield project with a PRD but no test strategy invokes the Skill; it interviews the owner, writes context/foundation/test-plan.md with 3–5 rollout phases, then queues /10x-new for the first phase and resumes automatically on later runs. ## Quick Start Run /10x-test-plan in a project that already has a PRD and roadmap to generate the phased test plan and begin the first rollout phase.

Frequently Asked Questions about 10x-test-plan

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

FAQPage Schema
How do I create a test strategy for an existing codebase?

Run the Skill in a project that already has a PRD or shipped code. It discovers documents, scans git hot-spots, profiles the existing test base, interviews you about risks, and writes a phased test-plan.md with an ordered rollout.

How does the phased test rollout resume after interruption?

The Skill is stateless across sessions but stateful via disk: each invocation checks which artifacts exist (change folder, research.md, plan.md with progress items) and resumes from the next pending rollout phase automatically.

When should I not use a phased test rollout?

Skip it when there is no PRD, roadmap, or implemented code yet, when you only want to add a single test to one file, or when you only need to configure hooks or CI in isolation. Those cases belong to shaping, TDD, or configuration work.

Does the test plan include security and abuse scenarios?

Yes. If the product has authentication, payments, or user input, the risk map must include at least one abuse scenario such as IDOR, injection, secret leakage, or rate-limit bypass, scored on the same impact and likelihood axes.

Why does the risk map avoid citing specific files and lines?

The plan records failure scenarios and the evidence that raised them, not code anchors. File-level ownership of failures is produced later by the research phase, keeping the plan honest about what has actually been verified.