Skill

phase-runner

Just-in-time phase instruction loader for the project-orchestrator. Reads focused ~40-line phase files instead of holding the entire 1094-line prompt in active attention. Each phase file contains preconditions, expected outputs, content validation, dispatch instructions, and conditional logic.

From project-orchestrator
Install
1
Run in your terminal
$
npx claudepluginhub vivekmano27/agent-orchestrator --plugin project-orchestrator
Tool Access

This skill uses the workspace's default tool permissions.

Supporting Assets
View in Repository
phases/phase-0-5.md
phases/phase-0-75.md
phases/phase-0.md
phases/phase-1.md
phases/phase-2-1.md
phases/phase-2-5.md
phases/phase-2.md
phases/phase-3.md
phases/phase-4.md
phases/phase-5.md
phases/phase-6.md
phases/phase-7.md
phases/phase-8.md
Skill Content

Phase Runner — Just-in-Time Phase Instructions

How to Use

For each phase in the pipeline, read the corresponding phase file before executing:

Read("${CLAUDE_PLUGIN_ROOT}/skills/phase-runner/phases/phase-{N}.md")

Phase files are named: phase-0.md, phase-0-5.md, phase-0-75.md, phase-1.md, phase-2.md, phase-2-1.md, phase-2-5.md, phase-3.md, phase-4.md, phase-5.md, phase-6.md, phase-7.md, phase-8.md

Execution Loop

For EACH phase in order [0, 0.5, 0.75, 1, 2, 2.1, 2.5, 3, 4, 5, 6, 7, 8]:

  1. Read the phase file: Read("${CLAUDE_PLUGIN_ROOT}/skills/phase-runner/phases/phase-{N}.md")
  2. Check preconditions — verify required files exist
  3. Check conditional logic — skip if project-config.md says N/A
  4. Execute — dispatch agents per instructions
  5. Validate outputs — check files exist AND pass content validation
  6. Update progress.md — mark phase COMPLETE, set next phase pointer
  7. Phase transition gateAskUserQuestion (MANDATORY for all sizes)
  8. Approval gate — if applicable for task size (see orchestrator gate definitions)

If content validation fails, re-dispatch the responsible agent with a retry prompt (1 retry max).

Phase File Map

PhaseFileDescription
0phase-0.mdSpec directory setup
0.5phase-0-5.mdProject setup (tech stack interview)
0.75phase-0-75.mdBrainstorming
1phase-1.mdPlanning (via planning-team)
2phase-2.mdDesign via design-team
2.1phase-2-1.mdTask decomposition
2.5phase-2-5.mdGit setup
3phase-3.mdBuild via feature-team
4phase-4.mdTesting via quality-team
5phase-5.mdSecurity audit
6phase-6.mdCode review via review-team
7phase-7.mdDevOps & deployment
8phase-8.mdDocumentation
Stats
Parent Repo Stars0
Parent Repo Forks0
Last CommitMar 16, 2026