phase-builder

Execute gated, resumable software build phases with git-based crash recovery and parallel builds.

1|Updated Jun 15, 2026
One-click install
npx skills add https://github.com/tmart2322/claude-structure --skill phase-builder
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: phase-builder
Source: https://github.com/tmart2322/claude-structure/tree/main/.claude/skills/phase-builder
Command: npx skills add https://github.com/tmart2322/claude-structure --skill phase-builder

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Manually orchestrating multi-step software build phases burns the main agent's context window, loses all progress on session crashes, and skips critical review gates that allow architectural drift and broken features to reach production.

Core Features & Use Cases

  • Thin Orchestrator Design: Dispatches background workflows to specialized subagents to keep the main agent's context lean, avoiding the trap of processing raw build/test output inline.
  • Resumable Execution: Recovers from crashes automatically using committed git state and task ledgers, so no phase progress is lost even if the session dies mid-build.
  • Gated Phase Workflow: Enforces entry go/no-go, pre-acceptance validation, and 11 exit gates aligned with project tenets to ensure every phase meets quality and design standards before merge.
  • Use Case: A product team building a new authentication feature can use this skill to run the entire phase end-to-end: from entry review and parallel chunk builds to validation, exit gates, and PR creation, with full crash recovery and tenet compliance.

Quick Start

Use the phase-builder skill to run the full end-to-end workflow for your chosen numbered software build phase, including planning, parallel builds, validation, and PR creation.

Frequently Asked Questions about phase-builder

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I recover software build progress after a session crash?

Resumable phase orchestration works by dispatching background workflows to specialized subagents while keeping the main agent context lean. This prevents context bloat from inline processing of raw build and test output during multi-step software builds.

How do I execute a phased software build workflow end-to-end?

Code review gates prevent architectural drift by enforcing entry go/no-go checks, pre-acceptance validation, and 11 exit gates aligned with project tenets. They ensure every phase meets quality and design standards before allowing a PR merge to production.

Can I run parallel chunk builds without losing main agent context?

Yes, you can run parallel chunk builds without losing main agent context by using a thin orchestrator design. It dispatches background workflows to specialized subagents, avoiding the trap of processing raw build and test output inline in the main session.

What are the limitations of manually orchestrating multi-step software build phases?

Manually orchestrating multi-step software build phases burns the main agent context window, loses all progress on session crashes, and skips critical review gates. This allows architectural drift and broken features to reach production unchecked.