flyscrape
Installation
SKILL.md
Flyscrape
Flyscrape is a command-line web scraping tool that uses JavaScript scraping scripts. It's standalone (single binary), supports jQuery-like selectors, and can render JavaScript-heavy pages via headless browser.
Quick Reference
flyscrape new script.js # Create new script from template
flyscrape dev script.js # Dev mode: watch & re-run on changes (cached)
flyscrape run script.js # Run the scraper
flyscrape run script.js --url "http://example.com" --depth 3 # Override config via CLI
Script Structure
Every script has two parts: config (controls behavior) and default function (extracts data).