u/Advanced_Drawer_3825

▲ 3 r/codex

how do you manage multiple active codex sessions?

claude code just shipped an agent view that lists all active sessions, shows which ones are waiting on input, lets you jump straight to the one that needs you.

I run multiple codex sessions at once and don't have a clean equivalent. My current workaround is adding this lsagent to my .zshrc

lsagent() {
local agent
agent=$(npx ai-devkit agent list -j \
| jq -r '.[] | "\(.name)\t\(.status)\t\(.type)"' \
| fzf --delimiter=$'\t' --with-nth=1,2,3 \
| awk -F'\t' '{print $1}')
[[ -n "$agent" ]] && npx ai-devkit agent open "$agent"
}

it works, kind of, cover both codex and claude code. but it's a static snapshot. I have to re-run it to refresh, no live signal, and i still have to alt-tab into the right terminal once i jump to the agent.

curious what people running multi-session codex are actually doing? or a tui someone's already built? or just keeping a mental map of which terminal is which?

reddit.com
u/Advanced_Drawer_3825 — 2 days ago