Orchestrator implementation preset — coordinating implementation tasks across specialist agents with mandatory quality gates...
Trigger patterns: "implement", "build", "create", "fix", "add feature", "modify"
PRE-CHECK (HyperSan) → IMPLEMENT (HyperArch) → POST-CHECK (HyperSan) → [DOC-UPDATE (HyperDream)]
↓ ↓ ↓ ↓
Validate Build Feature Validate Result Update Blueprint
Feasibility (Conditional)
Phase 1: PRE-CHECK
→ HyperSan validates feasibility
→ If FAILED: Report blockers, HALT
→ If PASSED: Continue
Phase 2: IMPLEMENT
→ HyperArch implements feature
→ If FAILED: Report issues, suggest fixes
→ If PASSED: Continue
Phase 3: POST-CHECK
→ HyperSan validates implementation
→ If FAILED: Return to Phase 2 (max 2 retries)
→ If PASSED: Continue
Phase 4: DOC-UPDATE (Conditional)
→ Trigger: Source is blueprint implementation doc (**/day_dream/**/80_implementation.md)
→ HyperDream updates the implementation doc
→ Mark completed tasks, update status
→ If NOT triggered: Skip to Finalize
All phase delegation YAML blocks (PRE-CHECK, IMPLEMENT, POST-CHECK, DOC-UPDATE) with evaluation criteria: → See delegation-blocks.md
Implementation standards embedded in the IMPLEMENT phase execution_guidance:
→ See implementation-standards.md
Evaluation Logic:
passed: true → Phase 2. If blockers → HALT.passed: true → Phase 4 or Finalize. If passed: false → retry (max 2).**/day_dream/**/80_implementation.md.Compile summary:
→ See implementation-success-template.md
→ See implementation-failed-template.md
If significant changes or user requests quality review:
task: "Review implementation for anti-patterns"
context: "[List of changed files]"
agent: HyperIQGuard
If user explicitly asks for attack testing:
task: "Attack this implementation for edge cases"
context: "[Module path, feature description]"
agent: HyperRed
**/day_dream/**/80_implementation.mdWhen an implementation plan includes phases that touch many files (large refactors, cross-module renames, destructive changes), the planning agent MUST insert a ⚡ GIT CHECKPOINT marker before that phase.
When to checkpoint:
Format in implementation plans:
## Phase N: [Description]
⚡ GIT CHECKPOINT — commit before this phase ([reason])
Rule: Human approval of the plan is implicit consent to checkpoint. No runtime asking needed. Commit for safety, then proceed boldly — do NOT skip the refactor out of fear.