What variant of Codex are you using?
IDE Extension
cc @etraut-openai, opening this as a fresh feature request per your guidance in #17185 (comment).
What feature would you like to see?
In the Codex VS Code extension, chat/thread history should be scoped, grouped, or filtered by the current workspace/project.
Right now, chats from different projects appear together in one shared history list. When working across multiple repositories, VS Code windows, remote workspaces, WSL/SSH sessions, or unrelated codebases, it becomes easy to resume the wrong thread or confuse which chat belongs to which project.
This creates a real workflow problem because Codex threads carry project-specific context. Accidentally continuing a thread from another project can lead to irrelevant suggestions, wrong assumptions, and extra mental overhead.
A useful MVP could be:
- Associate each thread with its originating VS Code workspace folder or working directory.
- Show current-workspace threads first in the extension history.
- Hide, collapse, or visually separate threads from other workspaces.
- Provide an “all threads” view or toggle for users who intentionally want global history.
- Preserve existing thread rename/archive behavior.
This does not need to introduce a full project-management system. The most important behavior is that when I am in Project A, I should not have to scan through chats from Projects B, C, and D to find the relevant Codex thread.
Additional information
This is related to the closed issue #17185, but I am opening a new feature request per maintainer guidance here:
#17185 (comment)
There is also related discussion in #12564, where the VS Code extension recently gained thread renaming. Renaming helps, but it is only a mitigation for the broader issue: chats from unrelated projects are still mixed together.
A commenter noted that Codex CLI already appears to have working-directory-based isolation by default, with codex resume --all available for showing all threads:
#17185 (comment)
If that is accurate, the VS Code extension could potentially reuse the same working-directory concept and expose it in the extension history UI.
What variant of Codex are you using?
IDE Extension
cc @etraut-openai, opening this as a fresh feature request per your guidance in #17185 (comment).
What feature would you like to see?
In the Codex VS Code extension, chat/thread history should be scoped, grouped, or filtered by the current workspace/project.
Right now, chats from different projects appear together in one shared history list. When working across multiple repositories, VS Code windows, remote workspaces, WSL/SSH sessions, or unrelated codebases, it becomes easy to resume the wrong thread or confuse which chat belongs to which project.
This creates a real workflow problem because Codex threads carry project-specific context. Accidentally continuing a thread from another project can lead to irrelevant suggestions, wrong assumptions, and extra mental overhead.
A useful MVP could be:
This does not need to introduce a full project-management system. The most important behavior is that when I am in Project A, I should not have to scan through chats from Projects B, C, and D to find the relevant Codex thread.
Additional information
This is related to the closed issue #17185, but I am opening a new feature request per maintainer guidance here:
#17185 (comment)
There is also related discussion in #12564, where the VS Code extension recently gained thread renaming. Renaming helps, but it is only a mitigation for the broader issue: chats from unrelated projects are still mixed together.
A commenter noted that Codex CLI already appears to have working-directory-based isolation by default, with
codex resume --allavailable for showing all threads:#17185 (comment)
If that is accurate, the VS Code extension could potentially reuse the same working-directory concept and expose it in the extension history UI.