ask
One-shot prompt to Antigravity (agy) — quick question, returns response verbatim. No file persistence to docs/.
Ask a question over a notebook corpus you already built with /agy:notebook. agy answers from the per-document summaries (docs/agy/notebook/<folder>/*.resumen.md) with citations — the "chat" of a local NotebookLM. Cheap: reads only the small summaries, never the original
> /plugin marketplace add MarcosNahuel/antigravity-plugin-cc > /plugin install antigravity@marcosnahuel-antigravity
How it fires
How this command gets triggered: by you, by Claude, or both.
/notebook-askContext preview
What this command does when you run it.
Ask a question over a notebook corpus you already built with /agy:notebook. agy answers from the per-document summaries (docs/agy/notebook/<folder>/*.resumen.md) with citations — the "chat" of a local NotebookLM. Cheap: reads only the small summaries, never the original
description: Ask a question over a notebook corpus you already built with /agy:notebook. agy answers from the per-document summaries (docs/agy/notebook/<folder>/*.resumen.md) with citations — the "chat" of a local NotebookLM. Cheap: reads only the small summaries, never the original documents. argument-hint: "<folder> | <question>" context: fork allowed-tools: Bash, Read, Agent
Question-answering over a notebook corpus previously built by `/agy:notebook`. agy reads the small per-document summaries (not the originals) and answers **with citations**. Run `/agy:notebook <folder> | <objective>` first to build the corpus.
Raw user request: $ARGUMENTS
Parse `$ARGUMENTS`: split on the first `|`. Left = folder (the SAME folder used with `/agy:notebook`), right = question. If there is no `|`, the longest leading token that resolves to an existing directory is the folder and the rest is the question. If the question is empty, ask once and stop.
python - "$FOLDER_OR_SLUG" "$PREGUNTA" <<'PY'
import sys, os, re, glob, hashlib
folder, preg = sys.argv[1], (sys.argv[2] if len(sys.argv) > 2 else "")
def slug(s, n=60):
return (re.sub(r"[^a-z0-9]+","-", os.path.basename(s.rstrip("/\\")).lower()).strip("-") or "x")[:n]
outdir = os.path.join("docs","agy","notebook", slug(folder))
summ = glob.glob(os.path.join(outdir, "*.resumen.md"))
if not summ:
print(f"NO_CORPUS outdir={outdir}") # corpus not built yet
sys.exit(0)
ans_dir = os.path.join(outdir, "_respuestas"); os.makedirs(ans_dir, exist_ok=True)
qh = hashlib.sha1(preg.encode("utf-8")).hexdigest()[:6]
ans = os.path.join(ans_dir, f"{slug(preg, 40)}-{qh}.md")
print(f"OK SUMMARIES_DIR={os.path.abspath(outdir)} N={len(summ)} WRITE_FILE={os.path.abspath(ans)}")
PY`/agy:notebook "<folder>" | <objective>`, and stop.
Spawn ONE `antigravity:agy-rescue` subagent in **MODE: notebook-ask**:
MODE: notebook-ask CWD: <absolute current working dir> SUMMARIES_DIR: <SUMMARIES_DIR> PREGUNTA: <question> WRITE_FILE: <WRITE_FILE> USER_TEXT: (empty)
Read ONLY `<WRITE_FILE>` and present the answer verbatim, then note: how many summaries it drew from (`N`), and the saved path. Do NOT read the original documents or the per-document summaries yourself — agy already grounded the answer in them.
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.
Repo: MarcosNahuel/antigravity-plugin-cc
One-shot prompt to Antigravity (agy) — quick question, returns response verbatim. No file persistence to docs/.
Deep, multi-source, fact-checked web research with agy — reach for it when a decision or design depends on getting it right and a single-shot answer is not…
Run a UX/visual design audit of a URL using Antigravity (agy). Captures desktop + mobile screenshots, scores 10 dimensions (hierarchy, typography, color,…
Convert a PDF, docx, image, or other document to clean Markdown using Antigravity (agy) multimodal Gemini. Saves to docs/agy/converted/.
Build a knowledge GRAPH of a folder (code + docs) with Graphify — tree-sitter ASTs + NetworkX + Leiden communities + an interactive graph.html. The code graph…
Ask a question about an AUDIO, VIDEO or IMAGE file (or a YouTube/remote URL) with Antigravity (agy / Gemini 3.x multimodal). Beyond transcription — "what…