skills/rad-plan-quick/SKILL.md
Start the planning pipeline in quick mode — same plan/audit/approval ceremony as /rad-plan, but with the quick template, Extra Large task size, and autonomous execution mode hardcoded
npx skillsauth add MetalHexx/RadOrchestration rad-plan-quickInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
project_name: $0 — The name of the new project to plan. (e.g., "QUICK-DEMO")You are an orchestrator. You'll be using the rad-orchestration skill for this project. Read the skill and prepare to use it for running the planning pipeline.
/rad-plan-quick is the discoverable front door for quick mode. It wraps /rad-plan and silently bakes in three defaults:
quick — --template quick is hardcoded; this skill does not prompt for a template choice and does not accept a template argument.Extra Large — set as task_size_preference = "Extra Large"; this skill skips the task-size question.autonomous — set as pipeline.gate_mode = "autonomous" (signal gate_mode_set with gate_mode: autonomous per the action-event reference); this skill skips the gate-mode question. No mid-execution per-task or per-phase prompt fires.Do not announce that defaults are being applied. The Step 1 starting message confirms all three resolved choices in one block, matching /rad-plan's confirmation style.
Produce a nicely formatted and mildly enthusiastic message confirming the project name, the quick template, Extra Large task size, and autonomous execution mode. List planning steps by reading quick.yml: include only kind: step nodes that appear before the first request_plan_approval gate. Everything after that gate is execution, not planning.
Start the planning pipeline and call needed CLI parameters to start the planning process, passing --template quick. Append the following as a plain prose instruction in the planner agent's spawn prompt:
"Task size preference: Extra Large. Size all tasks according to that tier per the sizing rubric in the master-plan workflow."
rad-plan-audit skill (full-audit mode) to audit the Requirements doc and the Master Plan. Give the subagent both doc paths and instruct it to follow .claude/skills/rad-plan-audit/references/full-audit.md. The subagent returns a structured report with frontmatter verdict: approved or verdict: issues_found. The auditor does NOT edit either planning doc — it reports.verdict: approved: proceed to Step 4.verdict: issues_found:
Dispatch the planner agent with the audit report path, the Requirements doc path, and the Master Plan path, instructing it to follow the corrections workflow at .claude/skills/rad-plan-audit/references/corrections-workflow.md. The planner applies fixes inline and returns a short summary of actioned and declined findings.
Re-invoke the explosion script to regenerate phases/ and tasks/ from the corrected Master Plan:
npx tsx .claude/skills/rad-orchestration/scripts/explode-master-plan.ts \
--project-dir <project-dir> \
--master-plan <master-plan-path> \
--project-name <project-name>
The script auto-backs-up the pre-correction phases/ and tasks/ into backups/{ISO-timestamp}/ and resets state.graph.nodes.phase_loop before re-seeding. On exit code 2 (parse failure in the corrected Master Plan), halt and surface the structured parse_error JSON to the user — do not retry in-skill.
The plan_approval_gate is non-negotiable in quick mode. Present the gate to the user and wait for an explicit approve / reject decision from the user. Quick mode is "lightweight execution," not "fire-and-forget post-plan," so the approval requires human review.
plan_approved. The pipeline will next request ask_gate_mode — do not prompt the user. Signal gate_mode_set --gate-mode autonomous directly; the CLI maps the flag into context.gate_mode, the mutation handler validates it (task / phase / autonomous), and the autonomous default sticks for the rest of the run.plan_rejected and halt. The user can edit the Master Plan and re-invoke /rad-plan-quick (or /rad-plan) to author a fresh plan. Do not retry inside this skill.Use the askQuestions tool to ask the user how they want to proceed and execute the plan. Give them 2 options:
rad-execute skill — approve and begin execution immediately.rad-execute-parallel skill — set up the worktree and follow user's choices. Stop there. Do NOT begin execution and proceed with following the steps in rad-execute-parallel.development
Use this skill whenever a task might involve code beyond the current working directory — when you're figuring out where code lives, scoping work that may span multiple repositories, or about to act as if the current repo is the whole system — and whenever the user wants to register, bind, describe, group, or manage repositories and repo-groups. The repo registry is your map of the repos a team works across and how they relate.
tools
Stop the detached radorch dashboard UI server (SIGTERM).
business
Report whether the radorch dashboard UI server is running, and its URL.
business
Start the radorch dashboard UI as a detached server and report the URL.