Agentic video understanding
Hireable understanding layer. The model takes a goal and decides what to watch, at what speed, and through which modality (frames, audio, transcript), fetching only the moments needed. Vendor claims: up to ~66% lower cost and ~88% fewer tokens vs static fixed-FPS ingest, with higher accuracy.
What this is / is not
Is: goal → watch only what you need → timestamps + quotes + confidence.
Is not: a video editor. Do not cut, overlay, caption-burn, render, schedule, post, email, or write CRM from this skill. Hand cuts to Overlap, FFmpeg, or net-new-video-editor. Approvals stay with the calling lane.
When to use
- Pre-call / sales-call mining: buyer objection, next step, competitive mention
- Shortform scoring: find a 3-second standalone hook and in/out points
- Longform / X research: named-person + contrast moments in podcast or YouTube tape
- Talent review: bar evidence in a Loom or trial recording
- Client audit: every mention of a keyword across a discovery recording
Skip when the job is already a clean transcript and you only need text search.
Inputs
| Field |
Required |
Notes |
source |
yes |
URL or local media path the runtime can read |
goal |
yes |
One sentence retrieval goal |
keywords |
no |
Extra strings to bias retrieval |
max_moments |
no |
Default 5 |
modality |
no |
auto (default), frames, audio, or transcript |
Process
- Restate the goal as 1–3 retrieval queries. Done when each query is falsifiable (you would know if a moment matched).
- Call Gemini agentic video understanding (Gemini API or AI Studio) with
source, queries, max_moments, and modality preference. Prefer the agentic path over fixed-FPS full ingest when available. Done when the API returns candidate windows or an explicit empty set.
- Normalize moments into the output schema below. Flag paraphrase vs verbatim. Drop fabricated timestamps. Done when every kept moment has
t_start, t_end, modality, quote, why, confidence.
- Stop and hand off to the caller. Do not cut, overlay, schedule, publish, email, or CRM-write.
Output schema
Markdown for humans, optional JSON for machines:
{
"goal": "",
"source": "",
"moments": [
{
"t_start": "MM:SS",
"t_end": "MM:SS",
"modality": "frames|audio|transcript",
"quote": "",
"verbatim": true,
"why": "",
"confidence": 0.0
}
],
"empty_reason": null,
"tokens_note": "agentic path used|fallback static ingest"
}
Hard gates
- No full fixed-FPS ingest when the agentic path is available
- No invented timestamps or quotes
- No dumping full transcripts or client PII into public artifacts
- No cut / render / overlay / schedule / publish / send from this skill
Setup
- Gemini API key or Google AI Studio access: https://ai.studio
- See Google’s developer guide for agentic video understanding in Gemini
- Env:
GEMINI_API_KEY (or the project’s existing Google AI credential)
Caller one-liners
- Pre-call:
goal="exact next-step commitment and any pricing pushback"
- Shortform:
goal="best 3-second standalone hook; return in/out for one clip"
- Talent:
goal="evidence they hit the role bar on X; max 5 moments"
- Audit:
goal="every mention of Reddit, AEO, or budget"
Completion
Done when the caller has the schema above (or a documented empty set) and this skill has performed no side effects beyond the Gemini read.
1---2name: agentic-video-understanding3description: Use when an agent must extract moments, quotes, objections, hooks, or evidence from long video or audio cheaper than full-frame ingest — sales calls, podcasts, YouTube episodes, Loom trials, discovery recordings. Goal-directed watch via Gemini agentic video understanding (frames, audio, or transcript). Not for cutting, overlays, rendering, scheduling, or publishing.4---56# Agentic video understanding78Hireable understanding layer. The model takes a goal and decides what to watch, at what speed, and through which modality (frames, audio, transcript), fetching only the moments needed. Vendor claims: up to ~66% lower cost and ~88% fewer tokens vs static fixed-FPS ingest, with higher accuracy.910## What this is / is not1112**Is:** goal → watch only what you need → timestamps + quotes + confidence.1314**Is not:** a video editor. Do not cut, overlay, caption-burn, render, schedule, post, email, or write CRM from this skill. Hand cuts to Overlap, FFmpeg, or `net-new-video-editor`. Approvals stay with the calling lane.1516## When to use1718- Pre-call / sales-call mining: buyer objection, next step, competitive mention19- Shortform scoring: find a 3-second standalone hook and in/out points20- Longform / X research: named-person + contrast moments in podcast or YouTube tape21- Talent review: bar evidence in a Loom or trial recording22- Client audit: every mention of a keyword across a discovery recording2324Skip when the job is already a clean transcript and you only need text search.2526## Inputs2728| Field | Required | Notes |29|-------|----------|-------|30| `source` | yes | URL or local media path the runtime can read |31| `goal` | yes | One sentence retrieval goal |32| `keywords` | no | Extra strings to bias retrieval |33| `max_moments` | no | Default 5 |34| `modality` | no | `auto` (default), `frames`, `audio`, or `transcript` |3536## Process37381. **Restate the goal** as 1–3 retrieval queries. Done when each query is falsifiable (you would know if a moment matched).392. **Call Gemini agentic video understanding** (Gemini API or AI Studio) with `source`, queries, `max_moments`, and modality preference. Prefer the agentic path over fixed-FPS full ingest when available. Done when the API returns candidate windows or an explicit empty set.403. **Normalize moments** into the output schema below. Flag paraphrase vs verbatim. Drop fabricated timestamps. Done when every kept moment has `t_start`, `t_end`, `modality`, `quote`, `why`, `confidence`.414. **Stop and hand off** to the caller. Do not cut, overlay, schedule, publish, email, or CRM-write.4243## Output schema4445Markdown for humans, optional JSON for machines:4647```json48{49 "goal": "",50 "source": "",51 "moments": [52 {53 "t_start": "MM:SS",54 "t_end": "MM:SS",55 "modality": "frames|audio|transcript",56 "quote": "",57 "verbatim": true,58 "why": "",59 "confidence": 0.060 }61 ],62 "empty_reason": null,63 "tokens_note": "agentic path used|fallback static ingest"64}65```6667## Hard gates6869- No full fixed-FPS ingest when the agentic path is available70- No invented timestamps or quotes71- No dumping full transcripts or client PII into public artifacts72- No cut / render / overlay / schedule / publish / send from this skill7374## Setup7576- Gemini API key or Google AI Studio access: https://ai.studio77- See Google’s developer guide for agentic video understanding in Gemini78- Env: `GEMINI_API_KEY` (or the project’s existing Google AI credential)7980## Caller one-liners8182- Pre-call: `goal="exact next-step commitment and any pricing pushback"`83- Shortform: `goal="best 3-second standalone hook; return in/out for one clip"`84- Talent: `goal="evidence they hit the role bar on X; max 5 moments"`85- Audit: `goal="every mention of Reddit, AEO, or budget"`8687## Completion8889Done when the caller has the schema above (or a documented empty set) and this skill has performed no side effects beyond the Gemini read.