@youdie006/prodex 0.40.6 → 0.40.9
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 +31 -13
- package/dist/browser-send-lock.js +10 -131
- package/dist/chatgpt-browser.js +428 -746
- package/dist/cli-args.js +2 -0
- package/dist/cli-help.js +30 -24
- package/dist/cli-ledger.js +2 -0
- package/dist/cli-pro.js +328 -121
- package/dist/cli-server.js +2 -2
- package/dist/cli.js +1 -4
- package/dist/config.js +3 -3
- package/dist/continue-thread.js +9 -2
- package/dist/http-mcp.js +1 -1
- package/dist/issue-report.js +9 -4
- package/dist/mcp-tools.js +42 -10
- package/dist/mcp.js +11 -7
- package/dist/registry.js +54 -6
- package/dist/repo-write.js +22 -2
- package/dist/safe-file.js +249 -1
- package/dist/schema.js +8 -0
- package/dist/store.js +10 -1
- package/dist/tui-flow.js +0 -1
- package/dist/tui-run.js +62 -25
- package/dist/tui.js +68 -54
- package/docs/claude.md +6 -2
- package/docs/cli-reference.md +18 -7
- package/docs/clients.md +18 -6
- package/docs/http-mcp.md +5 -1
- package/docs/releasing.md +3 -1
- package/package.json +1 -1
package/docs/claude.md
CHANGED
|
@@ -105,9 +105,13 @@ The server currently exposes ledger-first tools:
|
|
|
105
105
|
|
|
106
106
|
Write tools are narrow and receipt-gated, and they require a git worktree with a committed HEAD. Claude must first call `repo_write_file_dry_run` with an existing repo-relative text file, replacement content, and the expected git HEAD. The file is not changed; the receipt stores hashes/diff and points at a replacement-text artifact under `.bridge/artifacts/repo-writes/`. To apply it, Claude must call `repo_write_file_apply` with the dry-run receipt id, the same expected HEAD, and the reported preimage hash. If git HEAD, file content, or artifact content changed, apply fails. To stage the result, Claude must call `repo_stage_reviewed_paths` with applied write receipt ids and the same expected HEAD; staging fails if any file changed after apply.
|
|
107
107
|
|
|
108
|
-
`pro_consult` lets Claude ask your logged-in ChatGPT (Pro) directly: it drives the same explicit visible-browser consult as `prodex pro browser ask` (human-paced, blocker-gated, receipt-recorded, answer saved under `.bridge/artifacts/pro-consults/`) and can take minutes for Pro extended reasoning. It requires a prior `prodex pro browser login` session and is registered only on the local stdio MCP server
|
|
108
|
+
`pro_consult` lets Claude ask your logged-in ChatGPT (Pro) directly: it drives the same explicit visible-browser consult as `prodex pro browser ask` (human-paced, blocker-gated, receipt-recorded, answer saved under `.bridge/artifacts/pro-consults/`) and can take minutes for Pro extended reasoning. Ordinary calls start fresh. Each stdio MCP connection gets one default `session_key`, and `continue_thread` only resolves that key's latest finished consult in the same project. Logical agents sharing one connection should pass distinct explicit keys and preserve them for follow-ups. An explicit key also keeps continuity across an MCP process restart. It requires a prior `prodex pro browser login` session and is registered only on the local stdio MCP server; the HTTP MCP surface never exposes it, so nothing reachable through a tunnel or ChatGPT itself can drive your browser.
|
|
109
109
|
|
|
110
|
-
`pro_recover`
|
|
110
|
+
`pro_recover` reads a finished, rendered answer after a consult stopped waiting. Pass the original `request_id` with its `thread` to verify the answer follows that exact marked user turn. Omitting it supports old records but returns `request_verified: false` and a warning. It sends nothing and refuses wrong-request, wrong-thread, still-generating, or unstable content. Deep-research widget reports remain unsupported, and this tool is also registered only on the local stdio MCP server.
|
|
111
|
+
|
|
112
|
+
Updating the installed package does not reload an already-running MCP process. Reconnect the MCP server or restart the Codex/Claude agent client to load the new build. The dedicated browser profile remains signed in, so no ChatGPT reauthentication is needed.
|
|
113
|
+
|
|
114
|
+
Generic bridge result/session/task tools redact ChatGPT thread metadata, including nested blockers; local `pro_consult` recovery information remains available. A legacy result artifact with no saved hash returns `legacy_artifact_unverified` rather than implying its bytes were verified. `sessions cancel` only clears stale bookkeeping after a send was interrupted; it does not stop an active consult.
|
|
111
115
|
|
|
112
116
|
No shell, public tunnel, direct ungated write, or direct ungated staging tools are exposed through the Claude stdio MCP server; the only browser-facing tools are the explicit `pro_consult` consult and the read-only `pro_recover` described above.
|
|
113
117
|
|
package/docs/cli-reference.md
CHANGED
|
@@ -82,6 +82,7 @@ Use this only when you explicitly want to use your logged-in ChatGPT Pro web ses
|
|
|
82
82
|
```bash
|
|
83
83
|
prodex pro browser login --dry-run
|
|
84
84
|
prodex pro browser login
|
|
85
|
+
prodex pro browser login --headed # force a visible window for interactive reauthentication
|
|
85
86
|
prodex pro browser help
|
|
86
87
|
prodex pro browser check
|
|
87
88
|
prodex pro browser smoke --cwd /absolute/path/to/your/repo
|
|
@@ -105,6 +106,7 @@ What happens:
|
|
|
105
106
|
|
|
106
107
|
- `login --dry-run` prints the dedicated Chrome profile, debug URL, and next commands without opening a browser.
|
|
107
108
|
- `login` opens that dedicated Chrome profile at ChatGPT. In an interactive terminal it then waits (default 5 minutes; `--no-wait` skips, `--wait-timeout-ms` tunes) and narrates which manual step is still missing until it reports READY; scripts and agents get the immediate return unless they pass `--wait`.
|
|
109
|
+
- `login` reuses the last profile recorded for the resolved debug port when `--profile-dir` is omitted. It does not reuse a saved custom port implicitly: `--port` / `PRODEX_CDP_PORT` / the normal `9333` default still resolve the port exactly as before.
|
|
108
110
|
- You log in manually in the visible browser.
|
|
109
111
|
- If ChatGPT asks for captcha, Cloudflare/human verification, permission, or account verification, handle it in that browser.
|
|
110
112
|
- If ChatGPT shows a usage limit, message limit, model limit, or rate limit, wait for the reset or choose an available model in the browser.
|
|
@@ -129,7 +131,11 @@ prodex results artifact latest
|
|
|
129
131
|
prodex sessions show latest
|
|
130
132
|
```
|
|
131
133
|
|
|
132
|
-
This uses the currently available ChatGPT web session and model selection. It is not a hidden API client, and it does not read cookies, tokens, localStorage, or sessionStorage.
|
|
134
|
+
This uses the currently available ChatGPT web session and model selection. Each ordinary ask starts a fresh chat, including inside a configured project. Use `--session-key <id> --continue` for a follow-up scoped to one caller, or `--continue-task <task_id>` to deliberately name a consult across sessions. `PRODEX_SESSION_KEY` and then `CODEX_THREAD_ID` are the CLI fallbacks. It is not a hidden API client, and it does not read cookies, tokens, localStorage, or sessionStorage.
|
|
135
|
+
|
|
136
|
+
Current builds read rendered page content only. Project/conversation listings are limited to entries exposed by the UI. Automatic chat/project deletion and deep-research report retrieval are unsupported; those commands stop rather than call internal endpoints. Every send carries a visible request marker; success requires the returned assistant turn to follow that marker. Recover a timeout with `--target-url <thread> --request-id <request_id>` so recovery verifies the same turn. Omitting the request ID is legacy, unverified recovery. Formatting may differ from ChatGPT's rendered message.
|
|
137
|
+
|
|
138
|
+
Locks fail closed if a process is killed while reclaiming an abandoned lock. A leftover `.reap` claim then needs manual cleanup: first stop every prodex process using that resource and confirm no request/write/startup is active; only then remove the affected lock and its matching `.reap` file. Browser locks live beside the recorded send lock, repo-write locks under `.bridge`, and virtual-display allocation locks under `~/.local/share/prodex/xvfb`. Do not remove a live request's lock to shorten a wait.
|
|
133
139
|
|
|
134
140
|
#### Choosing the model, reasoning effort, and project
|
|
135
141
|
|
|
@@ -174,13 +180,18 @@ Log in once, then never see the browser again:
|
|
|
174
180
|
```bash
|
|
175
181
|
prodex pro browser login # once, headed - sign in
|
|
176
182
|
prodex pro browser login --virtual-display # from now on: no window anywhere
|
|
183
|
+
prodex pro browser login --headed # force a visible window for login/captcha
|
|
177
184
|
```
|
|
178
185
|
|
|
179
|
-
`--virtual-display
|
|
186
|
+
Window mode is one mutually exclusive choice: `--headed`, `--headless`, `--minimized`, or `--virtual-display`. Supplying a CLI mode flag selects the whole mode and overrides environment and saved state. With no mode flag, any non-empty `PRODEX_HEADLESS`, `PRODEX_MINIMIZE_WINDOW`, or `PRODEX_VIRTUAL_DISPLAY` value selects the whole environment mode; `0`, `false`, and `no` are meaningful false values, so `PRODEX_HEADLESS=0` explicitly selects ordinary headed mode instead of falling back to a saved headless launch. With neither flags nor mode environment settings, `login` and CLI/MCP auto-recovery reuse the last recorded mode. With no saved record, the normal default is headed.
|
|
187
|
+
|
|
188
|
+
`--virtual-display` (or `PRODEX_VIRTUAL_DISPLAY=1`, which also covers the MCP server and its auto-recovery) starts an X virtual framebuffer and runs the dedicated Chrome on it. It is a **real headed browser** without a desktop window, not Chrome's headless mode. Login, captcha, rate limits, and permission checks still apply; this mode does not bypass them.
|
|
189
|
+
|
|
190
|
+
Requires `Xvfb` and `xauth` (`sudo apt install -y xvfb x11-xkb-utils xauth`); prodex names the package if they are missing. Linux and WSL only. New displays use Linux abstract Unix sockets, which also work when WSLg mounts `/tmp/.X11-unix` read-only. TCP and filesystem Unix listeners are disabled. A per-display xauth cookie under `~/.local/share/prodex/xvfb/` restricts access to clients holding that credential; `-ac` is never used. The X server outlives the CLI on purpose (the browser runs on it) and is reused by later commands; `PRODEX_VIRTUAL_DISPLAY_NUM` selects the first number to try if `:99` is taken. A setup failure stops the launch or recovery, without falling back to a desktop window.
|
|
180
191
|
|
|
181
|
-
|
|
192
|
+
Existing browsers and legacy TCP X servers are not stopped or migrated automatically. Finish pending consults, stop the dedicated browser and its old X server, then run the updated `prodex pro browser login --virtual-display` to migrate. New launches skip display numbers with an existing TCP listener and record the display number actually used.
|
|
182
193
|
|
|
183
|
-
A browser already running on your desktop cannot be moved onto a virtual display by reusing it
|
|
194
|
+
A browser already running on your desktop cannot be moved onto a virtual display by reusing it. prodex refuses the switch without ending the browser; close it yourself, then rerun with the intended mode. Reinvoking `login` for an already-running virtual browser reuses its saved display identity and does not allocate another display.
|
|
184
195
|
|
|
185
196
|
### Keeping the window, just out of the way
|
|
186
197
|
|
|
@@ -192,10 +203,10 @@ The catch is what "minimized" means to your desktop. Under WSLg a minimized Chro
|
|
|
192
203
|
|
|
193
204
|
`prodex pro browser login --headless` (or `PRODEX_HEADLESS=1`, which also covers the MCP server and its auto-recovery) runs the dedicated browser with no visible window. Two constraints are real, not cosmetic:
|
|
194
205
|
|
|
195
|
-
- **Sign in headed first.** Nobody can log in to a window that does not exist, so headless reuses a profile you already signed into.
|
|
206
|
+
- **Sign in headed first.** Nobody can log in to a window that does not exist, so headless reuses a profile you already signed into. If login, captcha, Cloudflare, permission, or account verification is needed, close the hidden browser yourself and run `prodex pro browser login --headed` for a visible interactive window. Do not merely omit `--headless`: saved modes persist.
|
|
196
207
|
- **One mode at a time.** A single Chrome profile cannot serve a headed and a headless instance simultaneously; close the running one before switching (prodex refuses the switch instead of silently reusing the wrong mode).
|
|
197
208
|
|
|
198
|
-
**Cloudflare is the catch, and it is not theoretical.** Measured on a real signed-in profile: headless Chrome lands on the "Just a moment..." interstitial and stays there past 60 seconds, so ChatGPT never loads. A signed-in profile does not buy a pass — the challenge keys on the headless browser itself. Treat `--headless` as available-but-unproven against ChatGPT:
|
|
209
|
+
**Cloudflare is the catch, and it is not theoretical.** Measured on a real signed-in profile: headless Chrome lands on the "Just a moment..." interstitial and stays there past 60 seconds, so ChatGPT never loads. A signed-in profile does not buy a pass — the challenge keys on the headless browser itself. Treat `--headless` as available-but-unproven against ChatGPT: if `prodex pro browser check` reports the challenge, run `prodex pro browser login --headed` and complete it visibly. prodex does not invoke a hidden API or bypass login/protection. Only the window is optional; the login is not.
|
|
199
210
|
|
|
200
211
|
If a consult finds the browser closed, prodex now relaunches it in the same mode you last used and retries once — including from the MCP server, which has no terminal to prompt in. `PRODEX_NO_AUTO_LOGIN=1` turns that off.
|
|
201
212
|
|
|
@@ -270,7 +281,7 @@ Token-bearing MCP URLs are secrets. They authorize all enabled bridge tools, inc
|
|
|
270
281
|
prodex status --show-token --url-only
|
|
271
282
|
```
|
|
272
283
|
|
|
273
|
-
`status --show-token` requires a token with an expiry, so run `setup --token-ttl-hours <hours>` before asking for a paste-ready URL. The URL token is stored only in `.bridge/config.local.json`, which is ignored by git. Rotate it with `setup`
|
|
284
|
+
`status --show-token` requires a token with an expiry, so run `setup --token-ttl-hours <hours>` before asking for a paste-ready URL. The URL token is stored only in `.bridge/config.local.json`, which is ignored by git. Rotate it with `setup --token-ttl-hours <hours>`, then restart `prodex start` and update client URLs. Plain `setup` preserves the saved token and expiry, and unspecified listener settings are preserved. If you intentionally created a non-expiring token for local-only debugging, `status --show-token` refuses to reveal it unless you also pass `--unsafe-show-non-expiring-token`. `doctor` and `pro browser check` also print `config_warning` when the saved token is non-expiring.
|
|
274
285
|
|
|
275
286
|
After adding the MCP URL to ChatGPT, generate a paste-ready verification prompt:
|
|
276
287
|
|
package/docs/clients.md
CHANGED
|
@@ -20,6 +20,18 @@ Install the `prodex` binary with `npm install -g @youdie006/prodex` (note the sc
|
|
|
20
20
|
The same operating rules apply to every client: manual-first, explicit `pro browser ...`
|
|
21
21
|
sends only, stop on blockers, no bypass, low volume, local only (see the README).
|
|
22
22
|
|
|
23
|
+
Each stdio MCP connection gets one default `session_key`. An ordinary `pro_consult`
|
|
24
|
+
starts a fresh chat; `new_chat: false` does not reuse whichever conversation another
|
|
25
|
+
session left in the shared tab. A `continue_thread: true` call searches only the same
|
|
26
|
+
session key and project. Logical agents sharing one connection should use distinct
|
|
27
|
+
explicit keys and preserve them for follow-ups. An explicit key also keeps continuity
|
|
28
|
+
across an MCP process restart; `continue_task` deliberately names a recorded consult.
|
|
29
|
+
|
|
30
|
+
After updating the installed package, reconnect the MCP server or restart the agent
|
|
31
|
+
client. A running stdio process keeps the old code until it exits. The dedicated
|
|
32
|
+
browser profile is unchanged, so restarting Codex/Claude does not require signing in
|
|
33
|
+
to ChatGPT again.
|
|
34
|
+
|
|
23
35
|
## Claude Code
|
|
24
36
|
|
|
25
37
|
See [claude.md](claude.md), or:
|
|
@@ -48,12 +60,12 @@ consult you expect. Claude Code needs no change: its default stdio tool
|
|
|
48
60
|
timeout is effectively unlimited (~28h) unless you tightened `MCP_TOOL_TIMEOUT`
|
|
49
61
|
or a per-server `"timeout"`.
|
|
50
62
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
63
|
+
Keep the client budget longer than the ordinary consult budget. Current
|
|
64
|
+
browser-only builds block `tools: ["deep-research"]` before sending because
|
|
65
|
+
automatic report retrieval depended on an internal API. Run research manually
|
|
66
|
+
in ChatGPT. Recover a timed-out ordinary answer with both the returned `thread` and
|
|
67
|
+
`request_id`; recovery without a request ID is retained for old records but is marked
|
|
68
|
+
unverified.
|
|
57
69
|
|
|
58
70
|
Approval gate (verified on Codex 0.142.5): Codex asks for per-call approval
|
|
59
71
|
before invoking prodex MCP tools. In interactive `codex` sessions you simply
|
package/docs/http-mcp.md
CHANGED
|
@@ -4,6 +4,8 @@ Use this path when you want a ChatGPT Project to hand tasks back to this local r
|
|
|
4
4
|
|
|
5
5
|
This is not the ChatGPT Pro browser adapter. It does not open ChatGPT, read cookies, or automate a web session. It starts a local HTTP MCP server that exposes the same bridge/repo tools as the Claude stdio server.
|
|
6
6
|
|
|
7
|
+
Generic task, session and result responses redact personal ChatGPT thread metadata, including nested blockers and recovery URLs in diagnostic text. Local CLI records retain that context for recovery. Legacy result artifacts without a recorded hash are readable with a `legacy_artifact_unverified` warning; a signed completion receipt does not verify unhashed artifact bytes.
|
|
8
|
+
|
|
7
9
|
## What It Is
|
|
8
10
|
|
|
9
11
|
`prodex start` runs a local Streamable HTTP MCP server.
|
|
@@ -63,7 +65,9 @@ Equivalent from outside the repo:
|
|
|
63
65
|
prodex setup --cwd /absolute/path/to/your/repo --token-ttl-hours 24
|
|
64
66
|
```
|
|
65
67
|
|
|
66
|
-
|
|
68
|
+
Token-bearing MCP URLs are secrets. Keep the renewed URL in your own trusted private MCP client configuration.
|
|
69
|
+
|
|
70
|
+
Expired tokens are rejected by `prodex start` and by the HTTP MCP server. Run `prodex setup --token-ttl-hours <hours>` to rotate the URL, restart `prodex start`, then reconnect clients using `prodex status --show-token --url-only`. Plain `setup` preserves the existing token and expiry; changing the TTL preserves the listener unless `--host` or `--port` is supplied.
|
|
67
71
|
|
|
68
72
|
## Start The Local Server
|
|
69
73
|
|
package/docs/releasing.md
CHANGED
|
@@ -21,7 +21,7 @@ One-time setup (owner, on npmjs.com): open the package → Settings → Trusted
|
|
|
21
21
|
|
|
22
22
|
## Release checks
|
|
23
23
|
|
|
24
|
-
GitHub Actions runs `npm ci`, `npm run build`, `npm run release:check`, and `npm run release:verify` on pushes to `main` and pull requests. The workflow installs `ripgrep` because the repo-search smoke checks require `rg`. It verifies release readiness only; it does not publish anything.
|
|
24
|
+
GitHub Actions runs `npm ci`, `npm run build`, `npm run release:check -- --metadata-only`, and `npm run release:verify` on pushes to `main` and pull requests. The metadata step checks package readiness; the verification step runs the full test and package checks once. The workflow installs `ripgrep` because the repo-search smoke checks require `rg`. It verifies release readiness only; it does not publish anything.
|
|
25
25
|
|
|
26
26
|
Before sharing a package tarball, run:
|
|
27
27
|
|
|
@@ -39,6 +39,8 @@ npm run release:verify
|
|
|
39
39
|
|
|
40
40
|
This runs tests, typecheck, build, package smoke, and `doctor` without weakening the publish guard.
|
|
41
41
|
|
|
42
|
+
Package smoke runs tarball publish dry-runs against an isolated, read-only loopback registry. This keeps repeat verification working after the package version has already been published. It does not establish that a version is available on npm; the separate release dry-run and actual publish still enforce registry readiness. No package is uploaded by the smoke check.
|
|
43
|
+
|
|
42
44
|
If direct `npm pack` is blocked because a WSL/Windows mount reports normal source files as executable, build the publish tarball from a temporary Linux staging directory:
|
|
43
45
|
|
|
44
46
|
```bash
|