web-scraping
Installation
SKILL.md
Web Scraping
Extract data with the lightest reliable method first.
Choose the approach
- Use
web_fetchfor simple public pages when the needed content is already in HTML. - Use
browserwhen the site is dynamic, needs clicking, infinite scroll, filters, tabs, or login/session state. - Use
web_searchonly to discover candidate pages when the target URL is unknown.