/cwd command to switch working directory without restarting session
Open 💬 9 comments Opened Feb 21, 2026 by ignatremizov
💡 Likely answer: A maintainer (github-actions[bot], contributor)
responded on this thread — see the highlighted reply below.
What variant of Codex are you using?
CLI (TUI) custom fork off of 0.104.0
What feature would you like to see?
Add a /cwd slash command to change the working directory inside the current TUI session, with a policy-selection step in the same flow.
Current workflow is frustrating:
- Exit TUI
cdinto another repo/worktreecodex resume ...- Re-approve sandbox/policy for that directory
This is especially painful when iterating on many sibling forks. I want Codex to keep autonomous execution within the selected repo, but I do not want to grant blanket access to the parent directory just to avoid repeated approvals.
Proposed UX:
/cwd <path>to switch current working directory/cwdwith no args opens a picker/input modal- In the same flow, prompt for policy handling for the target directory:
- apply target directory defaults (trust/project policy)
- or keep current runtime policy override
- Show a short confirmation line in transcript (new cwd + effective approval/sandbox policy)
Additional information
Related but not equivalent: /add-dir (#11747) expands access roots; it does not switch active cwd and policy context.
Short implementation sketch:
- Wire command + dispatch
codex-rs/tui/src/slash_command.rs: addSlashCommand::Cwdwith description and inline args support.codex-rs/tui/src/chatwidget.rs: dispatch/cwdand/cwd <path>via a new app event.
- Add app-level event and handler
codex-rs/tui/src/app_event.rs: addAppEvent::ChangeCwd { path: Option<String> }.codex-rs/tui/src/app.rs: handleChangeCwdby resolving/validating path, then rebuilding config with existingrebuild_config_for_cwd(...).
- Apply cwd + policy atomically
- Reuse rebuilt config’s derived approval/sandbox defaults for target cwd.
- Send
Op::OverrideTurnContext { cwd: Some(...), approval_policy: Some(...), sandbox_policy: Some(...) }so core session state updates without restart. - Update in-memory TUI state (
self.config, file-search root viafile_search.update_search_dir(...), and chat widget config copy) so UI and behavior stay consistent.
- Prompt UI and tests
- Reuse/extend
codex-rs/tui/src/cwd_prompt.rspatterns for selection/confirmation. - Add tests in
codex-rs/tui/src/chatwidget/tests.rsandcodex-rs/tui/src/app.rsfor command dispatch, path validation, and policy-application behavior.
9 Comments
Potential duplicates detected. Please review them and close your issue if it is a duplicate.
Powered by Codex Action
I want to add one clarification here: for me this is not just a generic directory-switching request.
The most important case is switching the active session into another existing git worktree without leaving Codex, manually
cd-ing, and restarting/resuming.So if this issue becomes the main tracking thread for in-session cwd switching, I would strongly consider existing worktree navigation to be a core use case, not just an edge case.
Need this.
desktop app frequently gets stuck in its workdir. when the model returns filepaths different from what appears in terminal or file tree, you have no option in the app to rectify this mismatch.
This doesn't even work for me. If I close, cd, codex --resume it doesn't have permissions for the new directory. Or maybe it was bug.
Major paper cut right here.
Oh, I already commented above April 14th and got 14 upvotes. I forgot about that and just continued to run into it. came searching for a solution.
Meanwhile you can ask codex
@thewh1teagle lol what a waste of tokens.
/statuslineand enable session-id, or get it from/statusdirectlycdto yourpathandresumefrom there