mrkeyoor.com_
Tue 01 Sept 17:39 UTC
LLM Toolsevaluationupdated 25 Aug 2026

CodexPlusPlus review

Codex++ is primarily documented in Chinese, with a full English README available. It is an external launcher and manager for the OpenAI Codex and ChatGPT desktop app, adding provider switching, local protocol conversion, session tools, and interface modifications without patching the official app files.

+318stars / 7d
Verdict

Our Codex++ build failed after 212 seconds because its expected frontend dist directory was absent, and tests hit the same error after 78 seconds. The release installer may still suit a Codex power user who needs provider switching and session controls, but source contributors should treat the documented frontend build order as mandatory. Avoid it if unsigned macOS software, renderer injection, or fast compatibility with official app updates crosses your risk line.

We ran it

Lab card: what happened when we ran CodexPlusPlusScreenshot of CodexPlusPlus (codexpp.cc)
Install✓ · 31s461 packages
Build✗ · 212s
Tests✗ · 78sran, no count parsed
Repo327 files~117,979 lines of source · 27 MB · 3 CI workflows

Answers from our run

Does CodexPlusPlus build from source?

Dependencies installed in 31 seconds (461 packages), and the build failed. We cloned commit 5026294 into a clean Debian container with 3 CPUs and no project-specific setup.

Do CodexPlusPlus's tests pass?

The test command failed in our container, and its output did not report a pass or fail count.

Who should not use CodexPlusPlus?

Mac users who require signed and notarized software: the README says current unsigned builds may trigger Gatekeeper.

What are the alternatives to CodexPlusPlus?

OpenAI Codex, CC Switch, Roo Code. Our Codex++ build failed after 212 seconds because its expected frontend dist directory was absent, and tests hit the same error after 78 seconds.

Setup3/5Installers are direct, but our source build needed an unstated artifact
Docs4/5Detailed Chinese guide plus a complete English README
Community4/5Fresh release and push, with a very busy issue queue
Maturity3/5Broad feature set, with current compatibility reports and build friction

Who it’s for

Codex desktop users who switch among official login, direct API, and aggregate providers.
Developers who want per-provider models, MCP servers, Skills, and Plugins without hand-editing configuration files.
Windows and macOS users comfortable running an external launcher beside the official application.
Power users who need local session export, provider backups, diagnostics, and worktree helpers.

Who it’s NOT for

Mac users who require signed and notarized software: the README says current unsigned builds may trigger Gatekeeper.
Anyone unwilling to trust renderer injection and Chromium DevTools Protocol access around local Codex sessions and credentials.
Teams that need upgrades to stay compatible without intervention: the README says official app changes can break page-structure, CDP, or local-data assumptions.
Contributors expecting cargo build to work from a fresh checkout: our build and test commands both stopped because apps/codex-plus-manager/dist did not exist.
Companies unable to meet AGPL-3.0 obligations when distributing or serving a modified version.

Setup reality

Our run at commit 5026294 installed 461 Rust packages in 31 seconds. The build failed with exit 101 after 212 seconds because Tauri expected apps/codex-plus-manager/dist, and that path did not exist. Tests failed with exit 101 after 78 seconds on the same missing frontend output.

End users download a Windows or macOS installer, keep the official desktop app installed, confirm its path, then configure an official login or an API provider. Custom providers need a base URL, protocol, model, and API key; the README says real keys stay local.

Source contributors must build the manager frontend before the Rust workspace. The 27 MB checkout has 327 files, about 117,979 source lines, 3 CI workflows, no Dockerfile, and no tests directory.

Codex++ turns one desktop app into several provider profiles

Codex++ sits beside the official OpenAI Codex or ChatGPT desktop app. It starts that app, talks to it through Chromium DevTools Protocol and a local helper, then adds provider selection, protocol conversion, session actions, diagnostics, and interface controls. It does not modify app.asar or write patches into the official installation. That is a meaningful boundary, though it still depends on private-looking app surfaces such as page structure, local files, and renderer behavior.

The main README is Chinese, and the repository includes a substantial English translation. End users get 2 launch entries: Codex++ for starting the official app with saved settings, and Codex++ Manager for configuration. Release v1.2.53 provides Windows x64, macOS Intel, and macOS Apple Silicon packages. On macOS, the README warns that unsigned and unnotarized builds may be blocked by Gatekeeper.

Four provider modes solve a real configuration nuisance

The manager separates official login, official login plus API, pure API, and aggregate provider profiles. Each profile can select Responses or Chat Completions, models, context windows, automatic compaction limits, MCP servers, Skills, and Plugins. A local proxy can translate Chat Completions into the Responses shape Codex expects. Aggregate providers add failover and several rotation strategies, which is useful for people already managing multiple compatible endpoints.

Codex++ also tries to keep authentication boundaries understandable. Official state, mixed API credentials, and pure API credentials use different locations. The README says provider switching saves the current profile before writing the next one, and real keys remain on the local machine. That does not eliminate trust: this program reads and changes config.toml, auth.json, session databases, and provider metadata. Anyone installing it should treat the binary and update channel as credential-adjacent software.

What happened when we ran it

Our sandbox cloned commit 5026294, a 27 MB Rust repository with 327 files and about 117,979 source lines. Dependency installation succeeded in 31 seconds and installed 461 packages. The checkout had 3 CI workflow files, no Dockerfile, and no tests directory. Those signals describe a desktop application workspace rather than a container service or a project organized around a top-level integration-test folder.

The build ran for 212 seconds before failing with exit 101. Tauri's generate_context!() macro reported that frontendDist was configured as ../dist, but that path did not exist. The log also contained one unused-variable warning in the launcher, but the missing frontend directory was the compilation error. We did not see evidence in that tail that a system package, compiler version, or Rust dependency caused the failure.

Tests failed with exit 101 after 78 seconds for the same reason. Cargo compiled codex-plus-manager, reached the Tauri context generation in src/lib.rs, and stopped because the frontend output was absent. The README's development section lists npm ci, npm run check, and npm run vite:build inside the manager before the top-level Cargo commands. Our result makes that sequence a requirement, not an optional frontend check.

Session tools touch files worth backing up

Beyond provider switching, Codex++ scans local sessions, deletes them in batches, exports Markdown, tracks token usage, moves projects, and backs up provider metadata. It reads current databases under ~/.codex/sqlite, with a fallback to the older state_5.sqlite. Enhancements cover scroll restoration, conversation width, service tiers, Goals, Stepwise suggestions, user scripts, image overlays, and an unlocked plugin marketplace. Several injected settings need an app restart before they take effect.

That menu is attractive to a heavy Codex user, but it expands the blast radius of a bad update. On 2026-08-25, current reports included provider switching losing history or changing language, MCP turning off, plugin loading failures, and v1.2.53 conversations failing because a custom provider was missing from config.toml. These are user reports, not findings from our sandbox. They match the README's advice to keep backups before changing provider configuration or session data.

Same-day releases show speed and compatibility pressure

Release v1.2.53 and the last repository push both landed on 2026-08-25. GitHub listed 1,179 open issues and pull requests combined, while several new bug reports were updated that day. That pace makes abandonment an implausible concern. It also shows how quickly the tool must chase changes across Codex navigation, provider files, plugins, and the official desktop application's internals.

The AGPL-3.0 license is explicit, including corresponding-source duties for modified versions offered over a network. The README also separates that license from OpenAI and ChatGPT trademarks and assets. For an individual using official release packages, the harder decision is trust and compatibility. For a company modifying the manager or packaging it internally, license review belongs before deployment.

Codex++ earns a trial when the official app is already your daily workspace and repeated provider edits are the pain. Downloading a release is the practical route; building from source requires the frontend step our Cargo-only run lacked. Keep configuration and session backups, test a new release on nonessential work, and use official Codex alone if renderer injection or local credential access is unacceptable.

Alternatives

ProjectWhat it isPick it when
OpenAI Codex gh↗The official coding agent and CLI without Codex++ provider and interface additions.pick this instead when official authentication, update compatibility, and the supported product path matter most.
CC Switch gh↗A desktop configuration manager for switching providers across coding assistants.pick this instead when provider profile management is the main need and renderer injection is unnecessary.
Roo Code gh↗A provider-flexible coding agent that runs inside Visual Studio Code.pick this instead when you can change agent clients and prefer an editor extension over modifying the Codex desktop experience.

What people are saying

  1. [velocity-scout] BigPizzaV3/CodexPlusPlus

Sources

  1. Codex++ English README
  2. Codex++ v1.2.53 release
  3. Codex++ issue 1983
  4. Codex++ issue 1970

More llm tools reviews

rig · open-knowledge · graphiti · cve-mcp-server · minimind · SillyTavern · the whole board →