@christiandoxa/prodex 0.240.0 → 0.242.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 +2 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1291,6 +1291,7 @@ prodex doctor --bundle ./prodex-doctor.json --redacted
|
|
|
1291
1291
|
prodex setup --dry-run
|
|
1292
1292
|
prodex capability list
|
|
1293
1293
|
prodex context audit
|
|
1294
|
+
prodex context export 019c9e3d-45a0-7ad0-a6ee-b194ac2d44f9
|
|
1294
1295
|
prodex context compress ~/.codex/AGENTS.md --dry-run
|
|
1295
1296
|
git diff | prodex context compact-output --kind git-diff
|
|
1296
1297
|
```
|
|
@@ -1307,6 +1308,7 @@ git diff | prodex context compact-output --kind git-diff
|
|
|
1307
1308
|
| `prodex setup --dry-run` | Shows setup reconciliation actions without changing files. |
|
|
1308
1309
|
| `prodex capability list` | Lists built-in and optional Prodex capabilities with availability status. |
|
|
1309
1310
|
| `prodex context audit` | Reports approximate token weight for shared instruction and memory files. |
|
|
1311
|
+
| `prodex context export` | Exports a selected shared Codex session transcript/context into a Markdown file. |
|
|
1310
1312
|
| `prodex context compress` | Compresses Markdown/text context files and writes an `.original.md` backup. |
|
|
1311
1313
|
| `prodex context compact-output` | Compacts copied command output such as `git status`, `git diff`, `rg`, `grep`, `find`, `tree`, or long logs. |
|
|
1312
1314
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.242.0",
|
|
4
4
|
"description": "Multi-provider Codex wrapper with OpenAI quota-aware routing and Claude Code support",
|
|
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.242.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.242.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.242.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.242.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.242.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.242.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",
|