Each week, the newsletter features a workflow from an engineer using AI coding tools in their actual work. This page collects all of them in one place and serves as a living archive for the "Workflow of the Week" section from the newsletter.
Table of Contents
Christoph Nakazawa: Fire-and-Forget Approach to Agentic Coding
Published in ACW #8 on Jan 12, 2026.
This week's workflow is from Christoph Nakazawa, CEO at Nakazawa Tech.
The Fire-and-Forget Approach to Agentic Coding

Christoph primarily uses ChatGPT or Codex web. He's tried Claude Code and some open models, but never vibed with any of them. He prefers to stay in control, not a fan of terminal agents touching files on his computer. He wants agents to work in their own environment and send him the results for review.
The killer feature of Codex on web is the ability to specify how many versions of a solution you want. When I was building fate, I asked for 4 versions for anything slightly complex. As a result, I barely trust single-response LLMs anymore.
The approach is fire and forget. He doesn't always know what a solution should look like, and he's not a fan of specs. Code wins arguments. He fires off a prompt, looks at the results, and if it's not right or doesn't work, starts a fresh chat with a refined prompt. Planning happens in a regular ChatGPT chat with a non-Codex Thinking or Pro model.
He typically fires off 3-5 Codex sessions before stepping away from the computer or going to sleep, then works through each solution one by one. When done with a task, he archives all the chats and moves on.
A few things that he finds useful: turning memory off and starting a fresh chat for every question. Keeping a strict project structure so the model has rails to follow, then heavily editing and rewriting anything it generates before it touches the repo. Getting good at prompting a specific model, as the same prompt doesn't work as well with other LLMs. Building intuition for what it's good at and adjusting when a task takes more (or less) time than expected. Finally, treating the prompt input bar as a replacement for the todo list. Instead of filing a task, he drops the thought into a prompt. The change ships in an hour instead of sitting in a backlog forever.
I publish Agentic Coding Weekly every Monday. If you want new workflows like these in your inbox, subscribe below.
Eunsu Jang: Parallel Codex Agents with Git Worktrees
Published in ACW #7 on Jan 5, 2026.
This week's workflow is from Eunsu Jang, Lead AI Application Engineer at Explaza. Over to Eunsu:
Parallel Codex Agents with Git Worktrees

I use an OSS coding agent orchestrator called vibe-kanban and give it the task prompt. It creates separate git worktrees and runs independent Codex agents for each task.
If the task is genuinely hard or ambiguous, I’ll kick off multiple runs with slightly different instructions, or just switch the Codex model (for example GPT-5.2 vs GPT-5.1 Codex Max). This tends to surface different tradeoffs: one version might be safer and boring, another might be over-engineered, another might match the existing architecture better. Since each implementation is isolated in worktrees, it’s easy to compare approaches without branches getting tangled.
I noticed that these models often over-engineer the implementation. So I add following instructions in the project AGENTS.md file:
## GENERAL RULES:
- Avoid over-engineering
- Follow DRY/YAGNI
- Respect the project architecture
- Fail fast. No invisible fallbacks.Once the agents finish, I deploy each worktree and test in the browser. Anything that fails basic self-QA gets dropped early. For the ones that look promising, I open a separate Codex session and have it score and compare them. The score is subjective, but it’s useful for forcing a clear decision.
Here’s the exact comparison prompt I use:
Worktree A and Worktree B are results of the task below. Please evaluate each on a 10-point scale based on:
1. No over-engineering
2. Proper use of DRY/YAGNI
3. Strict respect for the project architecture
4. Fail fast, no invisible fallbacks
Choose the better worktree and explain why.
Original task instruction:
...Finally, I select the winning worktree, issue small follow-up instructions for final polish, and create the PR.
— Eunsu



