Created
January 12, 2026 13:04
-
-
Save daneuchar/ad4e248e9b87183067cd6266cb1b43af to your computer and use it in GitHub Desktop.
ai workflow
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
| graph TD | |
| Start((Large Feature Goal, Story with acceptance )) --> Decomp[Decompose into Sub-Tasks] | |
| subgraph IterativeCycle [The Dev-Review Loop ] | |
| Decomp --> Branch[Create Feature-Sub-Branch] | |
| Branch --> Coding[Implement Small Logic Chunk] | |
| Coding --> LocalTest[Local Testing / Unit Tests] | |
| LocalTest --> PR[IDE AI assited review] | |
| PR --> Review[Human Peer Review & Feedback] | |
| Review -- Changes Needed --> Coding | |
| Review -- Dev Satisfied --> Merge[Commit & Push] | |
| end | |
| Merge --> Check{Feature Complete?} | |
| Check -- No --> Decomp | |
| Check -- Yes --> FinalQA[Final Integration Automation] | |
| FinalQA --> Ship((Merge to Develop)) | |
| style IterativeCycle fill:#f9f9f9,stroke:#333,stroke-dasharray: 5 5 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
update