pi-oracle
ChatGPT web-oracle extension for pi with isolated browser auth, async jobs, and project-context archives.
Package details
Install pi-oracle from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:pi-oracle- Package
pi-oracle- Version
0.6.15- Published
- May 3, 2026
- Downloads
- 4,305/mo · 532/wk
- Author
- fitchmultz
- License
- MIT
- Types
- extension, prompt
- Size
- 504.1 KB
- Dependencies
- 1 dependency · 2 peers
Pi manifest JSON
{
"extensions": [
"./extensions/oracle/index.ts"
],
"prompts": [
"./prompts"
]
}Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
pi-oracle
pi-oracle is a pi package that lets the agent hand off difficult, long-running tasks to ChatGPT.com through the web app instead of the API.
Use it when you want:
- your real ChatGPT account
- web-model behavior instead of API usage
- large repo/context uploads
- async background execution
- durable saved responses/artifacts plus best-effort wake-ups back into
pi
Normal oracle jobs run in an isolated browser profile, not your active browser window.
Status: experimental public beta. Validated primarily on macOS with Google Chrome and
pi0.65.0+.
When to use it
Use pi-oracle for:
- big code reviews of a repo or pending changes
- architectural or migration analysis that benefits from a large uploaded archive
- long-running prompts that may take minutes to finish
- follow-up questions in the same ChatGPT thread later
Do not reach for it first for:
- normal short coding tasks that
pican handle directly - workflows that must never upload project archives to ChatGPT.com
- environments outside the current supported setup
Install
npm:
pi install npm:pi-oracle
GitHub:
pi install https://github.com/fitchmultz/pi-oracle
Quickstart
- Start a normal persisted
pisession. Do not usepi --no-sessionfor oracle. - Make sure ChatGPT already works in your configured local browser profile.
- Make sure these are installed: Google Chrome,
agent-browser,tar, andzstd. - Optional: create
~/.pi/agent/extensions/oracle.jsonif you want non-default settings. - Run
/oracle-auth. - Run
/oracle Review the current pending changes. Include the whole repo unless a narrower archive is clearly better. - Wait for the one-time best-effort wake-up, or check
/oracle-status.
The /oracle prompt now runs an early oracle preflight before it gathers repo context, so missing persisted-session or local auth/config blockers fail before the agent spends time reading files.
For explicitly narrow requests, /oracle should still prefer a context-rich relevant archive up to the 250 MB ceiling, including nearby tests, docs, config, and adjacent modules when that can improve answer quality. Reserve tightly minimal archives for an explicit user request for a tight archive, privacy-sensitive material, or size-constrained cases. It should also omit preset and use the configured default model unless the task clearly needs a different one.
If a local archive still exceeds the 250 MB limit after default exclusions and automatic whole-repo pruning, the agent should treat that as a retryable archive-selection failure: shrink the archive automatically, retry with a smaller relevant slice, and explain what it cut only if it still cannot fit after the allowed retry budget.
If you miss the one-time wake-up, the result is still saved durably in the oracle job directory and can be read later.
Example requests
/oracle Review the current pending changes. Include the whole repo unless a narrower archive is clearly better. Give me a prioritized code review with concrete fixes.
/oracle Read the codebase and explain the highest-risk auth/session failure modes, including what to test before shipping.
/oracle Explain the README guidance for /oracle-clean retention grace. Archive README.md plus any nearby docs or implementation files that help answer accurately.
/oracle-followup <job-id> Tighten the migration plan around rollback risk, and include the most relevant surrounding files/docs as long as the archive stays comfortably within the limit.
After a job finishes, use /oracle-followup <job-id> <request> to continue the same ChatGPT thread without hand-writing the low-level followUpJobId tool parameter.
High-level flow
flowchart LR
A["/oracle request"] --> B["Agent preflights, then gathers a context-rich relevant repo slice"]
B --> C["oracle_submit builds archive"]
C --> D["Detached worker starts isolated ChatGPT runtime"]
D --> E["Archive + prompt sent to ChatGPT.com"]
E --> F["Response/artifacts saved under oracle job dir"]
F --> G["One-time best-effort wake-up to matching pi session"]
If concurrency is full, the job is queued and starts automatically later.
What the package adds
User-facing commands:
/oracle <request>— prompt template that tells the agent to gather context and dispatch an oracle job/oracle-followup <job-id> <request>— prompt template that continues an earlier oracle job in the same ChatGPT thread/oracle-auth— sync ChatGPT cookies from your configured local browser profile into the isolated oracle auth profile/oracle-read [job-id]— inspect job status plus the saved response preview/oracle-status [job-id]— inspect job status and list recent job ids when no explicit id is given/oracle-cancel <job-id>— cancel a queued or active job by id/oracle-clean <job-id|all>— remove temp files for terminal jobs; recently woken terminal jobs may stay retained briefly and return a retry-after hint
Agent-facing tools:
oracle_preflightoracle_authoracle_submitoracle_readoracle_cancel
Minimal config
Most users can start with the packaged defaults and only set the browser profile if needed.
~/.pi/agent/extensions/oracle.json
{
"defaults": {
"preset": "<preset id from ORACLE_SUBMIT_PRESETS>"
},
"auth": {
"chromeProfile": "Default"
}
}
Notes:
defaults.presetis the default ChatGPT model preset for oracle jobs.- The canonical preset ids live in
extensions/oracle/lib/config.ts. - If the packaged default is fine, you can omit
defaults.presetentirely. - You usually do not need to set browser paths unless auto-detection fails.
Custom Chromium cookie sources
Most Chrome-compatible browsers should work through the default cookie importer. Use this alternate path only for a Chromium-family browser that is not one of @steipete/sweet-cookie's built-in Chrome/Brave/Arc/Chromium targets or otherwise cannot import cookies without dependency patching.
Before running /oracle-auth with this path:
- Log into ChatGPT in the target browser profile.
- Fully quit the browser so its
Cookiesdatabase is stable. - Find the profile
CookiesSQLite DB path. - Find the browser's macOS Keychain safe-storage item account and service name.
- Configure all of
browser.executablePath,auth.chromeCookiePath, andauth.chromiumKeychainin the agent-level config at~/.pi/agent/extensions/oracle.json.
Example Helium config:
{
"browser": {
"executablePath": "/Applications/Helium.app/Contents/MacOS/Helium"
},
"auth": {
"chromeProfile": "Default",
"chromeCookiePath": "/Users/you/Library/Application Support/net.imput.helium/Default/Cookies",
"chromiumKeychain": {
"account": "Helium",
"services": ["Helium Storage Key"],
"label": "Helium Storage Key"
}
}
}
auth.chromeCookiePath remains the cookie database path for backward compatibility. auth.chromiumKeychain must be paired with auth.chromeCookiePath; partial config is rejected so oracle does not silently fall back to a different browser source. When both are present, /oracle-auth uses pi-oracle's repo-owned generic Chromium cookie reader instead of patching @steipete/sweet-cookie internals.
If macOS prompts for Keychain access during /oracle-auth, allow access for the configured browser safe-storage item. If auth still fails after cookies are synced, the cookie DB may be stale, from the wrong profile, or for an account that is logged out; reopen the configured browser profile, confirm ChatGPT works there, quit the browser, and rerun /oracle-auth.
Available presets
| Preset id | Description |
|---|---|
pro_standard |
Pro - Standard |
pro_extended |
Pro - Extended |
thinking_light |
Thinking - Light |
thinking_standard |
Thinking - Standard |
thinking_extended |
Thinking - Extended |
thinking_heavy |
Thinking - Heavy |
instant |
Instant |
instant_auto_switch |
Instant - Auto-switch to Thinking Enabled |
oracle_submit accepts either the canonical preset id or the matching human-readable preset label; common space/hyphen variants are normalized automatically at submit time. Keep defaults.preset in config on the canonical preset id.
Other useful settings:
browser.runModebrowser.argsbrowser.authSeedProfileDirbrowser.runtimeProfilesDircleanup.completeJobRetentionMscleanup.failedJobRetentionMs
Project config should only override safe, non-privileged settings.
What happens to outputs
- Jobs persist their response and any artifacts under
${PI_ORACLE_JOBS_DIR:-/tmp}/oracle-<job-id>/by default. - Jobs can queue automatically if runtime capacity is full.
- Completion delivery into
piis one-time best-effort wake-up based; duplicate poller scans are deduped in job state. - If you miss the wake-up, use
/oracle-read [job-id]to inspect the saved response preview. /oracle-status [job-id]still shows saved job metadata and lists recent job ids when you omit the id.- Agent callers can use
oracle_read({ jobId }). - If a prior oracle run failed because ChatGPT login was required or the worker explicitly said to rerun
/oracle-auth, agent callers can runoracle_auth({})once and then retry the submission once. /oracle-cleancan still refuse a terminal job briefly after a wake-up send so saved response/artifact paths survive the follow-up turn; when that guard applies, it returns the next eligible cleanup time.
Requirements
- macOS
- Node.js 22 or newer
- Google Chrome or another Chromium-family browser installed
- ChatGPT already signed into the configured local browser profile
pi0.65.0 or neweragent-browseravailable on the machinetarandzstdavailable
Troubleshooting
/oracle-auth fails or says login is required
- Make sure ChatGPT works in the same local browser profile you configured.
- For custom Chromium cookie sources, confirm
auth.chromeCookiePathpoints at that profile'sCookiesDB andauth.chromiumKeychain.servicesnames the browser's safe-storage Keychain service. - Re-run
/oracle-auth. - If ChatGPT is half-logged-in or challenge flow state looks weird, finish the login/challenge in the headed auth browser and retry.
You hit a challenge / verification page
- Solve it in the auth/bootstrap browser if prompted.
- Then re-run
/oracle-authbefore submitting jobs again.
You see "Oracle requires a persisted pi session"
- Do not run oracle from
pi --no-session. - Start a normal persisted
pisession, then use/oracleagain.
A job finished but no wake-up arrived
- Use
/oracle-read [job-id]to inspect the saved response preview. - Use
/oracle-status [job-id]when you want status metadata or need help finding a job id. - Agent callers can use
oracle_read({ jobId })if they need tool output in the current turn. - Results are still saved on disk even if the reminder turn does not land.
/oracle-clean refuses a terminal job right after completion
- This can happen during the short post-send retention grace window after a wake-up was sent.
- The command now returns a
Retry after ...timestamp when that guard is active. - Wait until that time, then rerun
/oracle-clean [job-id|all].
agent-browser, tar, or zstd is missing
- Install the missing local dependency and rerun the command.
Auto-detection picked the wrong browser profile
- Set
auth.chromeProfilein~/.pi/agent/extensions/oracle.json. - For custom Chromium cookie sources, set
auth.chromeCookiePathto the exact profileCookiesDB and pair it withauth.chromiumKeychain. - Re-run
/oracle-auth.
You want more details about a failed run
- Inspect the job directory under
${PI_ORACLE_JOBS_DIR:-/tmp}/oracle-<job-id>/. - The worker log and captured diagnostics are stored there.
Detailed docs
docs/ORACLE_DESIGN.md— architecture, lifecycle, queueing, persistence, presets, and recovery behaviordocs/ORACLE_RECOVERY_DRILL.md— safe expired-auth recovery validation drilldocs/ORACLE_ISOLATED_PI_VALIDATION.md— repeatable isolatedpisession smoke test for local-extension validation
Privacy / local data
This extension is local-first, but it does read and persist local data:
/oracle-authreads ChatGPT cookies from the configured local browser profile- job archives are uploaded to ChatGPT.com
- responses and artifacts are written under the configured oracle jobs dir
Review the code and design docs before using it with sensitive material.
Validation helpers
npm run check:oracle-extension
npm run typecheck
npm run typecheck:worker-helpers
npm run sanity:oracle
npm run pack:check
# conventional local gate
npm test
# or all at once
npm run verify:oracle
npm publish is also guarded locally via prepublishOnly and will run npm run verify:oracle before publishing.
Beta caveats
The highest-risk areas to monitor are:
- ChatGPT UI drift
- auth/bootstrap drift
- artifact download behavior
- local environment assumptions
License
MIT. See LICENSE.