Scrape
Use this skill when the user asks to pull data from a page, table, listing, or web app.
Workflow
- Clarify the target URL and desired fields if not obvious.
- Use the safest read-only inspection path:
@Browserfor public/local unauthenticated pages@Chromeonly when signed-in browser state is required and approved- web fetch or repo-local fixtures when rendered interaction is unnecessary
- Extract only the requested data.
- Return JSON or a table with source notes.
- If the flow is useful and repeated, suggest
skillifyto preserve it as a reusable browser skill.
Guardrails
- Treat scraping as read-only.
- Respect authentication boundaries and site terms.
- Do not fabricate missing fields.
- Include selectors, URLs, or evidence notes when the extraction may need to be repeated.