10x-test-plan

Orchestrates phased test rollouts by writing a durable test-plan document and driving research, plan, and implement phases.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Teams investing in testing often lack a structured strategy: they either write ad-hoc tests or over-invest in expensive e2e suites. This Skill creates a phased, evidence-based test rollout plan for existing (brownfield) products and orchestrates each phase through a research → plan → implement chain, resuming state across sessions. ## Core Features & Use Cases - Stateful rollout orchestration: Writes context/foundation/test-plan.md as a phased strategy, then re-derives progress on every invocation from which artifacts exist on disk, resuming at the next pending phase. - Evidence-driven risk mapping: Combines PRD/roadmap analysis, git hot-spot churn scans, test-base profiling, and a structured user interview to build a risk map scored by impact × likelihood, including abuse/security scenarios. - Downstream handoffs: Launches each rollout phase into /10x-new → /10x-research → /10x-plan → /10x-implement, updating the plan's status table as artifacts appear. - Use Case: After finishing a PRD and roadmap for an Astro/Supabase app, run the skill to produce a test strategy covering critical paths, hot-spot modules, and quality gates, then let it drive each phase to completion. ## Quick Start Ask the assistant to create a phased test plan for this project using the 10x-test-plan skill after your PRD and roadmap exist.

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 phased test plan for an existing project?

Run the skill in a project that already has a PRD or roadmap. It discovers documents, scans git hot-spots, profiles the existing test base, interviews you about risks, then writes a phased test-plan.md and drives each phase through research, plan, and implement steps.

What is a risk-based testing strategy?

A risk-based strategy prioritizes tests by failure impact multiplied by likelihood, using evidence like PRD lines, interview answers, and code churn. This skill scores risks High/Medium/Low and protects High×High scenarios first with the cheapest test layer that gives real signal.

Can I use this skill on a greenfield project with no code?

No. The skill is brownfield-only and requires at least a PRD or some implemented slices. For greenfield work, run the shaping and PRD skills first, then return to test planning once a product definition exists.

How does the skill resume progress across sessions?

It re-derives state on every invocation by checking which artifacts exist on disk: the test-plan guide, change folders, research.md, and plan.md progress checkboxes. The --status flag prints the current rollout position without doing work.

When should I not use a phased test rollout?

Skip it when you only need a single test for one file, when no PRD or code exists yet, or when you just want to configure CI hooks in isolation. Those cases belong to TDD-style or standalone configuration workflows.