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 skills add biggora/claude-plugins-registry --skill screen-recordinggit clone --depth 1 https://github.com/biggora/claude-plugins-registryWrote 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/skills/biggora/claude-plugins-registry/screen-recording)<a href="https://agentmods.dev/skills/biggora/claude-plugins-registry/screen-recording"><img src="https://agentmods.dev/badge/skills/biggora/claude-plugins-registry/screen-recording.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.00128 | $0.03154 |
| Opus 5 | $0.00064 | $0.01577 |
| Sonnet 5 | $0.00026 | $0.00631 |
| Haiku 4.5 | $0.00013 | $0.00315 |
Grade B, and why
screen-recording scanned grade B with 2 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 7d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
| Ubuntu/Debian | `sudo apt install ffmpeg` | Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
proc = subprocess.Popen(cmd, stderr=subprocess.PIPE) How it starts
The opening of the file, as written. The whole thing — 332 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Requires FFmpeg for primary recording. Install:
choco install ffmpeg(Windows),brew install ffmpeg(macOS),apt install ffmpeg(Linux). Python fallback available if FFmpeg is not installed (no audio/cursor).
Screen Recording Skill
Record the actual screen — full desktop, a specific region, or a named window — to MP4 video with optional audio and cursor capture.
What this skill does
- Screen recording — capture what's actually on screen (primary purpose)
- Region/window recording — capture a specific area or application window
- Audio capture — record system audio alongside video
- Synthetic video generation — create animated demo videos programmatically (secondary)
Quick Start
Record full screen for 30 seconds
import platform, subprocess, shutil, signal, os
def record_screen(output="recording.mp4", duration=30, fps=30, audio=False):
system = platform.system()
cmd = ["ffmpeg"]
if system == "Windows":
if audio:
cmd += ["-f", "dshow", "-i", "audio=Stereo Mix"]
cmd += ["-f", "gdigrab", "-framerate", str(fps), "-draw_mouse", "1",
"-i", "desktop"]
elif system == "Darwin":
devices = "0" if not audio else "0:1"
cmd += ["-f", "avfoundation", "-framerate", str(fps),
"-capture_cursor", "1", "-i", devices]
else: # Linux
if audio:
cmd += ["-f", "pulse", "-i", "default"]
display = os.environ.get("DISPLAY", ":0.0")
cmd += ["-f", "x11grab", "-framerate", str(fps), "-draw_mouse", "1",
"-i", display]
cmd += ["-c:v", "libx264", "-preset", "ultrafast", "-crf", "23",
"-pix_fmt", "yuv420p"]
if audio:
cmd += ["-c:a", "aac", "-b:a", "128k"]
if duration:
cmd += ["-t", str(duration)]
cmd += [output, "-y"]
print(f"Recording → {output}")
proc = subprocess.Popen(cmd, stderr=subprocess.PIPE)
try:
proc.wait()
except KeyboardInterrupt:
proc.send_signal(signal.SIGINT)
proc.wait()
print(f"Saved: {output} ({os.path.getsize(output):,} bytes)")
return output
record_screen("recording.mp4", duration=30)
What ships with it
4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 7d ago First seen · 332 lines · 128 tokens per session scan B fe9eda64611d
screen-recording is a skill published in the GitHub repository biggora/claude-plugins-registry (2 stars, last pushed 9d ago), licensed MIT. It adds 128 tokens to every session and 3,154 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
webgl-holographic-foil
A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.
general-video
Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…
html-ppt-hermes-cyber-terminal
OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.
html-ppt-taste-brutalist
16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).
diagnostic-stem-delivery
Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.
chengfeng-check-updates
An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.