/SKILL.md
Use Scrappey to fetch and render web pages in a browser-backed session, run automated browser interactions, and extract HTML or structured JSON. Trigger this skill when Codex needs to load JavaScript-heavy or dynamically rendered pages, submit browser-backed GET or POST requests, reuse Scrappey sessions, apply proxies or retries, capture video for debugging, or use Scrappey autoparse with a target schema.
npx skillsauth add pim97/scrappey-skill scrappeyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use Scrappey via https://publisher.scrappey.com/api/v1?key=....
Prefer the bundled wrapper in scripts/invoke_scrappey.py so requests are reproducible and the API key stays in SCRAPPEY_API_KEY.
Set the API key in the shell:
$env:SCRAPPEY_API_KEY="your_api_key"
Run a browser-backed GET request:
python .\scripts\invoke_scrappey.py --cmd request.get --url https://example.com
Run a POST request with additional fields:
python .\scripts\invoke_scrappey.py `
--cmd request.post `
--url https://httpbin.org/post `
--data '{"customHeaders":{"content-type":"application/json"},"postData":{"hello":"world"}}'
Run a full payload file for browser actions or autoparse:
python .\scripts\invoke_scrappey.py --payload-file .\payload.json
request.get, request.post, browser actions, or autoparse.cmd and url, then add headers, cookies, referer setup, retries, proxy settings, or actions if the target requires them.scripts/invoke_scrappey.py instead of embedding the full request logic in every task.status, solution.statusCode, solution.currentUrl, and any returned body fields.Use for JS-rendered or dynamically loaded pages, or any target that a plain HTTP client cannot render correctly.
Use request.post with postData. Set customHeaders.content-type when sending JSON.
Use getUrl before a POST request when the target site expects a realistic referer or landing page.
Use browserActions when content appears only after UI interactions such as clicks, typing, waits, or scrolling.
Use autoparse: true with a structure schema when the user wants structured JSON instead of raw HTML.
SCRAPPEY_API_KEY; do not hardcode or commit credentials.scripts/invoke_scrappey.py: CLI wrapper around the Scrappey API.references/api-cheatsheet.md: Request shapes and field reminders.README.md: User-facing setup and usage instructions.development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.
development
End-to-end Parallels smoke, upgrade, and rerun workflow for OpenClaw across macOS, Windows, and Linux guests. Use when Codex needs to run, rerun, debug, or interpret VM-based install, onboarding, gateway smoke tests, latest-release-to-main upgrade checks, fresh snapshot retests, or optional Discord roundtrip verification under Parallels.