Created
April 1, 2026 15:18
-
-
Save daneuchar/d681bd52fe0f6da43aa16ea2a4386e4c to your computer and use it in GitHub Desktop.
flow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| flowchart LR | |
| subgraph P0["Phase 0 — Knowledge Bootstrap"] | |
| direction TB | |
| A["Scan Repo & Generate<br/>Module Docs"] --> B[" Define Rules &<br/>Conventions"] --> C[" Configure Copilot<br/> to Navigate Docs"] | |
| end | |
| subgraph P1["Phase 1 — Planning"] | |
| direction TB | |
| D["AI Generate PRD<br/>Ref Docs & Constraints"] --> E["Engineer Reviews<br/>generated PRD"] --> F["Co work with Copilot <br/> Refine PRD"] | |
| end | |
| subgraph P2["Phase 2 — Build & Iterate"] | |
| direction TB | |
| G["Copilot Implements<br/>Against PRD"] --> H["Engineer Validates<br/>Each Task"] --> I["Module Docs Updated<br/>Knowledge Compounds"] | |
| end | |
| subgraph P3["Phase 3 — Verify"] | |
| direction TB | |
| J["Run Test Suite<br/>Unit · Integration · E2E"] --> K["AI Self-Review<br/>Against Acceptance Criteria"] --> L["Engineer Sign-Off<br/>Final Approval"] | |
| end | |
| OUT([Deploy]) | |
| P0 -->|"Structured context"| P1 | |
| P1 -->|"Traceable plan"| P2 | |
| P2 -->|"All tasks validated"| P3 | |
| P3 -->|"All checks pass"| OUT | |
| style P0 fill:#0f172a,stroke:#3b82f6,color:#93c5fd | |
| style P1 fill:#0f172a,stroke:#8b5cf6,color:#c4b5fd | |
| style P2 fill:#0f172a,stroke:#10b981,color:#6ee7b7 | |
| style P3 fill:#0f172a,stroke:#f59e0b,color:#fde68a | |
| style A fill:#1e3a5f,stroke:#3b82f6,color:#bfdbfe | |
| style B fill:#1e3a5f,stroke:#3b82f6,color:#bfdbfe | |
| style C fill:#1e3a5f,stroke:#3b82f6,color:#bfdbfe | |
| style D fill:#2e1a5f,stroke:#8b5cf6,color:#ddd6fe | |
| style E fill:#2e1a5f,stroke:#8b5cf6,color:#ddd6fe | |
| style F fill:#78350f,stroke:#f59e0b,color:#fef3c7 | |
| style G fill:#064e3b,stroke:#10b981,color:#a7f3d0 | |
| style H fill:#064e3b,stroke:#10b981,color:#a7f3d0 | |
| style I fill:#78350f,stroke:#f59e0b,color:#fef3c7 | |
| style J fill:#451a03,stroke:#f59e0b,color:#fde68a | |
| style K fill:#451a03,stroke:#f59e0b,color:#fde68a | |
| style L fill:#451a03,stroke:#f59e0b,color:#fde68a | |
| style OUT fill:#10b981,stroke:#059669,color:#fff |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment