@christiandoxa/prodex 0.192.0 → 0.194.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +75 -50
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -48,7 +48,6 @@ You need at least one logged-in Prodex profile.
|
|
|
48
48
|
|---|---|
|
|
49
49
|
| Codex CLI | `prodex`, `prodex run`, `prodex caveman`, `prodex super` |
|
|
50
50
|
| Claude Code | `prodex claude` |
|
|
51
|
-
| Claude-Mem | `mem` variants |
|
|
52
51
|
| RTK | `rtk` variants and `prodex s` / `prodex super` |
|
|
53
52
|
|
|
54
53
|
</details>
|
|
@@ -144,7 +143,7 @@ If you install from source, make sure the `codex` binary in your `PATH` is alrea
|
|
|
144
143
|
|
|
145
144
|
## Optional tools
|
|
146
145
|
|
|
147
|
-
`prodex` can run without
|
|
146
|
+
`prodex` can run without RTK, SQZ, token-savior, claw-compactor, or Presidio. `prodex-memory` is built in and is enabled by Super mode as a local-first memory MCP server.
|
|
148
147
|
|
|
149
148
|
Install them only if you want to use commands such as:
|
|
150
149
|
|
|
@@ -152,46 +151,84 @@ Install them only if you want to use commands such as:
|
|
|
152
151
|
<summary>Optional tool commands</summary>
|
|
153
152
|
|
|
154
153
|
```bash
|
|
155
|
-
prodex caveman mem
|
|
156
|
-
prodex caveman mem rtk
|
|
157
154
|
prodex rtk
|
|
158
155
|
prodex sqz
|
|
159
156
|
prodex tokensavior
|
|
160
157
|
prodex clawcompactor
|
|
158
|
+
prodex mem
|
|
159
|
+
prodex s doctor
|
|
161
160
|
prodex presidio doctor
|
|
162
161
|
prodex presidio redact --text "My phone is 212-555-1234"
|
|
163
162
|
prodex gateway --provider gemini
|
|
164
163
|
prodex s
|
|
165
164
|
prodex super
|
|
166
|
-
prodex claude mem
|
|
167
|
-
prodex claude caveman mem
|
|
168
165
|
```
|
|
169
166
|
|
|
170
167
|
</details>
|
|
171
168
|
|
|
172
169
|
<details>
|
|
173
|
-
<summary>
|
|
174
|
-
|
|
175
|
-
Claude-Mem is used by the `mem` variants.
|
|
176
|
-
|
|
177
|
-
Recommended install:
|
|
170
|
+
<summary>Prodex memory mode</summary>
|
|
178
171
|
|
|
179
172
|
```bash
|
|
180
|
-
|
|
173
|
+
prodex s
|
|
174
|
+
prodex super
|
|
175
|
+
prodex caveman mem
|
|
176
|
+
prodex s doctor
|
|
181
177
|
```
|
|
182
178
|
|
|
183
|
-
|
|
179
|
+
`prodex s` runs Codex with the built-in `prodex-memory` MCP server registered in the temporary overlay `CODEX_HOME`.
|
|
180
|
+
The base Codex profile stays unchanged; memory state is owned by Prodex.
|
|
181
|
+
Use `prodex caveman mem` when you want only Caveman plus the local memory MCP overlay, without the full Super stack.
|
|
184
182
|
|
|
185
|
-
|
|
183
|
+
`prodex-memory` provides Mem0-style local memory without Mem0 Cloud, Mem0 CLI, or `MEM0_API_KEY`.
|
|
184
|
+
By default it stores memories in a SQLite database under `PRODEX_HOME`:
|
|
186
185
|
|
|
187
186
|
```text
|
|
188
|
-
/
|
|
189
|
-
/plugin install claude-mem
|
|
187
|
+
$PRODEX_HOME/memory/prodex-memory.sqlite
|
|
190
188
|
```
|
|
191
189
|
|
|
192
|
-
|
|
190
|
+
`prodex s` asks the Presidio prompt first, then asks whether to use managed Mem0 memory. Empty input or `n` keeps the lightweight SQLite backend. Answer `y` or pass `--mem0` to start the managed Mem0 OSS Docker server. Use `--no-mem0` to skip that prompt non-interactively.
|
|
191
|
+
|
|
192
|
+
The default SQLite path remains the fastest OOTB memory path:
|
|
193
|
+
|
|
194
|
+
- no Mem0 Cloud endpoint
|
|
195
|
+
- no `MEM0_API_KEY`
|
|
196
|
+
- no user-visible Mem0 auth
|
|
197
|
+
- local SQLite storage
|
|
198
|
+
- MCP tools exposed as `prodex-memory`
|
|
199
|
+
|
|
200
|
+
Managed Mem0 mode requires Docker Compose (`docker compose` or `docker-compose`). It does not require a Mem0 Cloud token or a user-supplied provider API key for the default memory path. OpenAI-compatible API-key profiles, `--url` local providers, and supported provider bridges can provide richer upstream LLM/embedding behavior; otherwise Prodex falls back to local embeddings for Mem0.
|
|
201
|
+
|
|
202
|
+
<details>
|
|
203
|
+
<summary>Managed Mem0 internals</summary>
|
|
204
|
+
|
|
205
|
+
Managed Mem0 mode is still local-first:
|
|
193
206
|
|
|
194
|
-
|
|
207
|
+
- Prodex clones `https://github.com/mem0ai/mem0` under `$PRODEX_HOME/mem0` if needed.
|
|
208
|
+
- Prodex writes the Mem0 server `.env` with generated local `ADMIN_API_KEY`, `JWT_SECRET`, and Postgres password.
|
|
209
|
+
- Mem0 auth stays enabled; Prodex keeps the local API key internal and injects it only into the temporary MCP overlay.
|
|
210
|
+
- Mem0 receives `OPENAI_BASE_URL=http://host.docker.internal:<prodex-gateway-port>/v1`.
|
|
211
|
+
- Mem0 receives an internal Prodex gateway bearer token as `OPENAI_API_KEY`.
|
|
212
|
+
- The gateway selects an efficient memory LLM when available, preferring nano/mini models, and defaults embeddings to `text-embedding-3-small`.
|
|
213
|
+
- If no upstream API-key profile is available, the internal gateway still serves deterministic local embeddings for Mem0 and disables generation endpoints for that Mem0-only gateway.
|
|
214
|
+
- Prodex writes raw/no-infer memories by default, so the managed path does not spend LLM quota for memory extraction.
|
|
215
|
+
- No Mem0 Cloud endpoint and no user-managed `MEM0_API_KEY` are used.
|
|
216
|
+
|
|
217
|
+
</details>
|
|
218
|
+
|
|
219
|
+
<details>
|
|
220
|
+
<summary>Memory diagnostics</summary>
|
|
221
|
+
|
|
222
|
+
Use `prodex s doctor` to verify that the built-in memory store can be opened before launching Codex. The hidden MCP server can also be launched directly for diagnostics:
|
|
223
|
+
|
|
224
|
+
```bash
|
|
225
|
+
prodex s doctor
|
|
226
|
+
prodex __memory-mcp --store /tmp/prodex-memory.sqlite
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
Mem0 Cloud's official MCP endpoint is intentionally not part of Prodex Super's default path. Configure it manually only when you explicitly want Mem0 Platform auth and are willing to manage `MEM0_API_KEY` yourself.
|
|
230
|
+
|
|
231
|
+
</details>
|
|
195
232
|
|
|
196
233
|
</details>
|
|
197
234
|
|
|
@@ -401,6 +438,8 @@ docker run -d --name presidio-analyzer -p 5002:3000 mcr.microsoft.com/presidio-a
|
|
|
401
438
|
docker run -d --name presidio-anonymizer -p 5001:3000 mcr.microsoft.com/presidio-anonymizer:latest
|
|
402
439
|
```
|
|
403
440
|
|
|
441
|
+
When Super mode opts into Presidio and the default local endpoints are not healthy, Prodex now tries to start these Docker containers automatically before launching Codex. Set `PRODEX_PRESIDIO_AUTO_START=0` to disable that best-effort auto-start and only use the configured endpoints.
|
|
442
|
+
|
|
404
443
|
Source checkout with Compose:
|
|
405
444
|
|
|
406
445
|
```bash
|
|
@@ -538,7 +577,6 @@ This is the mode I tune and use myself every day.
|
|
|
538
577
|
It combines:
|
|
539
578
|
|
|
540
579
|
- Caveman mode
|
|
541
|
-
- Claude-Mem transcript watching
|
|
542
580
|
- RTK shell-command guidance
|
|
543
581
|
- full-access launch mode
|
|
544
582
|
- Smart Context Autopilot in the runtime proxy
|
|
@@ -553,33 +591,40 @@ prodex s expose
|
|
|
553
591
|
`prodex super` expands to:
|
|
554
592
|
|
|
555
593
|
```bash
|
|
556
|
-
prodex caveman
|
|
594
|
+
prodex caveman rtk sqz tokensavior clawcompactor mem --full-access
|
|
557
595
|
```
|
|
558
596
|
|
|
559
597
|
Before launch, Super asks whether to add Presidio redaction. Empty input or `n` keeps the expansion above. If you answer `y`, it is equivalent to:
|
|
560
598
|
|
|
561
599
|
```bash
|
|
562
|
-
prodex caveman
|
|
600
|
+
prodex caveman rtk sqz tokensavior clawcompactor mem presidio --full-access
|
|
563
601
|
```
|
|
564
602
|
|
|
565
603
|
Use `prodex super --presidio` to enable Presidio without prompting, or `prodex super --no-presidio` to skip the prompt and keep Presidio disabled. Presidio enables runtime request-body and WebSocket text redaction through local Presidio for the session. The runtime uses `presidio.toml` endpoints when configured, falls back to `http://localhost:5002` and `http://localhost:5001`, and honors `fail_mode = "open"` or `"closed"`.
|
|
566
604
|
|
|
605
|
+
After the Presidio prompt, Super asks whether to use managed Mem0 memory. Empty input or `n` keeps the built-in SQLite-backed `prodex-memory` MCP backend. Answer `y` or pass `--mem0` to start the managed Mem0 OSS Docker server, route its OpenAI-compatible calls through a session-local Prodex gateway, and inject the local Mem0 API key into the temporary Codex MCP config. Use `--no-mem0` to skip the prompt. This path does not use Mem0 Cloud or `MEM0_API_KEY`; Docker Compose is required, and Prodex falls back to local embeddings when no upstream provider API key is available.
|
|
606
|
+
|
|
607
|
+
Super prints prelaunch progress for runtime proxy setup, Presidio auto-start/checks, and managed Mem0 Docker startup. The output happens before Codex starts; runtime notices still go to logs once the TUI is running.
|
|
608
|
+
|
|
567
609
|
Full access maps to Codex's sandbox-bypass launch flag. Use it only when you intentionally want Codex to run without the normal approval and sandbox protections.
|
|
568
610
|
|
|
611
|
+
Use `prodex s doctor` to inspect the Super optimizer stack without launching Codex. Add `--json` for machine-readable output, `--strict` to exit non-zero when any optimizer check is unavailable, and `--presidio` to include local Presidio Analyzer/Anonymizer health checks. `prodex s --dry-run` also prints the same optimizer matrix for the launch preview.
|
|
612
|
+
|
|
569
613
|
Use `prodex s expose` when you need to reach the live Super terminal from a browser. Prodex starts a local PTY bridge protected by a high-entropy access token, launches `cloudflared tunnel --protocol http2 --url ...` when `cloudflared` is available, and prints both the loopback and Cloudflare quick-tunnel URLs. The browser tab can close without stopping the session; reopening the same token URL reconnects to the existing PTY and replays recent scrollback. Add `--no-tunnel` for local-only access, `--max-clients N` to cap simultaneous browsers, or `--command 'prodex s --no-presidio'` to choose the initial terminal command.
|
|
570
614
|
|
|
571
|
-
Super's built-in optimization stack is deliberately local and deterministic. It preloads
|
|
615
|
+
Super's built-in optimization stack is deliberately local and deterministic. It preloads Caveman, exposes an overlay `rtk` wrapper plus RTK auto-wrappers for common noisy commands when RTK is installed, auto-registers `sqz-mcp`, `token-savior`, and built-in `prodex-memory` MCP servers, exposes `sqz` and `claw-compactor` wrappers when those commands/checkouts are discoverable, invokes a trusted one-shot `prodex-claw-compactor-sessionstart` SessionStart benchmark probe when Claw-Compactor is available, falls back to a temporary shadow `MEMORY.md` when the workspace has no Markdown memory files, then uses Smart Context Autopilot through a dedicated runtime proxy for lower-token request shaping. The probe delegates to `prodex-claw-compactor-auto "$(pwd)"` and uses a marker under `CODEX_HOME` so Codex conversation restarts do not replay it. Presidio redaction is added to that proxy only when you opt in at the prompt. Prodex passes token-savior cache, stats paths, and local memory under `PRODEX_HOME` (default `~/.prodex`) so compatible token-savior versions and memory state stay out of worktrees.
|
|
572
616
|
|
|
573
617
|
Super instructs Codex to use the whole local optimizer stack where it fits the task, not just RTK:
|
|
574
618
|
|
|
575
|
-
- Claude-Mem handles prior-session/project recall through the active Prodex session watch.
|
|
576
619
|
- RTK works upstream/input-side. Use visible `rtk <cmd>` for noisy terminal commands before their output enters the model context, such as `git diff`, `cargo test`, `npm test`, build logs, and package-manager output. Prodex also auto-wraps common noisy commands as a fallback when RTK is installed, but that fallback does not make the TUI show an `rtk` prefix.
|
|
577
620
|
- SQZ works downstream/context-side through the auto-registered `prodex-sqz` MCP server. Use it for repeated workspace reads, large text blobs, long command outputs that need reuse, and long-session context compression instead of emitting the same full content again.
|
|
578
621
|
- token-savior handles symbol lookup, caller/context navigation, duplicate/dead-code checks, and API-impact searches before broad source reads.
|
|
579
622
|
- claw-compactor handles workspace-level summary or benchmark requests through `prodex-claw-compactor` / `prodex-claw-compactor-auto`; treat its output as overview context and reread exact source before edits.
|
|
623
|
+
- prodex-memory provides local Mem0-style memory through the default SQLite backend, or through managed Mem0 OSS Docker when you opt in with the Super prompt or `--mem0`; neither path uses Mem0 Cloud auth or `MEM0_API_KEY`.
|
|
580
624
|
- Presidio stays optional and only runs when you opt in with the Super prompt or `--presidio`.
|
|
581
625
|
|
|
582
626
|
Managed optimizer checkouts are discovered from `PRODEX_OPTIMIZERS_HOME`, `$XDG_DATA_HOME/prodex-optimizers`, then `~/.local/share/prodex-optimizers`.
|
|
627
|
+
The generated `SUPER_OPTIMIZERS.md` overlay includes an `Available Now` section so the model can see which MCP servers and wrappers were actually discovered for that session.
|
|
583
628
|
|
|
584
629
|
</details>
|
|
585
630
|
|
|
@@ -702,7 +747,7 @@ unless Prodex explicitly owns that command.
|
|
|
702
747
|
|---|---|---|
|
|
703
748
|
| Normal Codex | `prodex` or `prodex run` | Managed Codex launch with profile selection and quota routing. |
|
|
704
749
|
| Caveman | `prodex caveman` | Runs Codex with a temporary overlay `CODEX_HOME`. |
|
|
705
|
-
| Super | `prodex s` or `prodex super` | Daily mode with Caveman,
|
|
750
|
+
| Super | `prodex s` or `prodex super` | Daily mode with Caveman, RTK guidance, full access, and deterministic/local token optimizations. |
|
|
706
751
|
| Claude Code | `prodex claude` | Runs Claude Code through Prodex-managed state. |
|
|
707
752
|
|
|
708
753
|
<details>
|
|
@@ -722,13 +767,14 @@ prodex exec "review this repo"
|
|
|
722
767
|
|
|
723
768
|
```bash
|
|
724
769
|
prodex caveman
|
|
725
|
-
prodex caveman mem
|
|
726
|
-
prodex caveman mem rtk
|
|
727
770
|
prodex rtk
|
|
728
771
|
prodex sqz
|
|
729
772
|
prodex tokensavior
|
|
730
773
|
prodex clawcompactor
|
|
774
|
+
prodex mem
|
|
731
775
|
prodex caveman --dry-run
|
|
776
|
+
prodex s doctor
|
|
777
|
+
prodex s doctor --json --strict
|
|
732
778
|
prodex caveman --profile main
|
|
733
779
|
prodex caveman exec "review this repo in caveman mode"
|
|
734
780
|
prodex caveman 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
@@ -736,9 +782,7 @@ prodex caveman 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
|
736
782
|
|
|
737
783
|
`prodex caveman` runs Codex with a temporary overlay `CODEX_HOME`, so the base profile home stays unchanged after the session ends.
|
|
738
784
|
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
Add optimizer prefixes before Codex args when you want Prodex to inject a specific launch overlay for that session: `mem`, `rtk`, `sqz`, `tokensavior`, `clawcompactor`, or `presidio`. Top-level shortcuts such as `prodex rtk` and `prodex sqz` map to `prodex caveman <prefix>`.
|
|
785
|
+
Add optimizer prefixes before Codex args when you want Prodex to inject a specific launch overlay for that session: `rtk`, `sqz`, `tokensavior`, `clawcompactor`, `mem`, or `presidio`. Top-level shortcuts such as `prodex rtk`, `prodex sqz`, and `prodex mem` map to `prodex caveman <prefix>`.
|
|
742
786
|
|
|
743
787
|
RTK is still an external binary. Install it separately if `rtk gain` is unavailable.
|
|
744
788
|
|
|
@@ -763,21 +807,7 @@ prodex super 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
|
763
807
|
|
|
764
808
|
`prodex s` is the short alias for `prodex super`.
|
|
765
809
|
|
|
766
|
-
This is my daily mode. It is the path I keep tuning for normal work: Caveman enabled,
|
|
767
|
-
|
|
768
|
-
Super mode uses Prodex's slim Claude-Mem Codex schema by default to avoid storing full assistant/tool output in recall context.
|
|
769
|
-
|
|
770
|
-
Use `--mem-super-slim` to store prompt summaries/references instead of full prompt bodies:
|
|
771
|
-
|
|
772
|
-
```bash
|
|
773
|
-
prodex super --mem-super-slim
|
|
774
|
-
```
|
|
775
|
-
|
|
776
|
-
Use `--mem-full` when you need the full transcript schema:
|
|
777
|
-
|
|
778
|
-
```bash
|
|
779
|
-
prodex super --mem-full
|
|
780
|
-
```
|
|
810
|
+
This is my daily mode. It is the path I keep tuning for normal work: Caveman enabled, RTK guidance enabled, full access available, and context handling handled by the runtime proxy.
|
|
781
811
|
|
|
782
812
|
Super also enables Smart Context Autopilot in the runtime proxy.
|
|
783
813
|
|
|
@@ -837,7 +867,7 @@ Gemini Live realtime websocket translation remains available for compatible call
|
|
|
837
867
|
|
|
838
868
|
Run `npm run test:gemini-schema` after changing Gemini request, response, SSE, semantic compact, exact-output, tool-schema, or Live translation. Run `PRODEX_LIVE_GEMINI=1 npm run test:gemini-live` for a credentialed end-to-end Gemini adapter smoke request; set `PRODEX_BIN` or `PRODEX_LIVE_GEMINI_MODEL` to override the binary or model. Add `PRODEX_LIVE_GEMINI_EXTENDED=1` for command-output-only, file edit, `apply_patch`, reference-repo clone/inspection, optional-tool update discipline, semantic compact, and explicit `exec resume` checks. Add `PRODEX_LIVE_GEMINI_MCP=1` and/or `PRODEX_LIVE_GEMINI_MULTIMODAL=1` when the local environment should also exercise MCP and image-input paths.
|
|
839
869
|
|
|
840
|
-
Before launch, Super asks whether to add Presidio redaction. Empty input or `n` keeps Presidio disabled; answer `y` or pass `--presidio` to add the `presidio` prefix. Use `--no-presidio` to make the disabled choice explicit for non-interactive use.
|
|
870
|
+
Before launch, Super asks whether to add Presidio redaction. Empty input or `n` keeps Presidio disabled; answer `y` or pass `--presidio` to add the `presidio` prefix. Use `--no-presidio` to make the disabled choice explicit for non-interactive use. Super then asks whether to use managed Mem0 memory. Empty input or `n` keeps the built-in SQLite memory backend; answer `y` or pass `--mem0` to start the managed Mem0 OSS Docker server and route its OpenAI-compatible calls through Prodex gateway. Use `--no-mem0` to skip that prompt.
|
|
841
871
|
|
|
842
872
|
Prodex now supports multi-language Presidio redaction, including automatic detection and multi-language merging. The runtime uses `presidio.toml` endpoints and language configuration when available, falling back to `http://localhost:5002` and `http://localhost:5001` for Analyzer/Anonymizer URLs, and English (`en`) for language if not specified. It honors `fail_mode = "open"` or `"closed"`.
|
|
843
873
|
|
|
@@ -869,11 +899,8 @@ Managed optimizer checkouts are discovered from `PRODEX_OPTIMIZERS_HOME`, `$XDG_
|
|
|
869
899
|
|
|
870
900
|
```bash
|
|
871
901
|
prodex claude -- -p "summarize this repo"
|
|
872
|
-
prodex claude mem -- -p "recall past work on this repo"
|
|
873
902
|
prodex claude caveman
|
|
874
|
-
prodex claude caveman mem
|
|
875
903
|
prodex claude caveman -- -p "summarize this repo briefly"
|
|
876
|
-
prodex claude caveman mem -- -p "summarize this repo briefly"
|
|
877
904
|
prodex claude --profile second caveman -- -p "review the latest diff briefly"
|
|
878
905
|
prodex claude --profile second -- -p --output-format json "show the latest diff"
|
|
879
906
|
```
|
|
@@ -882,8 +909,6 @@ prodex claude --profile second -- -p --output-format json "show the latest diff"
|
|
|
882
909
|
|
|
883
910
|
`prodex claude caveman` enables Caveman for that session while keeping state under the Prodex-managed `CLAUDE_CONFIG_DIR`, not the global `~/.claude`.
|
|
884
911
|
|
|
885
|
-
`prodex claude caveman mem` combines Caveman and Claude-Mem.
|
|
886
|
-
|
|
887
912
|
`prodex claude` is only supported with the default OpenAI/Codex provider.
|
|
888
913
|
|
|
889
914
|
</details>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.194.0",
|
|
4
4
|
"description": "Safe multi-account auto-rotate for Codex CLI with isolated CODEX_HOME profiles",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"bin": {
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"@openai/codex": "latest"
|
|
17
17
|
},
|
|
18
18
|
"optionalDependencies": {
|
|
19
|
-
"@christiandoxa/prodex-linux-x64": "0.
|
|
20
|
-
"@christiandoxa/prodex-linux-arm64": "0.
|
|
21
|
-
"@christiandoxa/prodex-darwin-x64": "0.
|
|
22
|
-
"@christiandoxa/prodex-darwin-arm64": "0.
|
|
23
|
-
"@christiandoxa/prodex-win32-x64": "0.
|
|
24
|
-
"@christiandoxa/prodex-win32-arm64": "0.
|
|
19
|
+
"@christiandoxa/prodex-linux-x64": "0.194.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.194.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.194.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.194.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.194.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.194.0",
|
|
25
25
|
"@openai/codex-linux-x64": "npm:@openai/codex@linux-x64",
|
|
26
26
|
"@openai/codex-linux-arm64": "npm:@openai/codex@linux-arm64",
|
|
27
27
|
"@openai/codex-darwin-x64": "npm:@openai/codex@darwin-x64",
|