10x-test-plan

Orchestrates phased test rollouts for existing projects through a stateful plan file.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Teams with existing codebases often lack a coherent test strategy, and ad-hoc test writing misses the risks that actually matter. This Skill writes a phased test-rollout plan grounded in PRDs, git hot-spot churn, and a structured user interview, then drives each rollout phase through a research, plan, and implement chain while tracking state on disk. ## Core Features & Use Cases - Stateful rollout orchestration: Writes context/foundation/test-plan.md with a fixed schema, then re-derives progress on every invocation by checking which artifacts exist, resuming from the next pending phase. - Evidence-based risk mapping: Combines PRD lines, a five-question user interview, a 30-day git hot-spot scan, and a test-base profile into an impact-by-likelihood risk map with response guidance for each risk. - Downstream handoffs: Launches each rollout phase into /10x-new, /10x-research, /10x-plan, and /10x-implement, updating the plan's status table as artifacts appear. - Use Case: A team with a shipped product and sparse tests runs the skill, answers five interview questions about what scares them, and receives a 3-5 phase rollout plan that sequences critical-path coverage, hot-spot integration tests, and CI quality gates. ## Quick Start Run /10x-test-plan in a project that already has a PRD or roadmap to generate a phased test rollout plan and begin the first 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 /10x-test-plan in a project that has a PRD or roadmap. It reads your documents, scans 30 days of git hot-spots, profiles your existing test base, interviews you about real concerns, and writes a phased rollout plan to context/foundation/test-plan.md.

How does the phased test rollout resume after interruption?

The skill is stateless across sessions but stateful on disk. Each invocation checks which artifacts exist (change folder, research.md, plan.md, progress checkboxes) and resumes from the next pending rollout phase, so re-running it always picks up where you left off.

When should I not use a test rollout plan?

Skip it when there is no PRD, roadmap, or implemented code yet, when you only want to add a single test to one file (that is TDD territory), or when you only need to configure hooks or CI YAML in isolation.

Does the test plan identify which files contain bugs?

No. The plan deliberately cites evidence such as PRD lines, interview answers, and hot-spot directories, never file-level anchors. Locating the exact code that owns a failure is delegated to the research phase of each rollout.

How do I check test rollout progress without doing work?

Run /10x-test-plan --status. It reads the existing plan and prints a table of each rollout phase, its current status, and its change folder, then stops without modifying anything.