I'm working with Codex and running multiple tasks in parallel, like this:
My project:
- Task A (side exploration / experimental idea)
- Task B (mainline / primary task)
Sometimes Task A turns out to be useful. At that point, I want to go back to Task B and have it "know" what was discovered in Task A, and continue from there.
The tricky part is: Task A and Task B are running in separate contexts, so there's no natural way for B to be aware of A.
Right now I'm thinking about things like:
- manually summarizing A into a document
- copying context into prompts
But none of these feel like a clean or scalable solution. So I'm curious what’s the best practice for sharing progress or learnings between parallel tasks?
Would love to hear how others are handling this.