From qult
Generate a structured plan from a feature description. Spawns plan-generator agent to analyze the codebase and produce a task-by-task plan. Use when starting new work or to expand a brief description into a detailed plan. NOT for modifying existing plans.
npx claudepluginhub hir4ta/qult --plugin qultThis skill uses the workspace's default tool permissions.
Generate a structured implementation plan from a brief feature description.
Guides strict Test-Driven Development (TDD): write failing tests first for features, bugfixes, refactors before any production code. Enforces red-green-refactor cycle.
Guides systematic root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Guides A/B test setup with mandatory gates for hypothesis validation, metrics definition, sample size calculation, and execution readiness checks.
Generate a structured implementation plan from a brief feature description.
Before generating a plan, check if a spec document exists:
docs/spec-*.md files using GlobThis ensures that design decisions from /qult:explore are carried into the plan.
Detect the language of $ARGUMENTS (e.g., Japanese, English, Chinese, Korean, etc.). If the language is not English, include an explicit instruction in the agent prompt: Output language: <detected language name> (e.g., Output language: 日本語).
Spawn one plan-generator agent with:
$ARGUMENTSThe agent analyzes the codebase independently and outputs a complete plan in markdown format.
Write the final plan to .claude/plans/plan-<timestamp>.md.
Use format: plan-YYYYMMDD-HHMMSS.md for the filename.
Spawn one plan-evaluator agent with the plan file path from Stage 2.
The evaluator reads the plan file and scores it on three dimensions:
If the evaluator's verdict is Plan: REVISE:
The SubagentStop hook enforces the score threshold mechanically (aggregate >= 10/15, max 2 iterations).
Summary line: Plan generated: .claude/plans/<filename> (N tasks, evaluation: Feasibility=N Completeness=N Clarity=N)
Then suggest: "Enter plan mode (Shift+Tab x2) to review and approve the plan."