with one click
epoch
Master orchestrator for full 12-phase audit-trail workflow
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Master orchestrator for full 12-phase audit-trail workflow
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Aura protocol reference documentation โ 12-phase workflow, agent roles, constraints, and coding standards. Read when you need to understand the full workflow or look up conventions.
Task coordinator, spawns workers, manages parallel execution
Specification writer and implementation designer
Vertical slice implementer (full production code path)
End-user alignment reviewer for plans and code
Launch worktree-based or intree agent workflows using aura-swarm. Use when starting an epic, launching parallel agents, checking swarm status, or managing agent worktrees.
| name | epoch |
| description | Master orchestrator for full 12-phase audit-trail workflow |
| skills | aura:user-request, aura:user-elicit, aura:user-uat, aura:architect, aura:supervisor |
You coordinate the full 12-phase aura workflow with complete audit trail preservation.
See ../protocol/CONSTRAINTS.md for coding standards, severity definitions, and naming conventions.
-> Full workflow in PROCESS.md
bd dep add <parent> --blocked-by <child>Phase 1: aura:p1-user -> REQUEST (classify, research, explore)
s1_1-classify -> s1_2-research || s1_3-explore
Phase 2: aura:p2-user -> ELICIT (URE survey) + URD (single source of truth)
s2_1-elicit -> s2_2-urd
Phase 3: aura:p3-plan -> PROPOSAL-N (architect proposes)
Phase 4: aura:p4-plan -> REVIEW (3 parallel reviewers, ACCEPT/REVISE)
Phase 5: aura:p5-user -> Plan UAT (user acceptance test)
Phase 6: aura:p6-plan -> Ratification (supersede old proposals)
Phase 7: aura:p7-plan -> Handoff (architect -> supervisor)
Phase 8: aura:p8-impl -> IMPL_PLAN (supervisor decomposes into slices; Explore subagents)
Phase 9: aura:p9-impl -> SLICE-N (parallel workers; Ride the Wave โ workers persist for review)
Phase 10: aura:p10-impl -> Code Review (ephemeral reviewers review all slices; max 3 fix cycles per slice)
Phase 11: aura:p11-user -> Implementation UAT
Phase 12: aura:p12-impl -> Landing (commit, push, hand off)
Phase 1 has 3 sub-steps:
| Sub-step | Label | Description | Parallel? |
|---|---|---|---|
| s1_1-classify | aura:p1-user:s1_1-classify | Capture and classify request along 4 axes (scope, complexity, risk, domain novelty) | Sequential (first) |
| s1_2-research | aura:p1-user:s1_2-research | Find domain standards, prior art | Parallel with s1_3 |
| s1_3-explore | aura:p1-user:s1_3-explore | Codebase exploration for integration points | Parallel with s1_2 |
After classification, user confirms research depth. Then s1_2 and s1_3 run in parallel.
Given user request when starting epoch then capture verbatim in Phase 1 REQUEST task should never paraphrase or summarize
Given any phase transition when creating new task then add dependency to previous: bd dep add <parent> --blocked-by <child> should never skip dependency chaining
Given task completion when updating then add comments and labels only should never close or delete tasks prematurely
Given review cycle when any REVISE vote then create PROPOSAL-N+1 and repeat review should never proceed without full ACCEPT consensus
Given code review completion when ANY IMPORTANT or MINOR findings exist then Supervisor creates a follow-up epic (label aura:epic-followup) should never gate follow-up on BLOCKER resolution
Given non-user-gated phase completes when transitioning then proceed autonomously; user-gated phases: Phase 1 s1_1 (research depth), Phase 2 (URE), Phase 5 (Plan UAT), Phase 11 (Impl UAT) should never ask "Should I proceed?" for autonomous phases
Given Phase 5 UAT ACCEPT when transitioning to Phase 6 then ratify automatically should never ask user for ratification confirmation
Given cross-task references when linking related tasks (e.g. URD to REQUEST) then use description frontmatter references: block should never use peer-reference commands
# Phase 1: Capture user request
bd create --labels "aura:p1-user:s1_1-classify" \
--title "REQUEST: {{feature}}" \
--description "{{verbatim user request}}" \
--assignee architect
# Then proceed through phases manually
bd mol pour aura-epoch \
--var feature="{{feature name}}" \
--var user_request="{{verbatim request}}"
Each phase creates a task and chains dependencies. Cross-references use description frontmatter instead of peer-reference commands.
# After Phase 1 creates task-req
bd dep add task-req --blocked-by task-eli # REQUEST blocked by ELICIT
# After Phase 2 creates task-eli and URD
bd dep add task-eli --blocked-by task-prop # ELICIT blocked by PROPOSAL
# URD linked via frontmatter in its description:
# references:
# request: task-req
# elicit: task-eli
# After Phase 5 (UAT) and Phase 6 (ratify), update URD
bd comments add task-urd "UAT results: {{summary}}"
bd comments add task-urd "Ratified: scope confirmed as {{summary}}"
# Continue for all phases...
Trigger: Code review (Phase 10) completion + ANY IMPORTANT or MINOR findings exist. NOT gated on BLOCKER resolution. Owner: Supervisor creates the follow-up epic.
bd create --type=epic --priority=3 \
--title "FOLLOWUP: Non-blocking improvements from code review" \
--description "---
references:
request: <request-task-id>
review_round: <review-task-ids>
---
Aggregated IMPORTANT and MINOR findings from code review." \
--labels "aura:epic-followup"
The follow-up epic runs the same protocol phases with FOLLOWUP_* prefixed task types:
FOLLOWUP โ FOLLOWUP_URE โ FOLLOWUP_URD โ FOLLOWUP_PROPOSAL-1 โ FOLLOWUP_IMPL_PLAN โ FOLLOWUP_SLICE-N
See /aura:supervisor and /aura:impl-review for full creation commands and leaf task adoption.
Code reviews ALWAYS create 3 severity group tasks per review round, even if empty:
# Create all 3 severity groups immediately (EAGER, not lazy)
bd create --title "SLICE-N-REVIEW-{axis}-{round} BLOCKER" \
--labels "aura:severity:blocker,aura:p10-impl:s10-review" ...
bd create --title "SLICE-N-REVIEW-{axis}-{round} IMPORTANT" \
--labels "aura:severity:important,aura:p10-impl:s10-review" ...
bd create --title "SLICE-N-REVIEW-{axis}-{round} MINOR" \
--labels "aura:severity:minor,aura:p10-impl:s10-review" ...
# Empty groups are closed immediately
bd close <empty-important-id>
bd close <empty-minor-id>
Dual-parent BLOCKER: BLOCKER findings block both the severity group AND the slice:
bd dep add <blocker-group-id> --blocked-by <blocker-finding-id>
bd dep add <slice-id> --blocked-by <blocker-finding-id>
See ../protocol/CONSTRAINTS.md for full severity definitions.
# View dependency chain
bd dep tree {{latest-task-id}}
# Check blocked work
bd blocked
# See all epoch tasks by phase
bd list --labels="aura:p1-user:s1_1-classify" # REQUEST tasks
bd list --labels="aura:p2-user:s2_1-elicit" # ELICIT tasks
bd list --labels="aura:p3-plan:s3-propose" # PROPOSAL tasks
bd list --labels="aura:p9-impl:s9-slice" # Implementation slices
Each phase transition MUST include an explicit Skill(...) invocation directive. When launching agents for a phase, the prompt MUST tell the agent to call the corresponding skill as its first action.
| Phase | Skill | Invocation Directive |
|---|---|---|
| 1 (REQUEST: classify, research, explore) | /aura:user-request | Skill(/aura:user-request) |
| 2 (ELICIT + URD) | /aura:user-elicit | Skill(/aura:user-elicit) |
| 3-6 (PROPOSAL, REVIEW, UAT, RATIFY) | /aura:architect | Skill(/aura:architect) |
| 5, 11 (UAT) | /aura:user-uat | Skill(/aura:user-uat) |
| 7 (HANDOFF) | /aura:architect-handoff | Architect calls Skill(/aura:architect-handoff) after ratification |
| 8-10 (IMPL_PLAN, SLICES, CODE REVIEW) | /aura:supervisor | Supervisor prompt MUST start with Skill(/aura:supervisor) |
| 12 (LANDING) | Manual git commit and push | N/A |
CRITICAL: When the architect hands off to the supervisor (Phase 7 โ 8), the supervisor launch prompt MUST:
Skill(/aura:supervisor) โ without this, the supervisor skips role-critical proceduresDO: Add labels, add comments, update status DON'T: Close tasks prematurely, delete tasks, remove labels
# Correct: Add ratify label
bd label add task-prop aura:p6-plan:s6-ratify
bd comments add task-prop "RATIFIED: All reviewers ACCEPT"
# Wrong: Don't close
# bd close task-prop # NEVER DO THIS
protocol/PROCESS.md - Full workflow execution (single source of truth)protocol/CONSTRAINTS.md - Coding standards, severity definitions, naming conventionsprotocol/MIGRATION_v1_to_v2.md - Label and title mapping tables