@christiandoxa/prodex 0.153.0 → 0.154.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 +12 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -364,6 +364,18 @@ Verify with Prodex:
|
|
|
364
364
|
prodex presidio doctor
|
|
365
365
|
prodex presidio redact --text "My name is John Smith and my phone is 212-555-1234."
|
|
366
366
|
prodex presidio enable
|
|
367
|
+
prodex presidio redact --language-mode auto --languages en,id --text "Nama saya Budi dan nomor telepon saya adalah 0812-3456-7890."
|
|
368
|
+
prodex presidio enable --language-mode auto --languages en,id
|
|
369
|
+
prodex presidio status
|
|
370
|
+
prodex presidio doctor --json
|
|
371
|
+
prodex presidio redact --language-mode auto --languages en,id --text "Nama saya Budi dan nomor telepon saya adalah 0812-3456-7890."
|
|
372
|
+
prodex presidio enable --language-mode auto --languages en,id
|
|
373
|
+
prodex presidio redact --language-mode auto --languages en,id --text "Nama saya Budi dan nomor telepon saya adalah 0812-3456-7890."
|
|
374
|
+
prodex presidio enable --language-mode auto --languages en,id
|
|
375
|
+
prodex presidio status
|
|
376
|
+
prodex presidio doctor --json
|
|
377
|
+
prodex presidio status
|
|
378
|
+
prodex presidio doctor --json
|
|
367
379
|
```
|
|
368
380
|
|
|
369
381
|
When you answer `y` to the `prodex super` / `prodex s` Presidio prompt or pass `--presidio`, Super starts a dedicated runtime proxy that redacts UTF-8 HTTP request bodies and WebSocket text frames through the local Presidio Analyzer and Anonymizer before forwarding them upstream. This is equivalent to adding the `presidio` prefix to the Super stack. Use `--no-presidio` to skip the prompt and keep redaction disabled. 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"`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christiandoxa/prodex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.154.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.154.0",
|
|
20
|
+
"@christiandoxa/prodex-linux-arm64": "0.154.0",
|
|
21
|
+
"@christiandoxa/prodex-darwin-x64": "0.154.0",
|
|
22
|
+
"@christiandoxa/prodex-darwin-arm64": "0.154.0",
|
|
23
|
+
"@christiandoxa/prodex-win32-x64": "0.154.0",
|
|
24
|
+
"@christiandoxa/prodex-win32-arm64": "0.154.0"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=18"
|