|
|
|
|
|
by haarts
270 days ago
|
|
What I see most engineers do is parallelize. Have multiple agents work at the same time. It takes some time getting used to, but I think they are on to something. There's even an article I read about this the other week, but I can't seem to find it ATM. |
|
The challenge is that you have to be working on multiple work streams at once because so far Codex isn't great at not doing work you are doing in another task even if you tell it something like "class X will have a function that returns y"...it will go write that function most times.
I've found it really good for integration work between frontend and backend features where you can iterate on both simultaneously if the code isn't in the same codebase.
Also, for Codex this works best in the web ui because it actually uses branches, opens prs, etc. I think (though could be wrong) that locally with the CLI or IDE extension you might have to manually great git worktrees, etc.