/api-watch
Analyze a video URL or local file using the eyeroll hosted API.
$ npx -y skills add mnvsk97/eyeroll --agent claude-codeHow 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
/api-watch
Context preview
What this command does when you run it.
Analyze a video URL or local file using the eyeroll hosted API.
Command definition
api-watch.mdAnalyze a video URL or local file using the eyeroll hosted API.
Usage
/eyeroll:api-watch <url-or-path> [context]
What this does
1. Reads `EYEROLL_API_URL` from the environment, defaulting to the hosted API URL 2. POSTs the source and optional context to `/api/watch` 3. Returns intent, repo guess, handoff recommendation, confidence, and the structured markdown report
Steps
1. Set `EYEROLL_API_URL` to `https://api.eyeroll.dev` if not already set.
2. Call the hosted API. Authentication is handled by the deployment platform, not by eyeroll API keys.
3. Run:
curl -s -X POST "$EYEROLL_API_URL/api/watch" \
-H "Content-Type: application/json" \
-d "{\"source\": \"$ARGUMENTS\", \"context\": null}"4. Display the structured response:
- intent
- repo_guess
- handoff_recommended
- confidence
- report
5. If the response status is 401 or 403, tell the user the hosted endpoint authentication is blocking the request and they should authenticate through the TrueFoundry-protected route.
AI eyes that roll through video footage — watch, understand, act. eyeroll is a Claude Code plugin that analyzes screen recordings, Loom videos, YouTube links, and screenshots, then helps coding agents fix bugs, build features, and create skills.
Other commands on eyeroll.
- /fix
Watch a bug video, diagnose the issue, fix the code, and raise a PR
Open command - /history
List past video analyses from the cache
Open command - /init
Set up eyeroll for this project — pick a backend, install dependencies, and generate codebase context
Open command - /watch
Analyze a video, screen recording, or screenshot and produce a structured report
Open command

