Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Consult ChatGPT Pro via ChatGPT browser automation for problems that resist standard approaches. Use when stuck on a very hard problem, when standard approaches have failed, when multiple debugging attempts haven't worked, or when the user says "ask the oracle", "consult oracle", "consult chatgpt", "I'm completely stuck", "I've tried everything", or "nothing is working".
.claude/skills/tobihagemann-consult-oracle/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | -12% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 3% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 19% | 0% |
| case-10 | ✗→✓ | ▲ Improved | -8% | 0% |
| case-12 | ✗→✓ | ▲ Improved | -17% | 0% |
Consult ChatGPT Pro via ChatGPT browser automation for problems that resist standard approaches.
The oracle reads from ~/.turbo/config.json:
json{ "oracle": { "chatgptUrl": "https://chatgpt.com/", "chromeProfile": "Default" } }
| Key | Purpose | Default | |---|---|---| | chatgptUrl | ChatGPT URL (e.g., a custom GPT project URL) | https://chatgpt.com/ | | chromeProfile | Chrome profile directory name | Default |
Find the 2-5 files most relevant to the problem.
Write a clear, specific problem description. Include what has already been tried and why it failed. Open with a short project briefing (stack, services, build steps). The more context, the better the response.
Use a generous timeout (60 minutes / 3600000ms). The script loads chatgptUrl and chromeProfile from ~/.turbo/config.json automatically and reuses the signed-in ChatGPT session from that Chrome profile. Generate a random tag and persist the response:
bashORACLE_TAG=$(head -c 4 /dev/urandom | xxd -p) && mkdir -p "$PWD/.turbo/oracle" && echo "$PWD/.turbo/oracle/$ORACLE_TAG.txt"
Substitute the printed value for <printed-path> in the command below and on every follow-up turn. Shell variables do not survive between shell calls, and an earlier cd in a compound command leaves the session in a different directory, so a relative path resolves against that directory instead.
bashpython3 scripts/run_oracle.py --prompt "<problem description>" --file <relevant files...> --write-output "<printed-path>"
Keep backticks and $ out of --prompt even in text you wrote, since both stay live inside the quotes. Text you did not author — a diff, file contents, an error trace, command output — goes in a file passed with --file, written with apply_patch. This holds on follow-up turns too.
If the run fails, retry the command once — same prompt, attachments, profile, and timeout — when the failure looks transient, such as a browser challenge or automation error while the signed-in session is otherwise healthy. Report an authentication, browser-challenge, or permission blocker only after the retry reproduces it, and cite the failing output. Do not broaden permissions when the current context already has the access the run needs.
Resume the same ChatGPT conversation with --followup and the session slug. The prior turn's attached files and context persist, so re-attaching the full diff each turn is unnecessary. Use the same generous timeout as Step 3 (60 minutes / 3600000ms):
bashpython3 scripts/run_oracle.py --followup "<session-slug>" --prompt "<follow-up>" --write-output "<printed-path>"
Find the slug with python3 scripts/run_oracle.py status (the Slug column; follow-ups nest under their parent session) or from the directory names under ~/.oracle/sessions/.
Reuse the chat for a multi-turn review of the same code; start a fresh session (Step 3) for an unrelated question. Cap at 5 turns to prevent runaway conversations.
When the reviewed code changed since the prior turn, re-attach the changed files (--file <paths>) or a fresh diff, or state what changed. Otherwise the model reasons from the earlier attachments and flags already-fixed issues as live contradictions.
Read the response from <printed-path>. Summarize the key insights from the consultation. Cross-reference suggestions with official docs and peer open-source implementations before applying. Oracle suggestions are starting points, not guaranteed solutions.
Then call update_plan to mark this step completed and continue with the next step of the active workflow.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-04 | fail→pass | 16,383 | 6,777 | -59% | 1 | 1 | 0% | 2,375 | 2,079 | -12% | 0 | 0 | — |
case-01 | fail→fail | 6,437 | 69,327 | +977% | 1 | 1 | 0% | 422 | 1,802 | +327% | 0 | 0 | — |
case-02 | fail→fail | 9,654 | 8,061 | -17% | 1 | 1 | 0% | 840 | 1,239 | +48% | 0 | 0 | — |
case-03 | fail→fail | 33,973 | 7,060 | -79% | 1 | 1 | 0% | 280 | 1,615 | +477% | 0 | 0 | — |
case-05 | fail→fail | 6,635 | 2,214 | -67% | 1 | 1 | 0% | 1,008 | 1,284 | +27% | 0 | 0 | — |
case-06 | pass→fail | 11,454 | 5,094 | -56% | 1 | 1 | 0% | 1,769 | 1,857 | +5% | 0 | 0 | — |
case-07 | fail→fail | 8,785 | 8,721 | -1% | 1 | 1 | 0% | 1,467 | 1,487 | +1% | 0 | 0 | — |
case-08 | fail→pass | 8,151 | 3,706 | -55% | 1 | 1 | 0% | 1,537 | 1,583 | +3% | 0 | 0 | — |
case-09 | fail→pass | 6,792 | 20,368 | +200% | 1 | 1 | 0% | 1,173 | 1,392 | +19% | 0 | 0 | — |
case-10 | fail→pass | 7,515 | 1,398 | -81% | 1 | 1 | 0% | 1,272 | 1,173 | -8% | 0 | 0 | — |
case-11 | fail→fail | 9,557 | 3,533 | -63% | 1 | 1 | 0% | 1,701 | 1,213 | -29% | 0 | 0 | — |
case-12 | fail→pass | 12,885 | 5,267 | -59% | 1 | 1 | 0% | 2,200 | 1,816 | -17% | 0 | 0 | — |
case-13 | fail→pass | 9,834 | 2,177 | -78% | 1 | 1 | 0% | 1,932 | 1,348 | -30% | 0 | 0 | — |
case-14 | pass→pass | 9,604 | 2,449 | -75% | 1 | 1 | 0% | 1,819 | 1,327 | -27% | 0 | 0 | — |
case-15 | fail→pass | 12,828 | 5,442 | -58% | 1 | 1 | 0% | 2,471 | 1,845 | -25% | 0 | 0 | — |
case-16 | fail→pass | 5,798 | 3,582 | -38% | 1 | 1 | 0% | 1,030 | 1,601 | +55% | 0 | 0 | — |
case-17 | pass→pass | 10,279 | 3,898 | -62% | 1 | 1 | 0% | 1,974 | 1,531 | -22% | 0 | 0 | — |
case-18 | fail→pass | 9,475 | 1,461 | -85% | 1 | 1 | 0% | 1,747 | 1,163 | -33% | 0 | 0 | — |
case-19 | fail→pass | 9,919 | 3,492 | -65% | 1 | 1 | 0% | 1,734 | 1,605 | -7% | 0 | 0 | — |
case-20 | pass→fail | 11,407 | 5,546 | -51% | 1 | 1 | 0% | 2,441 | 1,179 | -52% | 0 | 0 | — |
case-21 | pass→pass | 6,637 | 30,057 | +353% | 1 | 1 | 0% | 1,389 | 4,088 | +194% | 0 | 0 | — |
case-22 | pass→pass | 5,859 | 8,197 | +40% | 1 | 1 | 0% | 1,188 | 2,641 | +122% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 18 counted toward the lift figure. The other 4 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +36 percentage points is the difference between those two pass rates over the 18 comparable cases. 2 cases got worse with the skill loaded, and they are included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
| Model | Method | Date | Lift |
|---|---|---|---|
| gemini-3.6-flash | verified | 8/21/2026 | +41% |
Other measured skills in the registry, with their headline benchmark lift.