Document how app-server clients can discover and attach to the active Codex Desktop thread
What feature would you like to see?
I would like a supported, documented app-server path for a local external client
to discover and attach to the currently active Codex Desktop thread/turn.
The goal is not to change model behavior. The goal is to let a local integration
safely answer:
- which thread is the active Desktop UI session?
- is there an in-flight turn?
- can the client subscribe to that thread's live events?
- can the client steer or interrupt that in-flight turn through a supported API?
- if this is unsupported, how should clients detect that instead of guessing?
Problem
The documented app-server primitives work well for threads that the client
creates through app-server: a client can start a thread, start a turn, observe
events, and call turn/interrupt against a turn it owns.
The unclear case is an already-running Codex Desktop UI session. In local
experiments, an external client could see stored thread history, but could not
reliably bind that persisted thread to a loaded, controllable Desktop UI turn.
Observed shape:
thread/listcan show stored threads.thread/readwithincludeTurns:falsecan read a selected stored thread.thread/loaded/listcan return zero loaded threads from the client-visible
app-server surface.
- a
turn/interruptattempt against the selected active-thread candidate
returned thread not found.
- direct stdio against the active Desktop-bundled
codex app-servercan return
inventory, but still did not expose a loaded UI thread to control.
That leaves external clients with unsafe options: infer the current thread from
local session files, update times, or UI-visible labels, then try a control
method that may be targeting a persisted-but-not-loaded thread or the wrong
app-server process.
Environment from one local probe
- Platform: macOS / Darwin arm64
- Codex Desktop bundle:
26.527.60818/ build3437 - Desktop-bundled
codex:codex-cli 0.136.0-alpha.2 - Standalone current
codex:codex-cli 0.135.0
Why this matters
This blocks safe local orchestration around Codex Desktop sessions.
Examples:
- a local supervisor wants to notify or steer a long-running Desktop session;
- a recovery tool wants to tell whether a Desktop turn is still running, lost,
interrupted, or only persisted;
- a multi-agent/local automation layer wants to coordinate with a user-visible
Desktop session instead of creating detached hidden workers;
- a client wants to avoid scraping local session files or guessing from file
modification times.
Without an official current-Desktop-thread discovery/attachment contract, a
client can prove that app-server control works for threads it created, but not
that it can safely control the existing Desktop UI thread the user is looking at.
Desired outcome
Any of these would address the gap:
- A documented API to read the current Desktop UI thread id and active turn id
for the local app instance.
- A documented way to attach/subscribe an external app-server client to an
already-loaded Desktop UI thread.
- A documented way to resume or load a persisted thread into a controllable
app-server process without starting a new unrelated UI session.
- Clear errors that distinguish:
- unknown thread id,
- persisted but not loaded,
- loaded in another app-server process,
- no active turn,
- unsupported existing-UI-session control.
- Documentation stating that existing Desktop UI session control is not
supported, plus the recommended integration pattern.
Related issues
Related but not the same:
- #20943 asks for clearer app-server turn lifecycle semantics for external
clients. This issue is about identifying and attaching to the active Desktop
thread before lifecycle handling begins.
- #15299 asks for inbound notifications into an active CLI session. This issue
is about app-server clients and Codex Desktop.
- #25482 asks for remote app-server threads in Desktop thread orchestration.
This issue is about the local active Desktop UI thread.
- #25779 is a broader Desktop/session active-turn reliability meta issue. This
issue is narrower and asks for a supported external-client contract.
- #24518 covers a TUI
turn/interruptfailure path. - #25846 covers
codex app-server proxytransport behavior; this request is
about active Desktop thread discovery/attachment, not proxy framing.
Additional notes
I am intentionally not including raw thread ids, turn ids, local session file
paths, or transcript text here. The public observation is the control-surface
shape: persisted thread visibility does not currently imply that an external
client has a supported loaded-turn target for the current Desktop UI session.
This issue has 3 comments on GitHub. Read the full discussion on GitHub ↗