Borrowing it
Nothing to install: this file belongs to jhartquist/claude-remotion-kickstart. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/jhartquist/claude-remotion-kickstart/main/.claude/commands/screenshot.mdgit clone --depth 1 https://github.com/jhartquist/claude-remotion-kickstartWrote 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/jhartquist/claude-remotion-kickstart/screenshot)<a href="https://agentmods.dev/commands/jhartquist/claude-remotion-kickstart/screenshot"><img src="https://agentmods.dev/badge/commands/jhartquist/claude-remotion-kickstart/screenshot/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/jhartquist/claude-remotion-kickstart/screenshot"><img src="https://agentmods.dev/badge/commands/jhartquist/claude-remotion-kickstart/screenshot.svg" alt="Reviewed on agentmods" width="80" 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.00011 | $0.00604 |
| Opus 5 | $0.00005 | $0.00302 |
| Sonnet 5 | $0.00002 | $0.00121 |
| Haiku 4.5 | $0.00001 | $0.00060 |
Grade A, and why
screenshot 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 10d 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 — 75 lines — stays where its author put it; the contents beside it link to each section on GitHub.
context
This command uses the Playwright MCP server to navigate to any URL, resize the viewport to 1280x720, and take screenshots.
Screenshots are automatically saved to public/screenshots/ for use in the project.
task
Take screenshots of the URL provided in $1, following any special instructions in $2:
-
Parse arguments:
- $1: URL to navigate to (required)
- $2: Special instructions (optional) - e.g., "scroll to bottom", "click login button", "wait 5 seconds"
-
Navigate and resize:
- Navigate to the URL using
mcp__playwright__browser_navigate - Resize viewport to 1280x720 using
mcp__playwright__browser_resize
- Navigate to the URL using
-
Follow special instructions (if provided):
- If $2 contains instructions, execute them using appropriate Playwright tools
- Examples: clicking elements, scrolling, waiting, typing text, etc.
-
Take screenshots:
- Take viewport screenshot:
mcp__playwright__browser_take_screenshot- filename:
public/screenshots/viewport-{timestamp}.png
- filename:
- Take full page screenshot:
mcp__playwright__browser_take_screenshot- filename:
public/screenshots/fullpage-{timestamp}.png - fullPage: true
- filename:
- Take viewport screenshot:
-
Move screenshots to correct location:
- Playwright saves to
.playwright-mcp/public/screenshots/by default - Create
public/screenshots/if it doesn't exist - Move all PNG files from
.playwright-mcp/public/screenshots/topublic/screenshots/ - Command:
mkdir -p public/screenshots && mv .playwright-mcp/public/screenshots/*.png public/screenshots/
- Playwright saves to
-
Confirm completion:
- List the screenshots that were saved
- Show the full paths to the screenshot files
examples
Basic screenshot:
/screenshot https://example.com
Screenshot with wait:
/screenshot http://localhost:3000 "wait 2 seconds"
Screenshot after clicking:
/screenshot https://example.com "click the login button"
Screenshot after scrolling:
/screenshot https://example.com "scroll to bottom"
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.
- 10d ago First seen · 75 lines · 0 tokens per session scan A 5887c7b14257
screenshot is a command published in the GitHub repository jhartquist/claude-remotion-kickstart (116 stars, last pushed 9mo ago), licensed MIT. It adds 11 tokens to every session and 604 once invoked, about $0.0001 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
record-demo
Guided Playwright browser recording.
webapp-testing
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
gh-issue-use-cypress
Like /gh-issue-use-browser, but pinned to the Cypress MCP — use when your project runs the Cypress MCP for browser automation. Example — /gh-issue-use-cypress "Composer > Save" saving toasts failure but the record persists.
qa
Smoke or browser-walk a running app. Report only. Do not implement. Do not merge.
verify-pr
Verify a PR's frontend changes through browser automation.
capture_full_page
Capture a full-page (entire scrollable page, beyond the viewport) or single-element screenshot through the Chrome debugger and save it under screenshots/. Unlike takescreenshot (viewport only, no debugger), this uses CDP to render the whole page or a specific element.