Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Give your agent the ability to instantly take screenshots of any website with just the URL. Cloud-based so your agent has to perform no work. Free forever, open source.
Give your agent the ability to instantly take screenshots of any website with just the URL. Cloud-based so your agent has to perform no work. Free forever, open source.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Free screenshot API at https://snap.llm.kaveenk.com. POST a URL, get a PNG/JPEG back. Powered by headless Chromium.
curl -s -X POST https://snap.llm.kaveenk.com/api/register \ -H "Content-Type: application/json" \ -d '{"name":"my-agent"}' Response: {"key":"snap_abc123...","name":"my-agent","limits":{"per_minute":2,"per_day":200}} IMPORTANT: Store key securely. It cannot be recovered. Each IP address can only register one API key.
curl -s -X POST https://snap.llm.kaveenk.com/api/screenshot \ -H "Authorization: Bearer snap_yourkey" \ -H "Content-Type: application/json" \ -d '{"url":"https://example.com"}' \ -o screenshot.png That's it. Two steps.
All options go in the POST body alongside url: OptionTypeDefaultDescriptionurlstringrequiredURL to screenshotformatstring"png""png" or "jpeg"full_pagebooleanfalseCapture entire scrollable pagewidthinteger1280Viewport width (pixels)heightinteger720Viewport height (pixels)dark_modebooleanfalseEmulate dark color schemeselectorstring—CSS selector to screenshot specific elementwait_msinteger0Extra wait time after page load (max 10000)scalenumber1Device scale factor (1-3, for retina)cookiesarray—Array of {name, value, domain} objectsheadersobject—Custom HTTP headersblock_adsbooleanfalseBlock common ad/tracker domains
2 screenshots per minute per key 200 screenshots per day per key 1 API key per IP address Max page height: 16384px (full-page mode) Max screenshot size: 10MB
200: PNG or JPEG image binary 400: Invalid request (missing URL, invalid options) 401: Missing or invalid API key 409: IP already has an API key (on registration) 429: Rate limit exceeded 500: Internal error
curl -s -X POST https://snap.llm.kaveenk.com/api/screenshot \ -H "Authorization: Bearer snap_yourkey" \ -H "Content-Type: application/json" \ -d '{ "url": "https://example.com", "format": "jpeg", "full_page": true, "width": 1920, "height": 1080, "dark_mode": true, "wait_ms": 2000, "block_ads": true }' \ -o screenshot.jpg
import requests API = "https://snap.llm.kaveenk.com" # Register (one-time) r = requests.post(f"{API}/api/register", json={"name": "my-agent"}) key = r.json()["key"] # Screenshot r = requests.post(f"{API}/api/screenshot", headers={"Authorization": f"Bearer {key}"}, json={"url": "https://example.com", "full_page": True}) with open("shot.png", "wb") as f: f.write(r.content)
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.