Mobile remote-created worktree thread is not associated with project in Codex Desktop sidebar
Summary
A thread created from ChatGPT mobile through Codex remote access exists locally and can be opened by deeplink, but it does not appear in the Codex Desktop project sidebar.
This looks like a project/thread association issue rather than data loss.
Environment
- Codex Desktop: 26.513.31313, build 2867
- Codex CLI: 0.131.0-alpha.9
- OS: macOS
- Flow: ChatGPT mobile app -> Codex remote connection -> local Desktop host
- Thread mode: worktree
Steps to Reproduce
- On ChatGPT mobile, connect to a local Codex Desktop host through remote access.
- Open an existing project from that host.
- Start a new thread in worktree mode.
- Let the thread run normally.
- On the Desktop app, open the same project sidebar.
- Try to find the newly created thread.
Expected Behavior
The thread created from mobile remote access should appear in the same project sidebar on Codex Desktop.
Actual Behavior
The thread does not appear in the Desktop project sidebar.
However, the thread is present in local state and can be opened directly via deeplink:
codex://threads/<redacted-thread-id>
Local Evidence
The thread exists in the local SQLite state:
id=<redacted-thread-id>
archived=0
cwd=/Users/<user>/.codex/worktrees/<worktree-id>/<repo-name>
thread_source=NULL
The rollout JSONL also exists locally:
/Users/<user>/.codex/sessions/<date>/rollout-<timestamp>-<redacted-thread-id>.jsonl
The issue appears to be that the thread is not associated with the canonical project root:
/Users/<user>/<projects>/<repo-name>
In this case, the thread was created under a temporary Codex worktree path, but the Desktop sidebar did not map it back to the original project.
Related Issues
Possibly related:
- https://github.com/openai/codex/issues/10522
- https://github.com/openai/codex/issues/14519
- https://github.com/openai/codex/issues/21128
- https://github.com/openai/codex/issues/20833
- https://github.com/openai/codex/issues/21581
Notes
This is not a request for a local workaround. The expected product behavior is that threads created through mobile remote access remain visible in the corresponding Desktop project sidebar.
6 Comments
Potential duplicates detected. Please review them and close your issue if it is a duplicate.
Powered by Codex Action
I’m seeing the same issue from the ChatGPT iOS app.
Environment/details I can confirm:
This makes it look like the mobile-created Codex thread is real and can execute on the host, but Codex Desktop is not associating it with the visible project/thread history. From the user point of view it feels like the Codex chats “disappear” after being started on mobile, even though the file changes were actually applied.
Expected behavior: a task/thread started from ChatGPT mobile through remote access should appear in the same project/thread list in Codex Desktop so it can be resumed from the Mac.
This is blocking because mobile-started tasks become hard to inspect or continue later from Desktop.
I can confirm a very similar failure mode on Windows, with one extra detail that may help narrow down the indexing/backfill path.
Environment
codex-cli 0.141.0session_meta.cli_version:0.140.0-alpha.19session_meta.cli_version:0.142.0-alpha.1User-visible behavior
A project thread that was first started from mobile briefly appeared in Codex Desktop, then disappeared from the Desktop project/sidebar view after restarting Codex Desktop.
The conversation was not deleted. Its rollout JSONL transcript still existed locally under
.codex/sessions/..., andhistory.jsonlalso still referenced the same session id.Local state before repair
For the affected thread:
Other user-visible local project threads on the same host were generally indexed as:
So this looked like the thread existed, but was filtered out / not classified as a normal user thread in the Desktop thread list.
Important additional observation
Updating only
state_5.sqlitewas not durable. I first changed the affected row to:and appended the missing
session_index.jsonlentry. The Desktop list still did not show it immediately, and shortly afterward the SQLite row was written back to the old values:The cause appears to be that the rollout JSONL
session_metaline also had:After updating all three durable sources together:
session_index.jsonlentrystate_5.sqlite.threadstomodel_provider=customapi,thread_source=usersession_meta.model_providerto match the local visible providerCodex Desktop's thread list started showing the thread again.
Why this may be useful
This suggests the Desktop/app-server may be rebuilding or refreshing
state_5.sqlite.threadsfrom rolloutsession_meta, and that mobile/remote-created threads can be persisted with a provider/source shape that later causes them to disappear from the Desktop-visible user/project thread list.A robust product fix probably needs to treat these fields as recoverable/migratable metadata, not as a reason to hide an otherwise valid unarchived local user thread. At minimum, startup/backfill could repair missing
session_index.jsonlrows and normalizethread_source/ provider metadata for mobile remote-created local project threads, or avoid filtering them out solely because those fields differ from the current Desktop provider.All paths/thread ids above are intentionally redacted, but I can provide the exact local field layout if useful.
I am seeing a closely related variant on macOS.
A thread is visible from Codex mobile / remote history, but it is not showing where expected in Codex Desktop for the corresponding project. The underlying local data is intact; the issue appears to be Desktop project/sidebar association when the recorded cwd is a Codex-managed worktree path that no longer exists.
Sanitized local evidence:
<redacted>Codex Desktopvscode0.142.0-alpha.6/Users/<user>/.codex/worktrees/cb17/dotfilesstate_5.sqlite.threads:archived = 0source = vscodethread_source = NULLrollout_pathpoints to an existing JSONL under~/.codex/sessions/...session_index.jsonlhas an entry for the thread./Users/<user>/.codex/worktrees/cb17/dotfiles-> missing/Users/<user>/.codex/worktrees/9662/dotfilesI audited local state and found this pattern:
~/.codex/worktrees/...So this looks like the product-visible failure occurs when a Codex-managed worktree thread remains unarchived after its worktree cwd is gone. Mobile/history can still surface the session from the rollout/index data, but Desktop does not map it back to the canonical project root.
Expected behavior:
If a local thread is unarchived and its rollout JSONL exists, Desktop should still surface it in a recoverable place even when the recorded Codex-managed worktree cwd is missing. Ideally Desktop would map the thread back to the canonical Git repository/project root, or show it in a "missing worktree / needs recovery" state rather than hiding it from the project sidebar.
I can reproduce this on macOS with an ordinary local checkout (not a Codex-managed worktree), which suggests the problem is broader than worktree-to-project mapping.
Environment
0.144.1GPT-5.6-Sol/Users/<user>/Projects/<repo>Reproduction and evidence
cwd. One was reported asnotLoadedand the other asidle.This is therefore not data loss, a missing checkout, or an incorrect worktree path. The remote-created threads are present and associated with the exact existing project directory, but the Desktop project/sidebar view is not being invalidated, refreshed, or populated consistently.
Expected behavior
Every thread created through mobile Remote for a local project should appear automatically in that project's Desktop sidebar, including the first threads created for a newly opened project. A
notLoadedremote-created thread should not be excluded if it is active, unarchived, and has a valid projectcwd.A useful implementation check may be whether Desktop subscribes to thread-created/thread-list-invalidated events from the remote-control app-server and re-queries the affected project, rather than relying only on its existing local sidebar cache.
---
This issue comment was generated by LazyCodex.
Tag: lazycodex-generated
I can reproduce this on macOS with Codex CLI/app-server
0.144.1, using an ordinary existing checkout rather than a Codex-managed worktree.Flow:
Sanitized host-side evidence:
The affected thread is also absent from Desktop per-thread UI metadata (client-id/description/workspace-root-hint maps), while the app can still load it directly by ID.
A normal visible thread in the same installation is classified with
thread_source=user. This strengthens the existing evidence that remote-created user threads can be durably stored but omitted from Desktop indexing/classification even whencwdis valid and no worktree mapping is involved.Expected: a user thread created through Mobile Remote should be classified/indexed like other user threads and immediately appear in the host Desktop sidebar. Startup/backfill should also repair already-persisted unarchived threads with this metadata shape.
I did not edit SQLite/JSONL locally because the app-server may rebuild the row from durable metadata, and a supported product-side backfill is preferable.