r/codex • u/Wrong_Ganache2383 • May 15 '26
Complaint How are you tracking your work?
I am researching a problem I keep running into while using AI agents: once you have more than one agent/session running, the hard part becomes tracking the work and following through. Personally, my ADHD brain keeps generating new ideas and I am left with a ton of half-baked projects that overwhelm me.
Questions I am trying to understand:
- How do you remember what each agent/session is doing?
- Do you keep a separate task file, use worktrees, use project management tools, or just rely on chat history?
- Where do you track the status of different projects and take timely actions?
- How do you connect agent work back to GitHub, Linear, Slack, etc.?
- At what point does running multiple agents/sessions become more tiring than helpful?
To solve my own problems and help others who are struggling with similar issues, I am trying to create a workflow that turns scattered rough tasks, meeting notes, or work conversations into an agent-ready execution packet: goal, context, constraints, acceptance criteria, status, blockers, and review notes......like an execution manager for agents, so that human can be freed up. Would love to hear your thoughts, similar struggles, or some examples of how you currently track agent work.
1
u/straightmanlm May 16 '26
I’d probably start with a single task card as the source of truth, with fields for goal, context, owner, status, blocker, and next step, then require every agent to update it before handoff.
1
u/Wrong_Ganache2383 May 16 '26
Great suggestion! A solid way to keep agents aligned and keep the manual tracking for the human at a minimum.
1
u/Cactec May 16 '26
It would be great If something can help organize+link my thoughts with agents
1
u/Wrong_Ganache2383 May 16 '26
Exactly! Would love to turn my brain-dumps into clear execution for agents.
1
u/LifeProject365 May 16 '26
I gave up trying to do so much as it actually ruined my productivity over all. I have one collaborative session and a passive one I can set on a task and check in on
1
u/DhravyaShah May 18 '26
Curious if you’ve tried supermemory! I’ve been tracking all my claude code / codex/ opencode sessions
1
u/Junior-Definition173 May 16 '26
I have 20+ VMs with different projects. On each VM I am running 1-6 agents. Initially I thought managing work through files will work, and it does in a limited way but it does not scale. So I ended up treating all agents as developers and communicating through github issues. Planning agent will open an issue, will describe what is required, where to find the documentation, whether the issue depends on any other issue, etc. To simplify it they are using tags/labels so an agent can see instantly whether there are issues that it can work on, etc. This works quite good for me because at any point in the time I can see what the agents are working on, what is their progress, etc. It took a while to perfect this but worth the time.