Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add zbs-gg/zbs-researcher/plugin install deep-researchWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/zbs-gg/zbs-researcher/deep-research)<a href="https://agentmods.dev/skills/zbs-gg/zbs-researcher/deep-research"><img src="https://agentmods.dev/badge/skills/zbs-gg/zbs-researcher/deep-research/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/zbs-gg/zbs-researcher/deep-research"><img src="https://agentmods.dev/badge/skills/zbs-gg/zbs-researcher/deep-research.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00209 | $0.11851 |
| Opus 5 | $0.00105 | $0.05926 |
| Sonnet 5 | $0.00042 | $0.02370 |
| Haiku 4.5 | $0.00021 | $0.01185 |
Grade B, and why
deep-research scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
(`chmod 600` it). The secrets dir is `DEEP_RESEARCH_SECRETS_DIR` if set, How it starts
The opening of the file, as written. The whole thing — 800 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Deep Research — plan first, then multi-channel pull + synthesis
Use when normal web search isn't enough — you need to triangulate across very different source types (reasoning-model lenses and raw platform signal) and surface contradictions, not just retrieve the top-ranked summary.
The edge is QUALITY: native, full-breadth social/community depth — this tool reads the platforms from inside (live X, Telegram communities, the full Reddit archive) and backs every load-bearing claim with a real quote, an author handle, and a clickable live link. A web-index researcher sees only the indexed scraps. "Free/cheaper" is not the pitch — quality is.
STEP 0 — RESEARCH PLAN (mandatory, before any run)
Never fire the connectors cold. Every skill invocation creates one self-contained bundle in the project from which the skill was launched. The meaningful research plan must exist inside that bundle before connector work starts. The rule is: "when you invoke research — the research plan first, then the run."
- Capture the launch directory before resolving plugin paths, then probe
the live connectors from that directory. Never
cdinto the plugin and accidentally make it the research owner. ResolveSKILL_DIRfrom the absolute directory containing the loadedSKILL.md; this path is supplied during skill discovery on Codex and other hosts. Do not assumeCLAUDE_PLUGIN_ROOTexists, and never execute the placeholder below—replace it with the discovered absolute directory in every shell call:
Record the printed absolute path. Shell variables may not survive between tool calls, so later calls must reassignLAUNCH_CWD="$(pwd -P)" SKILL_DIR="<absolute directory containing the loaded SKILL.md>" SCRIPT="$SKILL_DIR/scripts/deep-research.py" test -f "$SCRIPT" printf 'launch_cwd=%s\n' "$LAUNCH_CWD" (cd "$LAUNCH_CWD" && python3 "$SCRIPT" --list-connectors \ --launch-cwd "$LAUNCH_CWD")LAUNCH_CWDto this captured literal; do not recalculate it after visiting another directory. - Resolve the topic (this is where the quality comes from — borrowed
from last30days' pre-research idea). Don't search raw keywords; first
name the concrete entities:
- people → exact @handles (X/GitHub/Bluesky)
- communities → exact subreddits (r/…), HN, specific orgs
- repos →
owner/name - is this a forecastable event? → Polymarket is worth including
- is this a skills/tech-trend question? → the hiring channel shows
whether the job market is heating up on it (resolve the query to 1–2
sharp terms, e.g.
RAG,context engineering, not a long phrase)
- Pick channels + aim each one. Decide which of the 18 connectors run and why each — which channel covers which facet. Write a per-channel query where the default topic string isn't the sharpest aim.
- Name the contradictions you expect to test — the value of the run is in the disagreements, so say up front what tension you're probing.
- Show the compact plan, then reserve exactly one run directory through
the runner. Use the resolved topic, not an unexpanded placeholder:
The default owner is the launch directory's Git top-level, or the captured launch directory outside Git. If a monorepo's Git root is broader than the actual project, pass the intended owner explicitly during allocation:LAUNCH_CWD="/absolute/path/printed-in-step-1" SKILL_DIR="/absolute/directory/containing/the/loaded/SKILL.md" SCRIPT="$SKILL_DIR/scripts/deep-research.py" TOPIC="RESOLVED TOPIC" RUN_DIR="$(cd "$LAUNCH_CWD" && python3 "$SCRIPT" "$TOPIC" \ --allocate-run --launch-cwd "$LAUNCH_CWD")" printf 'run_dir=%s\n' "$RUN_DIR"
Allocation writes onlyLAUNCH_CWD="/absolute/path/printed-in-step-1" SKILL_DIR="/absolute/directory/containing/the/loaded/SKILL.md" SCRIPT="$SKILL_DIR/scripts/deep-research.py" TOPIC="RESOLVED TOPIC" PROJECT_ROOT="/absolute/path/to/intended/project" RUN_DIR="$(cd "$LAUNCH_CWD" && python3 "$SCRIPT" "$TOPIC" \ --allocate-run --launch-cwd "$LAUNCH_CWD" \ --project-root "$PROJECT_ROOT")" printf 'run_dir=%s\n' "$RUN_DIR"_topic.txt, which binds the reservation to the exact topic. It does not start connectors. - Write
research-plan.mdinside the absolute run path printed in step 5 before starting connectors. Use the normal file-writing tool, not a placeholder shell echo. The plan must name the resolved topic/entities, research questions and scope, selected channels with rationale, exact per-channel queries, expected contradictions, and what evidence would answer the request. Record the captured launch directory and any explicit project-root choice. - Run connectors into that exact directory. Do not allocate a second run
and do not derive a path independently:
AddLAUNCH_CWD="/absolute/path/printed-in-step-1" SKILL_DIR="/absolute/directory/containing/the/loaded/SKILL.md" SCRIPT="$SKILL_DIR/scripts/deep-research.py" TOPIC="RESOLVED TOPIC" RUN_DIR="/absolute/path/printed-in-step-5" (cd "$LAUNCH_CWD" && python3 "$SCRIPT" "$TOPIC" \ --launch-cwd "$LAUNCH_CWD" --output-dir "$RUN_DIR" --prepared-run)--only,--skip, and repeated--q name:queryoptions from the written plan. Afterward, read the reports and writesynthesis.mdbesideresearch-plan.md; if a brief is useful, render it there too:SKILL_DIR="/absolute/directory/containing/the/loaded/SKILL.md" SCRIPT="$SKILL_DIR/scripts/deep-research.py" RUN_DIR="/absolute/path/printed-in-step-5" python3 "$SCRIPT" --render-html "$RUN_DIR/synthesis.md" \ --html-out "$RUN_DIR/brief.html"
What ships with it
45 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- scripts/connectors/__init__.py 2.0 KB runs code
- scripts/connectors/launch_radar.py 13 KB runs code
- scripts/connectors/meta_ads.py 8.8 KB runs code
- scripts/connectors/revenue_radar.py 9.7 KB runs code
- scripts/connectors/telegram.py 12 KB runs code
- scripts/connectors/threads.py 12 KB runs code
- scripts/connectors/tiktok_ig.py 14 KB runs code
- scripts/connectors/youtube.py 31 KB runs code
- scripts/deep-research.py 93 KB runs code
- scripts/detect_state.py 16 KB runs code
- scripts/entity_fanout.py 43 KB runs code
- scripts/eval_harness.py 27 KB runs code
- scripts/investigate_feedback.py 7.3 KB runs code
- scripts/media_backend.py 21 KB runs code
- scripts/output_paths.py 7.2 KB runs code
- scripts/provenance.py 10 KB runs code
- scripts/selftest.sh 17 KB runs code
- scripts/signals.py 5.9 KB runs code
- scripts/term_ui.py 15 KB runs code
- tests/test_coverage_receipts.py 9.8 KB runs code
- tests/test_detect_state.py 21 KB runs code
- tests/test_entity_enumerate.py 8.8 KB runs code
- tests/test_entity_fanout.py 27 KB runs code
- tests/test_entity_matrix.py 12 KB runs code
- tests/test_eval_harness.py 25 KB runs code
- tests/test_fire.py 22 KB runs code
- tests/test_freshness.py 9.3 KB runs code
- tests/test_github_issues.py 12 KB runs code
- tests/test_investigate_feedback.py 15 KB runs code
- tests/test_launch_radar.py 15 KB runs code
- tests/test_media_backend.py 23 KB runs code
- tests/test_meta_ads.py 12 KB runs code
- tests/test_openrouter_routing.py 15 KB runs code
- tests/test_output_paths.py 23 KB runs code
- tests/test_provenance.py 8.9 KB runs code
- tests/test_ranking.py 8.3 KB runs code
- tests/test_reddit_arctic_shift.py 16 KB runs code
- tests/test_revenue_radar.py 13 KB runs code
- tests/test_runner_board.py 13 KB runs code
- tests/test_signals.py 12 KB runs code
- tests/test_telegram.py 13 KB runs code
- tests/test_term_ui.py 18 KB runs code
- tests/test_threads.py 14 KB runs code
- tests/test_tiktok_ig.py 13 KB runs code
- tests/test_youtube.py 41 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 800 lines · 209 tokens per session scan B ea499642b211
deep-research is a skill published in the GitHub repository zbs-gg/zbs-researcher (4 stars, last pushed 24d ago), licensed MIT. It adds 209 tokens to every session and 11,851 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…