Power-Up #4: My AI Workflow

Hi π, I'm Dung Huynh Duc A passionate engineer from Singapore
π Iβm currently working in AirCarbon
π¨βπ» All of my projects are available at https://productsway.com
π I regularly write articles on https://productsway.com
π« How to reach me dung@productsway.com
πΉ I often publish my video every Sunday on IT Man Channel
In the previous post, I shared about OpenCode works. Now, letβs go one level deeper. This is the exact workflow I use daily to ship code faster, combining GitHub issue, Copilot Agent, and multiple AI reviewers into a single pipeline.
The Big Idea
AI is not a single tool. Itβs a system of agents working together:
One writes code
Others review
Others validate
You orchestrate
Step 1 β Start with a Real Issue
Every task begins with a clearly defined issue:
π https://github.com/jellydn/my-ai-tools/issues/174
This is critical because:
AI needs context
Reviews need scope
You need a single source of truth
A vague issue = weak AI output.
Step 2 β Let Copilot Do the First Draft
Instead of writing code from scratch, I assign the issue to Copilot then in will open PR and work on it:
π https://github.com/jellydn/my-ai-tools/pull/175
At this stage:
Copilot generates the implementation
I review direction, not syntax
Step 3 β AI Code Review with CodeRabbit
Before touching anything manually, I run an AI review.
CodeRabbit helps:
Catch bugs early
Identify bad patterns
Suggest improvements
This is your first quality gate.
Step 4 β Pull PR Locally
Next, I check out the PR locally using:
π https://github.com/tobi/try
This makes it trivial to clone repository and manage under src/tries folder:
Checkout PRs
Run the code
Validate behavior
No friction = more testing.
Step 5 β Multi-Agent Review (This Is the Game Changer)
Now comes the most powerful part. I donβt rely on a single AI. I run multiple agents:
Codex
OpenCode
Pi
Claude Code
Each one:
Thinks differently
Finds different issues
Suggests different improvements
This creates a diverse review system, similar to having multiple senior engineers.
Final Thoughts
This workflow helps me:
Ship faster
Maintain high quality
Reduce mental load
The key is not better prompts. Itβs better orchestration.





