원클릭으로
pwrl-plan
Create structured implementation plans with three tiers (Fast/Standard/Deep). Pure skill pipeline orchestrator—no agent routing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create structured implementation plans with three tiers (Fast/Standard/Deep). Pure skill pipeline orchestrator—no agent routing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Extract, classify, deduplicate, structure, and save learnings from code, commits, tasks, and documentation
Review code changes through 4-phase micro-skill pipeline (scope, prepare, analyze, report)
Execute implementation work efficiently through 4-phase micro-skill pipeline
Verify repository state and confirm session completion before committing.
Create a clear session commit with state and next steps. Orchestrates checkpoint and commit micro-skills, optionally chains to pwrl-learnings.
Extract actionable learnings from code, commits, tasks, documentation, errors, and reviews.
| name | pwrl-plan |
| description | Create structured implementation plans with three tiers (Fast/Standard/Deep). Pure skill pipeline orchestrator—no agent routing. |
| argument-hint | [task description, requirements doc, or goal to plan] |
Create durable implementation plans that can be handed off for execution. Orchestrates a deterministic pipeline of micro-skills: scope → research → design → generate. No agent dependency, no fallback paths.
Plans capture decisions, structure, and approach before execution. They enable:
INPUT (task description)
↓
PHASE 1: Scope (pwrl-plan-scope)
→ Gather context, validate domain, bootstrap requirements
→ Output: Scoped context artifact
↓
PHASE 2: Research (pwrl-plan-research)
→ Discover patterns, identify risks, recommend external research
→ Output: Research findings artifact
↓
PHASE 3: Design (pwrl-plan-design)
→ Decompose into units, map dependencies, assess complexity
→ Output: Design artifact with unit decomposition
↓
PHASE 4: Generate (pwrl-plan-generate)
→ Select tier, render plan, embed learnings, save to docs/plans/
→ Output: Final plan document saved to file
↓
OUTPUT (plan file ready for execution)
Each phase is orchestrated sequentially: the orchestrator calls the micro-skill, receives the output artifact, validates it with a quality gate, and passes it to the next phase.
Phase 1: Scope (pwrl-plan-scope) — Gather context, validate domain, set interaction mode. Output: Scoped context artifact.
Phase 2: Research (pwrl-plan-research) — Discover tech stack, local patterns, and risk areas. Output: Research findings artifact.
Phase 3: Design (pwrl-plan-design) — Decompose into units, map dependencies, assess complexity. Output: Design artifact with unit decomposition.
Phase 4: Generate (pwrl-plan-generate) — Select tier, render plan, embed learnings, save to docs/plans/. Output: Final plan document.
Quality Gates: Run /pwrl-phase-checkpoint plan N [artifact-path] to validate each phase. See pwrl-phase-checkpoint for validation rules.
Interaction mode (detailed | smart | yolo) is set in Phase 1 (via pwrl-plan-scope Step 1.5) and read at the start of each subsequent phase. Determines whether confirmation steps execute or are skipped. The three modes behave as follows:
detailed — Pause at every phase transition; show generated artifacts; require explicit approval to proceed.smart — Phases run automatically; pause only when the next phase produces a HIGH-risk operation. v1 simplification: behaves like Yolo with a single confirmation prompt at workflow start.yolo — Every phase runs automatically; only the final outcome is reported.Exception: Error recovery steps always pause the pipeline, regardless of mode. See the canonical pattern in docs/learnings/pattern/interaction-mode-three-mode-propagation-2026-06-29.md.
| Tier | Best For | Files | Risk | Time |
|---|---|---|---|---|
| FAST | Bug fixes, small tweaks | 1-3 | LOW | 5-15 min |
| STANDARD | Most features | 4-8 | MED | 30-45 min |
| DEEP | Architecture, security, migrations | 9+ | HIGH | 1-2 hours |
See references/planning-tiers.md for full tier decision criteria and template examples.
docs/learnings/pattern/interaction-mode-three-mode-propagation-2026-06-29.md for the full contract.Philosophy: Fail explicitly, not silently. Each phase has clear error handling with recovery suggestions.
See: references/error-handling.md for comprehensive error recovery workflows across all phases, including circular dependencies, tier ambiguity, missing directories, filename collisions, and resume operations.
Each plan includes (tier-dependent):
ask_user_question, ask_user, ask_user_input, vscode/askQuestions or any available extension/tool for user interaction for all decisionspwrl-plan orchestrator
├── 1. Call pwrl-plan-scope → get scope artifact
├── 2. Call pwrl-plan-research → get research artifact
├── 3. Call pwrl-plan-design → get design artifact
└── 4. Call pwrl-plan-generate → save plan file
Benefits:
Q: What if a phase fails? Can I skip it or retry?
A: Yes. Each phase has explicit error handling with recovery suggestions. You can retry, provide clarification, modify scope, or abort. No silent failures.
Q: Can I use just one micro-skill (e.g., only generate from design)?
A: The orchestrator expects to call all four phases in sequence. If you want to use a single micro-skill, call it directly by name: /pwrl-plan-scope, /pwrl-plan-design, etc.