learn/best-practices.md +3 −3
205 205
206Keep one thread per coherent unit of work. If the work is still part of the same problem, staying in the same thread is often better because it preserves the reasoning trail. Fork only when the work truly branches.206Keep one thread per coherent unit of work. If the work is still part of the same problem, staying in the same thread is often better because it preserves the reasoning trail. Fork only when the work truly branches.
207 207
208208Use Codex’s [multi-agent](https://developers.openai.com/codex/concepts/multi-agents) workflows to offloadUse Codex’s [subagent](https://developers.openai.com/codex/concepts/subagents) workflows to offload bounded
209209bounded work from the main thread. Keep the main agent focused on the core work from the main thread. Keep the main agent focused on the core problem,
210210problem, and use subagents for tasks like exploration, tests, or triage. and use subagents for tasks like exploration, tests, or triage.
211 211
212## Common mistakes212## Common mistakes
213 213