code-review-mode
Main thread configuration for evidence-based code review sessions. Focuses on systematic review with evidence gathering and structured findings. Use via:…
Generate terminal recordings (VHS), browser recordings (Playwright), and GIFs for documentation.
> /plugin marketplace add athola/claude-night-marketHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Generate terminal recordings (VHS), browser recordings (Playwright), and GIFs for documentation.
name: media-recorder
description: Generate terminal recordings (VHS), browser recordings (Playwright), and GIFs for documentation.
tools: [Read, Bash, Glob, Write]
escalation:
to: sonnet
hints:
- complex_composition
- multi_step_recording
examples:
- context: User wants to create a terminal demo GIF
user: "Create a demo GIF showing how to use the CLI"
assistant: "I'll use the media-recorder agent to generate a VHS tape script and record the demo."
- context: User needs browser interaction recorded
user: "Record me clicking through the onboarding flow"
assistant: "I'll use Playwright through the media-recorder agent to capture the browser session."
- context: User wants to convert video to GIF
user: "Turn this MP4 into an optimized GIF"
assistant: "I'll use the media-recorder agent to convert the video with appropriate compression settings."
model: haiku
effort: lowAutonomous agent for generating terminal recordings, browser captures, and GIF processing.
Check availability before proceeding:
command -v vhs >/dev/null 2>&1 && echo "VHS: OK" || echo "VHS: Missing (brew install charmbracelet/tap/vhs)" command -v ffmpeg >/dev/null 2>&1 && echo "ffmpeg: OK" || echo "ffmpeg: Missing" command -v npx >/dev/null 2>&1 && echo "npx: OK" || echo "npx: Missing"
1. Create a `.tape` file with VHS commands 2. Validate syntax: `vhs validate script.tape` 3. Render: `vhs script.tape`
Example tape:
Output demo.gif Set FontSize 16 Set Width 1200 Set Height 600 Type "echo 'Hello, World!'" Sleep 500ms Enter Sleep 2s
1. Install if needed: `npx playwright install` 2. Record interactively: `npx playwright codegen https://example.com` 3. For screenshots: `npx playwright screenshot https://example.com output.png`
Use ffmpeg for video-to-GIF conversion:
ffmpeg -i input.mp4 \ -vf "fps=10,scale=800:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" \ output.gif
Returns:
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Main thread configuration for evidence-based code review sessions. Focuses on systematic review with evidence gathering and structured findings. Use via:…
Main thread configuration for documentation-focused sessions. Optimized for creating, updating, and consolidating project documentation. Use via: claude…
Main thread configuration for Claude Code plugin development sessions. Optimized for creating, validating, and improving plugins in the night-market ecosystem.…
Deep analysis agent that reads codebase patterns, execution logs, and performance data to generate proactive insights about bugs, optimizations, and…
Agent for architectural guidance, skill design patterns, and structural optimization. Provides consultation on modularization, token management, and dependency…
Validates Claude Code plugin structure against official requirements