Android ChatGPT app does not show Codex CLI threads created on Linux
What version of Codex CLI is running?
0.130.0
What subscription do you have?
Plus
Which model were you using?
gpt-5.4
What platform is your computer?
Linux Ubuntu 22.04
What terminal emulator and version are you using (if applicable)?
Bash
Codex doctor report
What issue are you seeing?
After creating threads in Codex CLI on Linux, then exiting Codex and launching remote control the Android ChatGPT app connects to the host successfully, but says:
No remote threads loaded for this host.
What steps can reproduce the bug?
- Start a Linux container
docker run -it \
--name test-codex-remote-control \
--security-opt=no-new-privileges \
--network=bridge \
--cpus="2.0" \
--memory="4g" \
--memory-swap="4g" \
--storage-opt size=10G \
ubuntu:22.04 \
bash
- Install Codex CLI
apt-get update && apt-get install -y curl \
&& curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
&& apt install nodejs -y \
&& npm install -g @openai/codex
- Run Codex CLI and log in on the device
Create a few threads in the CLI.
- Exit Codex CLI
- Start remote-control mode
RUST_LOG=trace LOG_FORMAT=json /usr/bin/codex remote-control 2> /tmp/codex-remote-control.full.log
- Connect from the Android ChatGPT app
What is the expected behavior?
Previously created threads from this host should appear in the Android app.
Additional information
The trace log suggests that threads are discovered during startup.
For example:
grep 'slingshot_backend_thread_list:initial' /tmp/codex-remote-control.full.log | grep Data
Environment
• Host: Linux in Docker (ubuntu:22.04)
• Codex CLI version: codex-cli 0.130.0
• Android ChatGPT app version: 1.2026.125
• Android ChatGPT app used to connect to the host
This issue has 1 comment on GitHub. Read the full discussion on GitHub ↗