feat: support launching multiple Codex++ instances#719
Open
zengxiaolou wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR adds first-class support for opening additional Codex++ managed Codex windows from an existing injected Codex++ session.
The current launcher uses fixed debug/helper/guard ports and the default Codex user data directory, so opening another Codex window usually activates the existing instance instead of creating an independent Codex++ connected session. This change gives follow-up instances their own port group and
--user-data-dir, while keeping the original default launch behavior unchanged.Changes
guard_portandcodex_extra_argssupport toLaunchOptionsand the launcher CLI.open -non macOS when a--user-data-dirargument is present so a separate Codex app instance is created./launcher/new-instance, that spawns the current Codex++ launcher with the next available port group.9230, guard57322, helper573239231, guard57324, helper57325~/.codex-plusplus/profiles/ctxN.Command+Shift+Nshortcut to launch a new Codex++ window.Testing
Notes:
cargo fmt --checkcurrently reports unrelated formatting changes in existing files outside this PR. To keep this PR focused, I formatted only the Rust files touched by this change usingrustfmt +1.88.0 --edition 2024.codex-plus-corefor unused Windows install/proxy helpers.