deep-research

deep-research is a command for Claude Code from MarcosNahuel/antigravity-plugin-cc. It costs 149 tokens per session (2,381 once invoked), scanned A, original, MIT.

A command for multi-source, fact-checked web research with Antigravity. It gathers evidence from several angles, checks whether the research is complete, challenges important claims, and produces a report.

In plain words
What is it for?
Use it for architecture, tool, vendor, or other decisions that need thorough online research before action.
Why use it?
It is meant for decisions where a quick lookup may miss conflicting information or important evidence. The process can be run at different depths and can require approval of its research plan.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the antigravity plugin — 2 skills, 22 commands, 1 agent shipped together

Good fit Use it for architecture, tool, vendor, or other decisions that need thorough online research before action.

Compare 6 commands from other repositories ↓
Install

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.

Claude Code
/plugin marketplace add MarcosNahuel/antigravity-plugin-cc
Claude Code
/plugin install antigravity

Made for: Claude Code.

Or install antigravity, the plugin that ships this one along with the rest of its 2 skills, 22 commands, 1 agent.

Wrote 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.

agentmods badge for deep-research

README.md
[![agentmods](https://agentmods.dev/badge/commands/marcosnahuel/antigravity-plugin-cc/deep-research.svg)](https://agentmods.dev/commands/marcosnahuel/antigravity-plugin-cc/deep-research)
Your own site
<a href="https://agentmods.dev/commands/marcosnahuel/antigravity-plugin-cc/deep-research"><img src="https://agentmods.dev/badge/commands/marcosnahuel/antigravity-plugin-cc/deep-research.svg" alt="Measured on agentmods" height="20"></a>
Per session 149 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,381 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00149 $0.02381
Opus 5 $0.00075 $0.01190
Sonnet 5 $0.00030 $0.00476
Haiku 4.5 $0.00015 $0.00238

Measured 7d ago against content hash d12a6e4d82e3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

deep-research scanned grade A with 0 findings 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 7d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/antigravity/commands/deep-research.md · 146 lines

How it starts

The opening of the file, as written. The whole thing — 146 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Deep research command. Does not replace /agy:research (that one is a fast single-shot lookup) — this one drives a multi-round loop through the deep-research-agy Workflow: agy browses several angles one at a time per round (never in parallel — see Notes), Claude judges coverage and convergence between rounds, a red-team pass challenges the central/single-source claims, and only then does synthesis produce the final report.

Raw user request: $ARGUMENTS

Step 1 — Parse + preflight (ONE Bash call)

  • --depth L|H (default L). H runs up to 4 rounds instead of 2, red-teams up to 10 claims instead of 5, and allows longer per-angle timeouts (4m vs 3m) — reserve it for topics that need real convergence (contradictory sources, a recommendation that must survive red-teaming), not quick lookups.

  • --background runs the Workflow with run_in_background: true and implies --yes (you can't approve a plan you won't be watching).

  • --yes skips the plan gate (Step 3) and goes straight to Step 4.

  • --engines agy|mixed (default agy). mixed is currently accepted but behaves identically to agy — there is no second browsing engine wired in yet. If the user asks what mixed does, say this plainly; don't imply real engine diversity that doesn't exist.

  • Strip all flags above from $ARGUMENTS; what remains, trimmed, is <topic>. If empty, ask once: "What should I deep-research?" and stop.

  • Build SLUG from <topic> (lowercase, non-alphanumeric → -, collapse repeats, trim to 60 chars) and DATE = today, ISO YYYY-MM-DD.

  • WRITE_FILE = absolute path to docs/agy/research/<DATE>-<SLUG>.md. DEEP_DIR = absolute path to docs/agy/research/.deep/<DATE>-<SLUG>.

  • One Bash call does the preflight + scaffolding together — agy presence check, then both mkdir -p:

    mkdir -p "docs/agy/research/.deep/<DATE>-<SLUG>"
    command -v agy >/dev/null 2>&1 && agy --version || echo "AGY_MISSING"
    

    If the output is AGY_MISSING, tell the user to run /agy:setup first and stop — don't launch a multi-round Workflow (several minutes, several agy calls) against a broken/missing agy.

Read the full file on GitHub · 146 lines

Changes

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.

  1. 7d ago First seen · 146 lines · 149 tokens per session scan A d12a6e4d82e3

Subscribe to this mod's changes

deep-research is a command published in the GitHub repository MarcosNahuel/antigravity-plugin-cc (27 stars, last pushed 22d ago), licensed MIT. It adds 149 tokens to every session and 2,381 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.