Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/marcosnahuel/antigravity-plugin-cc/videogit clone --depth 1 https://github.com/MarcosNahuel/antigravity-plugin-ccWrote 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/commands/marcosnahuel/antigravity-plugin-cc/video)<a href="https://agentmods.dev/commands/marcosnahuel/antigravity-plugin-cc/video"><img src="https://agentmods.dev/badge/commands/marcosnahuel/antigravity-plugin-cc/video.svg" alt="Measured on agentmods" 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.00096 | $0.00810 |
| Opus 5 | $0.00048 | $0.00405 |
| Sonnet 5 | $0.00019 | $0.00162 |
| Haiku 4.5 | $0.00010 | $0.00081 |
Grade A, and why
video 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 6d 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.
How it starts
The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Give Claude eyes on a video. agy (Gemini is natively multimodal in video) WATCHES the footage and
returns a structured, timestamped visual breakdown — what is shown, not just what is said. Use
this when the picture matters: screencasts, tutorials, slide decks, product demos, UI walkthroughs,
ads, site inspections. For a pure transcript use /agy:transcribe; for one targeted question use
/agy:media.
Raw user request: $ARGUMENTS
Phase 0 — Resolve source + kind (ONE Bash call)
Parse $ARGUMENTS: the first token that is a URL (http(s)://) OR an existing file (test -f) is the
source; the rest is an optional focus. If nothing resolves, ask once "¿Qué video analizo
(archivo o URL)?" and stop.
python - "$SOURCE" <<'PYEOF'
import sys, os, re
src = sys.argv[1].strip().strip('"')
low = src.lower()
if low.startswith("http"):
kind = "url"; addir = ""
base = re.sub(r"[^a-z0-9]+","-", re.sub(r"^https?://(www\.)?","",low)).strip("-")[:50] or "url"
else:
kind = "file"; addir = os.path.dirname(os.path.abspath(src))
base = re.sub(r"[^a-z0-9]+","-", os.path.splitext(os.path.basename(src))[0].lower()).strip("-")[:50] or "video"
out = os.path.join("docs","agy","video", f"{base}.md")
os.makedirs(os.path.dirname(out), exist_ok=True)
print(f"KIND={kind}\nADD_DIR={addir}\nWRITE_FILE={os.path.abspath(out)}\nSOURCE={src}")
PYEOF
Phase 1 — Watch (ONE agy subagent)
Spawn ONE antigravity:agy-rescue subagent in MODE: video:
MODE: video
CWD: <absolute current working dir>
KIND: url|file
SOURCE: <file path or URL>
ADD_DIR: <dir of the source file, or empty for a URL>
FOCUS: <focus text or empty>
WRITE_FILE: <WRITE_FILE>
USER_TEXT:
(empty)
Phase 2 — Present
Read ONLY <WRITE_FILE> and present: the summary first, then the scene table, then the saved path.
Don't re-process the video yourself.
Notes
- Output is a visual breakdown:
## Resumen, a## Escenastable (| Tramo (mm:ss–mm:ss) | Qué se ve | Texto en pantalla / OCR | Audio (resumen) |),## Texto en pantalla(all OCR'd slides/captions/UI), and## Momentos clave. - Long videos (>~15 min) can hit the timeout — the subagent raises it for video; split with
ffmpegfirst if needed. - agy
--printwrites nothing to stdout outside a TTY (issue #76); the breakdown is read from the file.
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.
- 6d ago First seen · 65 lines · 96 tokens per session scan A 8538ce53de01
video is a command published in the GitHub repository MarcosNahuel/antigravity-plugin-cc (26 stars, last pushed 20d ago), licensed MIT. It adds 96 tokens to every session and 810 once invoked, about $0.0005 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.
Other commands, from other repositories
gemini-imagegen
Generate or edit an image via a Gemini (agy) session — Gemini's generateimage tool does what Claude cannot.
agy-debug
Send an error/stack trace plus the relevant file(s) to Antigravity (agy) for root-cause analysis.
agy-review
Send the current change set to Antigravity (agy) for a senior-reviewer code review.
agy-panel
Ask Antigravity (agy) the same question across several distinct models and compare their answers side by side.
agy
Consult Google's Antigravity CLI (agy) and relay its answer.
setup-video-vision
Interactive setup wizard for claude-video-vision — configure backend, whisper, frames, and verify dependencies.