Switch the active Codex theme
Apply a theme from the managed local library
~/.codexthemes/themes/<theme-id>/
to the running Codex desktop app, switch between installed themes, restore the native look, and verify what is actually active. This skill is standalone: its TypeScript scripts own the reversible injection runtime. It does not create or edit themes (codex-theme-creator), install them from the gallery (codex-theme-installer), or publish them (codex-theme-submitter). The only required local tools are Node.js 20+,
, and the official Codex desktop app.
Run all commands from the installed skill directory. The runtime injects only an owned
element over Codex's loopback-only debugging endpoint; it never modifies the signed app bundle, and it themes
every open Codex page, not just one window.
Step 1: pick the theme
bash
npx tsx scripts/switch-theme.ts list
Lists every installed theme (id, name, layout mode) and which one is currently active. Themes arrive in the library from codex-theme-creator (created locally) or codex-theme-installer (downloaded from codexthemes.ai). If the theme the user wants is not listed, hand off to those skills instead of guessing paths.
Step 2: apply or switch
bash
npx tsx scripts/switch-theme.ts apply <theme-id>
- If Codex is already exposing its debugging endpoint (it is after any previous themed launch), this hot-swaps the theme in place on every open page — no restart, output
{"status": "active", "pagesThemed": n}
.
- If there is no endpoint (first apply of this app session, or Codex was fully quit), ask the user for explicit permission to restart Codex, then rerun with :
bash
npx tsx scripts/switch-theme.ts apply <theme-id> --launch
prints
and hands the quit → relaunch → inject sequence to a detached helper that survives the restart (an agent hosted inside Codex dies with it; expect the tool call to be interrupted). Never build your own restart mechanism — no shell wrappers, launchd or scheduled tasks, or script copies; the helper already survives the restart.
The launcher supports macOS and Windows. On Windows it finds the Codex/ChatGPT executable (running process path,
%LOCALAPPDATA%\Programs\...
, or the WindowsApps execution alias — pass
with the full
path if detection fails), closes it gracefully with
(never
), and relaunches it with the debugging flags. If the endpoint never appears after the relaunch, that installed build (for example a Microsoft Store package) drops the debugging flags — report that limitation plainly; never modify files under
or the installation directory.
Built-in readability gate
Every apply measures the real rendered pixels after injection (screenshot-based contrast of visible text). If the theme leaves text unreadable, the apply
automatically reverts to the previously active theme (or the native look) and reports
{"status": "reverted", "failures": [...]}
with the measured evidence. Tell the user the theme is broken as shipped and offer to fix it with codex-theme-creator; pass
only when the user explicitly says they want to keep the unreadable theme anyway.
Step 3: verify — is not success
bash
npx tsx scripts/switch-theme.ts status
probes every live Codex page and reports
(all pages themed, one theme id),
(pages disagree — reapply to converge them), or
, plus the per-page evidence. Only report success to the user after
shows
with the expected theme id. If it stays
after a
, read
~/.codexthemes/state/launch.log
for the helper's result.
If an old theme keeps coming back after a successful hot swap (a stale session from an earlier task is still re-injecting it, and its registrations cannot be removed from outside that session), get the user's restart permission and force a clean relaunch — never ask the user to quit the app by hand:
bash
npx tsx scripts/switch-theme.ts apply <theme-id> --launch --relaunch
restarts Codex even though an endpoint is already live, which evicts every stale session, then injects the requested theme. It follows the same
→
verification flow.
Step 4: always hand the user the escape hatch
Every successful apply report must also state the background scope from the
output, so the user is never surprised that artwork is home-only. Relay
in plain language, for example: "Background artwork shows on the home page only; the colors apply on every page. To show it on conversation pages too, ask codex-theme-creator to rebuild with backgroundScope: workspace." Then end with the undo hints, for example: "Reply
to return to the theme you had before, or
for the native Codex look — fully quitting Codex also removes the theme." A user who dislikes the result must never have to ask how to undo it or how to change the scope.
Every apply records the previously active theme. When the user replies
(or says the new theme is broken, ugly, or not what they wanted):
bash
npx tsx scripts/switch-theme.ts rollback
This re-applies the previously active theme, or restores the native look when there is none. It runs through the same apply pipeline, so the readability gate and
verification still apply. (A theme that fails the readability gate never needs a manual rollback — the apply auto-reverts on its own.)
When the user asks for the native look instead (or replies
):
bash
npx tsx scripts/switch-theme.ts restore
Removes the injected style and page markers from every page and clears the runtime state — no restart needed. A full application quit also drops the theme; reapply with
when the user wants it back. If the theme keeps reappearing after restore, a stale session is re-injecting it — use the
flow from Step 2 with the user's permission, or have them fully quit and reopen Codex.
Boundaries
- Ask before any restart; a hot swap needs no permission beyond the user's request to switch.
- Never claim a theme is active based on output alone when a restart was involved — verify with .
- Never modify , the signed application bundle, user tasks, or authentication data.
- Do not edit theme sources here; route design changes to codex-theme-creator.