with one click
epic-blitz
// Three-round adversarial critique of epic drafts (high / mid / low abstraction) with revision after each round. Produces a chain-ready revised epic.
// Three-round adversarial critique of epic drafts (high / mid / low abstraction) with revision after each round. Produces a chain-ready revised epic.
Pick the right megaplan profile, thinking-strength tier, and robustness level for the work in front of you โ for both Codex and Claude harnesses. Consult before invoking megaplan.
Observe an in-flight megaplan โ introspect state, trace events, diagnose blockages, detect drift. Companion to megaplan-decision. Use during and after a run, not before.
AI agent harness for coordinating Claude and GPT to make and execute extremely robust plans.
Methodology for running multi-profile LLM bake-offs via megaplan and presenting fair, blind-assessed comparisons. Cost/quality discipline, prompt hygiene, pre-merge gates, and reporting patterns. Use when the user says "bakeoff", "bake off", "megaplan bakeoff", or asks to compare profile mixes head-to-head.
Run megaplan plans and chains inside a provider-managed container (today, Railway) with a persistent workspace volume. Use when the run needs to outlast a local terminal session, span multiple repos, or share a long-lived dev box across concurrent chains. Covers `cloud.yaml` fields, `extra_repos[]` + `chain_session` multi-tenancy, the operator loop, and the gotchas that wedge fresh runs.
Run an epic โ a chain of sprint-sized megaplans driven sequentially via `megaplan chain`. Use when the work is bigger than ~2 weeks and needs to be decomposed into multiple plans with state, ordering, and failure semantics handled by the harness.
| name | epic-blitz |
| description | Three-round adversarial critique of epic drafts (high / mid / low abstraction) with revision after each round. Produces a chain-ready revised epic. |
A three-round pipeline for rigorous epic critique and revision. Fifteen
independent critics across three abstraction levels (high, mid, low) review
the epic in panels of five. After each panel, a senior reviser adjudicates
the findings โ accepting, rejecting, deferring, clarifying, or escalating โ
and produces a revised epic. The final readiness stage assesses whether the
epic is ready for megaplan chain decomposition into milestone briefs.
Use Epic Blitz when:
megaplan chain.Do NOT use Epic Blitz for:
writing-panel-strict for that).draft (file, required): Path to the epic markdown draft to review.# Run with default profile
megaplan run epic-blitz path/to/epic.md
# Run with explicit inputs flag
megaplan run epic-blitz --inputs draft=path/to/epic.md
# Run with a specific profile
megaplan run epic-blitz path/to/epic.md --profile @epic-blitz:standard
Epic Blitz runs three critique-and-revision rounds, each at a different abstraction level:
existing_system_reuse โ does the repo already solve this?conceptual_fit โ does this belong in megaplan's model?missing_abstraction โ is there a shared abstraction opportunity?epic_decomposition โ are milestones sliced correctly?strategic_risk โ is this solving the right problem?codebase_convention_fit โ does the approach match existing patterns?data_artifact_model โ are files and schemas shaped correctly?orchestration_semantics โ do phase transitions and failures make sense?agent_model_assignment โ are the right models on the right jobs?blast_radius โ what could regress?implementation_feasibility โ can an agent execute without guessing?testability โ are concrete tests specified?edge_cases โ what about empty findings, malformed output, interrupted runs?cli_ux_details โ are names, flags, and errors clear?migration_backcompat โ does this preserve existing behavior?After a successful run, the plan directory contains:
<plan_dir>/
โโโ high_panel/
โ โโโ existing_system_reuse/v1.md
โ โโโ conceptual_fit/v1.md
โ โโโ missing_abstraction/v1.md
โ โโโ epic_decomposition/v1.md
โ โโโ strategic_risk/v1.md
โโโ high_revise/v1.md
โโโ mid_panel/
โ โโโ codebase_convention_fit/v1.md
โ โโโ data_artifact_model/v1.md
โ โโโ orchestration_semantics/v1.md
โ โโโ agent_model_assignment/v1.md
โ โโโ blast_radius/v1.md
โโโ mid_revise/v1.md
โโโ low_panel/
โ โโโ implementation_feasibility/v1.md
โ โโโ testability/v1.md
โ โโโ edge_cases/v1.md
โ โโโ cli_ux_details/v1.md
โ โโโ migration_backcompat/v1.md
โโโ readiness/v1.md
โโโ state.json
The terminal artifact is readiness/v1.md โ the final revised epic with a
chain-readiness assessment.
| Profile | Description |
|---|---|
@epic-blitz:standard | Default โ Claude low-effort for all 15 critics and 3 revisers |