@youdie006/prodex 0.23.0 → 0.23.1

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/dist/cli-help.js CHANGED
@@ -257,6 +257,14 @@ export function printProBrowserHelp(stdout, sourceCli) {
257
257
  const modelsUsage = sourceCli
258
258
  ? `${cli} pro browser models${sourceCliOption} [--port 9333] [--timeout-ms 15000]`
259
259
  : "prodex pro browser models [--source-cli /absolute/path/to/dist/cli.js] [--port 9333] [--timeout-ms 15000]";
260
+ const projectsUsage = sourceCli
261
+ ? `${cli} pro browser projects${sourceCliOption} [--port 9333] [--timeout-ms 15000] # read-only: exact sidebar project names`
262
+ : "prodex pro browser projects [--source-cli /absolute/path/to/dist/cli.js] [--port 9333] [--timeout-ms 15000] # read-only: exact sidebar project names";
263
+ // A send that outlives its budget is not a lost answer, but only if agents
264
+ // know this exists - and this help is where onboarding sends them.
265
+ const recoverUsage = sourceCli
266
+ ? `${cli} pro browser recover${sourceCliOption} [--cwd /absolute/path/to/repo] [--port 9333] --target-url <thread-url> [--timeout-ms 60000] # fetch a finished answer (deep research reports too) from a thread whose send timed out`
267
+ : "prodex pro browser recover [--source-cli /absolute/path/to/dist/cli.js] [--cwd /absolute/path/to/repo] [--port 9333] --target-url <thread-url> [--timeout-ms 60000] # fetch a finished answer (deep research reports too) from a thread whose send timed out";
260
268
  stdout(`${cli} pro browser
261
269
 
262
270
  Commands:
@@ -264,7 +272,9 @@ Commands:
264
272
  ${checkUsage}
265
273
  ${smokeUsage}
266
274
  ${modelsUsage}
275
+ ${projectsUsage}
267
276
  ${askUsage}
277
+ ${recoverUsage}
268
278
 
269
279
  Visible-browser sends require a manual browser session and stop on login, captcha, Cloudflare, permission, rate-limit, or usage-limit blockers.
270
280
  Model/project selection (ask):
package/dist/cli.js CHANGED
@@ -322,6 +322,16 @@ repo: ${cwd}
322
322
  ${cli} pro browser check${sourceCliOption} --cwd ${quotedCwd}
323
323
  ${cli} pro browser smoke${sourceCliOption} --cwd ${quotedCwd}
324
324
  Sharing the browser with other agents? Sends queue behind an in-flight response automatically; pass --busy-wait-ms 0 to fail fast instead.
325
+ Hand ChatGPT a real file - the only way it can open a pdf, pptx, xlsx or image:
326
+ ${cli} ask --cwd ${quotedCwd} --attach deck.pptx "Review slides 40-60" # uploads the file itself
327
+ ${cli} ask --cwd ${quotedCwd} --file notes.md "Summarize" # pastes a text file's CONTENTS into the prompt
328
+ Both are restricted to paths inside the repo. Repeat either flag for several files.
329
+ Turn on a composer tool for one send:
330
+ ${cli} ask --cwd ${quotedCwd} --tool web-search "What shipped in Node 24?" # current facts with sources
331
+ ${cli} ask --cwd ${quotedCwd} --tool deep-research "Compare managed Postgres providers" # full browsed report; runs ~10 minutes, budget rises to 30
332
+ Any other label the composer menu shows works too, so a tool ChatGPT adds later needs no prodex release.
333
+ A send that outlives its budget did not lose the answer - ChatGPT usually finishes after prodex stops waiting:
334
+ ${cli} pro browser recover --target-url <thread-url> --cwd ${quotedCwd} # fetches the finished answer (deep research reports too) and records it
325
335
 
326
336
  2. Let coding agents consult ChatGPT (stdio MCP: Claude, Codex, Cursor, ...):
327
337
  ${cli} claude config --cwd ${quotedCwd}${sourceCliOption}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@youdie006/prodex",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
4
4
  "description": "Local receipt bus for coordinating Codex execution with ChatGPT Pro/Projects consultation.",
5
5
  "author": "youdie006",
6
6
  "license": "MIT",