Web Research Skill
Perform web research at three depth levels using OpenAI's APIs.
Choosing the Right Depth
IMPORTANT — Interpreting depth when the user asks for "deep research":
"Deep research" is the name of the feature — it does not automatically mean deep depth. When the user says "do deep research", the decision between normal and deep depth is on a razor's edge — it could genuinely go either way, and it's up to the agent to judge.
The baseline when nothing else is said is normal. But the bar to tip into deep is very low — any additional language like "thorough", "deep-level", "comprehensive", "exhaustive", "leave no stone unturned", or anything at all hinting the user wants more than a standard research pass, immediately means deep depth.
- "Do deep research on X" → normal
- "Do some really thorough deep research on X" → deep
- "I need a comprehensive look at X" → deep
- "Research X in depth, cover every angle" → deep
Fast mode should only be used when the user asks for a quick lookup, or doesn't specify any depth preference and the query is clearly a simple factual retrieval.
The key question: Are you retrieving information or exploring a topic?
Fast (~1-2 min) — Retrieval
Uses gpt-5.5 via the Responses API with web_search tool and medium reasoning effort. Searches the web then synthesizes results with lightweight reasoning — substantially better than a raw search snippet. Use when you'd normally Google something, open a few links, and get your answer.
Good for:
- Current facts (prices, dates, events)
- Quick verifications ("Does X support Y?")
- Simple lookups where you know the answer exists
- Low-stakes decisions
Query detail matters even in fast mode. Don't write terse Google-style keyword queries — write 1-3 sentences that give the model enough context to search effectively and synthesize a useful answer. Include what you're trying to accomplish, relevant specifics (model numbers, sizes, versions), and what kind of answer you're looking for.
Examples:
- "What version of Python does Django 5.0 require? I'm setting up a new project and want to confirm minimum and recommended versions."
- "I'm trying to price a used 6-foot Green Giant Arborvitae for a local sale. What do established arborvitae this size typically sell for secondhand vs. retail nursery pricing? Looking for Craigslist, eBay, and garden forum comps."
- "When is the next Apple event scheduled for 2026? I'm deciding whether to wait for a new MacBook announcement or buy now."
Normal (3-8 min) — Moderate Research
Use when you need more than a quick lookup but don't need exhaustive coverage. Good for comparisons, how-to questions, and understanding a topic at a moderate depth.
Good for:
- Feature comparisons (without needing every detail)
- How-to guides and best practices
- Understanding a topic you're somewhat familiar with
- Questions where you want synthesized information, not just raw facts
Examples:
- "What are the best practices for Python async programming in 2026?"
- "Compare Tailwind CSS vs vanilla CSS for a small project"
- "How do I set up GitHub Actions for a Python project?"
Deep (5-15 min) — Exploratory Research
Use when you're genuinely exploring—you don't have certainty, the topic is niche, or you need the model to follow leads and check multiple sources. Also use when your research might require data analysis (reading PDFs, spreadsheets, doing calculations).
Good for:
- Niche or specialized topics
- Multi-faceted questions requiring synthesis
- Research that needs data analysis (trends, comparisons over time)
- Critical decisions where you want thorough source-checking
- Topics where information might be in PDFs or require calculations
Examples:
- "Compare US-SK105 Midea Wi-Fi dongle vs ESPHome for Carrier mini-split Home Assistant integration. Include compatibility, setup reliability, and reported issues."
- "Analyze electricity price trends with Peco Electric over the last 10 years"
- "Research the economic impact of semaglutide on global healthcare systems with specific figures and statistics"
Structuring Your Query
Unlike ChatGPT's Deep Research (which asks clarifying questions), the API expects fully-formed prompts. The model won't ask for clarification—it just starts researching.
Tips for better results:
- State your goal explicitly ("I'm trying to decide between X and Y for Z use case")
- Include what you already know or have tried
- Specify constraints (budget, timeline, technical requirements)
- Ask for specific deliverables ("Include a comparison table", "List pros and cons")
- For deep research, mention if you need data analysis or source verification
Configuration
| Depth | Model | Reasoning | Time | Max Tool Calls |
|---|---|---|---|---|
| fast | gpt-5.5 + web_search | medium | ~1-2 min | — |
| normal | gpt-5.6-sol + web_search + code interpreter | high | 3-8 min | 25 |
| deep | gpt-5.6-sol + web_search + code interpreter | xhigh | 5-15 min | unlimited |
Note (July 2026 migration): OpenAI retired the dedicated deep-research models (o3-deep-research, o4-mini-deep-research) on 2026-07-23. "Deep research" is now a method — a reasoning model with the web_search tool in background mode — not a model ID. The deprecations page names gpt-5.6-sol as the substitute; this skill differentiates normal vs deep via reasoning effort (high vs xhigh, both verified available) and tool-call caps. A 2026-07-28 side-by-side test on a medium query: high = 4:11 / 12 searches / 11.6k output tokens; xhigh = 5:07 / 12 searches / 16.5k output tokens — comparable searches and wall-clock to old o3, with xhigh producing ~40% more reasoning/output.
Override defaults via env vars (frontier moves; bumping a model means changing one line in your shell, not editing code):
| Env var | Default | Applies to |
|---|---|---|
WEB_RESEARCH_FAST_MODEL |
gpt-5.5 |
fast tier |
WEB_RESEARCH_DEEP_MODEL |
gpt-5.6-sol |
normal + deep tiers |
WEB_RESEARCH_TITLE_MODEL |
gpt-5.4-nano |
title-generator helper |
Note: versioned slugs are pinned — they do not auto-float to newer minors. Update the default (or set the env var) when a new frontier ships.
Costs
Approximate per-run costs with the default models (fast measured against July 2026 billing; normal/deep computed 2026-07-28 from observed token volumes × confirmed rates — gpt-5.6-sol: $5/M input, $30/M output, $10/1k web searches):
| Depth | Typical cost/run | What drives it |
|---|---|---|
| fast | ~$0.50–0.70 | Large input context (web results, |
| normal | ~$0.80–1.20 | ~80–115k input + ~12k output tokens + 8–12 searches observed per run on gpt-5.6-sol |
| deep | ~$1.20–2.50 |
The cost shape changed with the 2026-07-23 migration from o3-deep-research to gpt-5.6-sol: o3 was output-dominated (24k input/run), while gpt-5.6-sol with the current 80–115k input tokens/run, because full search results are fed into context at the model's input rate). Reasoning tokens still bill as output (web_search tool is input-dominated like the fast tier (usage.output_tokens includes them). Web search tool calls bill separately from tokens on all tiers (they appear as their own line item on the invoice). Notably, the migration made the deep tiers cheaper than o3-era measurements (~$1.50 normal / ~$2.50–3.00 deep) despite the input bloat, because sol's output rate is far below o3-deep-research's. Reconcile against real billing after a few weeks of use (see Recalculating below).
Recalculating
Costs drift as models and pricing change. To re-derive them:
- Rough pass (no API needed): every saved report in
~/research/hastokens,depth, andweb_searchesin its frontmatter. Grep these out and average per depth to get token volume per run. - Accurate pass (requires an org admin key): query
GET /v1/organization/usage/completionswithgroup_by: ["api_key_id", "model"]to get the real input/cached/output token split for the key this skill uses, then multiply by current rates from the pricing page. Reasoning tokens are included inoutput_tokens. - Reconcile against billing: query
GET /v1/organization/costswithgroup_by: ["line_item"]— this returns actual billed dollars per model and surfaces separately-billed items likeweb search tool callsthat token math alone misses. The two passes should agree within a few percent.
Using a dedicated API key for this skill makes step 2 trivial — per-key attribution via the usage endpoint requires no guesswork about which requests were research runs. (The costs endpoint only groups down to project level, so a dedicated project additionally gives clean invoice-level reads.)
Usage
Important (Windows): Always quote paths containing backslashes or spaces.
CRITICAL — Bash timeout: The default Bash timeout (2 min) is too short for research calls. You MUST:
- Fast: Set
timeout: 300000(5 min) or userun_in_background: true- Normal / Deep: Use
run_in_background: trueCRITICAL — Long prompts or prompts with attached documents: Bash heredocs break on single quotes, backticks, and other shell-significant characters common in real documents. When the prompt exceeds ~30 lines or includes pasted document content, write it to a temp file via Python first, then pass via
$(cat ...):python3 -c " import pathlib doc = pathlib.Path(r'C:\path\to\document.md').read_text(encoding='utf-8') query = 'Your research question here...\n\n---\n\n' + doc pathlib.Path(r'C:\Users\Dimitri\AppData\Local\Temp\prompt.txt').write_text(query, encoding='utf-8') " cd "<skill-directory>" && uv run research.py -d deep "$(cat 'C:\Users\Dimitri\AppData\Local\Temp\prompt.txt')"This avoids all quoting issues and lets you attach full documents to the research query.
CRITICAL — Don't invoke from a fork/sub-agent. Forks reap their child processes on exit, so a
run_in_background: truebash task launched from inside a fork gets killed when the fork terminates — even if the fork's summary message claims the research is "running in background." Always invoke this skill directly from the main conversation thread;run_in_background: truefrom there already provides out-of-band completion via task notification, with no benefit to wrapping the skill in a fork.
# Fast lookup (default) — 1-3 sentences with context
cd "<skill-directory>" && uv run research.py "I'm trying to price a used 6-foot Green Giant Arborvitae for a local sale. What do established arborvitae this size typically sell for secondhand vs. retail nursery pricing? Looking for Craigslist, eBay, and garden forum comps."
# Normal research — roughly a paragraph of context
# ⚠️ Use timeout: 600000 or run_in_background: true
cd "<skill-directory>" && uv run research.py -d normal "I'm building a FastAPI app and trying to decide on an async database approach. What are the current best practices for async database connections with SQLAlchemy 2.0? I'm particularly interested in connection pooling, session management, and whether to use encode/databases or native SQLAlchemy async."
# Deep research — two paragraphs of detailed context
# ⚠️ Use timeout: 600000 or run_in_background: true
cd "<skill-directory>" && uv run research.py -d deep "I have a Carrier 40MHHQ09 mini-split (which is a rebadged Midea unit) and want to integrate it with Home Assistant. I've seen mentions of the US-SK105 Midea Wi-Fi dongle and ESPHome-based solutions but I'm not sure which approach is more reliable or if they even work with Carrier-branded units. [...]
Compare these options and include: (1) compatibility confirmation for Carrier 40MHH series, (2) Midea AC LAN HACS integration setup and reliability, (3) ESPHome alternatives, (4) USB port location, and (5) whether the solution reads actual unit state vs just sending commands. [...]"
Arguments
--depth/-d: Research depth -fast,normal, ordeep(default:fast)--no-save: Don't save results to~/research/--retrieve/-r<response_id>: Recover a previously-started background (deep/normal) response by its id and save it like a normal run. The positionalquerybecomes optional here (pass it for a better filename/title).query(required unless--retrieveis given): The research question or topic
Recovering a Dropped Deep Run
Deep/normal research runs in OpenAI background mode, so the response keeps generating server-side even if the local poller dies (dropped connection, killed process, machine sleep). The script prints the full response_id to stderr the moment the run starts (look for Deep research started (response_id: resp_...) in the Bash/task output). To recover the result later:
# Minimal — recovers and saves to ~/research/
cd "<skill-directory>" && uv run research.py --retrieve resp_xxxxxxxxxxxx
# Better filename/title — pass the original query as the positional arg
cd "<skill-directory>" && uv run research.py --retrieve resp_xxxxxxxxxxxx "the original research question"
If the response is still running, --retrieve waits for it to finish. Recovered files are tagged depth: recovered in the frontmatter.
Output
Returns markdown-formatted results with:
- Main content answering the query
- Inline citations where applicable
- Source URLs listed at the end
Saved Research
All research results are automatically saved to ~/research/ as markdown files. Each file contains YAML frontmatter (working directory, date, depth, model, metrics) followed by the original query and the full response with sources.
Before running new research, check if relevant past research already exists — especially for normal/deep depths which are expensive. Search by keyword or by project directory:
# Find past research containing a keyword
grep -rl "keyword" ~/research/
# Find past research done from the current project directory
grep -rl "directory: <current-working-directory>" ~/research/
# Read a past result
cat ~/research/2026-02-04_some-query.md
If a relevant past result exists, read it and present it to the user instead of re-running the research.
External Mode (via chatgpt)
When invoked as /web-research [depth] via chatgpt [topic], the skill switches to prompt-generation mode instead of calling the API. This externalizes the research to ChatGPT's Deep Research feature (included in ChatGPT Pro/Plus subscriptions), saving ~$1/query while producing equivalent results.
Workflow
- Context gathering happens identically to a normal invocation - search Outline, read vault docs, check existing research in
~/research/, pull in whatever context makes the prompt better. - Generate the prompt using the same structuring principles (goal, constraints, deliverables, existing knowledge) but formatted for ChatGPT's Deep Research interface. ChatGPT Deep Research asks clarifying questions before starting (unlike the API which expects fully-formed prompts), so the prompt can be slightly more open-ended while still being detailed.
- Present in chat for the user to
/copy. Do NOT execute the prompt or create any files at this stage. - When the user returns with results (shares a file path, typically from a temp/downloads location), read the content, generate the filename from the report's topic (
YYYY-MM-DD_kebab-slug.md), prepend frontmatter, move to~/research/, and confirm.
The depth argument still matters for prompt crafting - a deep via chatgpt prompt should be more detailed and multi-faceted than a normal via chatgpt prompt.
Frontmatter for External Reports
When filing an externally-sourced report, prepend lightweight YAML frontmatter for provenance and searchability:
---
date: YYYY-MM-DD
source: chatgpt-deep-research
query: "original prompt or topic summary"
directory: working directory at time of request
---
Skip fields that don't apply to external research (token counts, model version, processing time, max tool calls). The source field enables grep -rl "source: chatgpt" ~/research/ to separate external from API-generated reports.
Recognition Patterns
The user may signal results are ready with any of:
- A file path (e.g.
C:\Users\Dimitri\Documents\Temp Docs\report.md) - "file it", "research result", "here's the report"
- Dropping a file path with minimal context after a
via chatgptprompt was generated earlier in the session
Credentials
The script looks for OPENAI_API_KEY in:
- Local
.envfile in current directory - User home
~/.envfile - Skill directory
.envfile - System environment variables