10x-test-plan

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

Updated Aug 26, 2026
One-click install
npx skills add https://github.com/michaail/hybrid-logs-analyzer --skill 10x-test-plan-michaail
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 10x-test-plan
Source: https://github.com/michaail/hybrid-logs-analyzer/tree/main/.cursor/skills/10x-test-plan
Command: npx skills add https://github.com/michaail/hybrid-logs-analyzer --skill 10x-test-plan-michaail

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 prioritized, evidence-based strategy, leading to over-testing low-risk areas and under-testing what actually breaks. This Skill turns PRDs, roadmaps, git hot-spot data, and a structured user interview into a phased test rollout plan, then drives each 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 (risk map, phased rollout, stack, quality gates, cookbook) and re-derives progress on every invocation, resuming from the next pending phase. - Evidence-based risk discovery: Combines PRD/roadmap analysis, a git hot-spot churn scan, a test-base profile, and a five-question user interview to score risks by impact and likelihood, including a mandatory abuse/security lens for products with auth or payments. - Downstream handoffs: Launches each rollout phase into /10x-new, /10x-research, /10x-plan, and /10x-implement, updating status cells as artifacts appear. - Use Case: A brownfield project with a PRD but no test strategy invokes the skill; it interviews the team, identifies the top five failure scenarios, and produces a four-phase rollout starting with critical-path coverage at the cheapest test layer. ## Quick Start Run /10x-test-plan in a project that already has a PRD or roadmap to generate a phased test rollout strategy 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 git hot-spots from the last 30 days, interviews you about past failures, and writes a phased rollout plan to context/foundation/test-plan.md.

How does the test plan skill prioritize which tests to write first?

It scores each failure scenario on impact and likelihood using PRD lines, interview answers, and hot-spot churn data, then protects High-High risks first. Each risk gets response guidance naming the cheapest test layer that gives real signal.

Can I resume a test rollout after stopping mid-way?

Yes. The skill is stateful: every invocation checks which artifacts exist on disk (change.md, research.md, plan.md) and resumes from the next pending rollout phase. Use --status to print current progress without doing work.

When should I not use a phased test rollout skill?

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 CI or hooks in isolation. Those cases belong to shaping, TDD, or configuration workflows.

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 authorization gaps, injection, secret leakage, or rate-limit bypass, scored on the same impact-likelihood axes.