Skip to content
Development
Command

/research

Quick single-shot web research with agy at chosen intensity (low/medium/high) → docs/agy/research/. For fast lookups and lightweight source-gathering. When a decision depends on it and you need deep, multi-round, fact-checked research, use /agy:deep-research instead.

From plugin
marcosnahuel-antigravity-plugin-cc
2622 skills1 agent22 commands
Install
$ npx -y skills add MarcosNahuel/antigravity-plugin-cc --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/research

Context preview

What this command does when you run it.

Quick single-shot web research with agy at chosen intensity (low/medium/high) → docs/agy/research/. For fast lookups and lightweight source-gathering. When a decision depends on it and you need deep, multi-round, fact-checked research, use /agy:deep-research instead.

Command definition

research.md
description: Quick single-shot web research with agy at chosen intensity (low/medium/high) → docs/agy/research/. For fast lookups and lightweight source-gathering. When a decision depends on it and you need deep, multi-round, fact-checked research, use /agy:deep-research instead.
argument-hint: "[--background] [--intensity low|medium|high] <topic>"
context: fork
allowed-tools: Bash, Write

Route this to the `antigravity:agy-rescue` subagent in MODE: research.

Raw user request: $ARGUMENTS

Routing rules:

  • If the request contains `--background`, invoke the subagent with `run_in_background: true`. Research at `high` intensity can take 15–20min — background is the sensible default for that case but only when the user explicitly opted in. Strip the flag from the topic.
  • Parse `--intensity <low|medium|high>` from the user text. Default to `medium` if missing or invalid.
  • Strip the routing flags (`--background`, `--intensity`) from the user text. What remains IS the topic. Trim whitespace.
  • Build a slug from the topic: lowercase, replace non-alphanumeric with `-`, collapse repeated `-`, trim to 60 chars.
  • Compute today's date in `YYYY-MM-DD` (ISO, local time).
  • Compute `WRITE_FILE` = `docs/agy/research/<YYYY-MM-DD>-<slug>.md` (relative to the current working directory).
  • Before invoking the subagent, ensure the directory exists with one `Bash` call:
mkdir -p docs/agy/research

Pass this header block to the subagent followed by the topic:

MODE: research
INTENSITY: <low|medium|high>
MODEL:
RESUME: false
WRITE_FILE: docs/agy/research/<date>-<slug>.md
USER_TEXT:
<topic>

> **Note**: `--model` was rejected by `agy` 1.0.0/1.0.1 but is accepted again in **agy 1.0.5+**. This plugin defaults to omitting it, so `agy` picks the model from its own settings; intensity controls the timeout and prompt template only.

Operating rules:

  • The subagent wraps the topic in the intensity template, invokes agy with the right timeout (`low=3m`, `medium=8m`, `high=20m`), writes the result to `WRITE_FILE`, and returns:

1. The saved file path. 2. The first ~30 lines of agy's output (TL;DR / Executive summary).

  • Present that to the user as-is. Do not paraphrase.
  • If the user did not provide a topic, ask once: "What topic would you like to research?"
  • If agy reports it is missing or unauthenticated, tell the user to run `/agy:setup`.
Read more
Ships withmarcosnahuel-antigravity-plugin-cc

A local NotebookLM, multi-agent deep research, and 21 more commands — for Claude Code, powered by Google Antigravity (agy / Gemini 3.x), the official CLI that replaces the now-deprecated gemini-cli.

Get the whole plugin, auto-invoked
Stats
26
Stars
0
Views
6
Forks
Active
Maintenance
Python
Language
MIT
License
7d ago
Last commit
2mo ago
Created

Repo: MarcosNahuel/antigravity-plugin-cc