Web scraping
Skill lensetek/Digital-Marketing-Agent_Skills/capabilities/web-scraping
Digital-Marketing-Agent_Skills
npx -y skills add lensetek/Digital-Marketing-Agent_Skills --skill web-scrapingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.2 KB, as published. Nobody here has run it
Web Scraping Capability
When to Use
Use this capability to extract public structured data from web pages, such as product listings, headings, metadata, FAQ content, pricing tables, schema markup, or competitor landing page elements.
Preferred Implementation
- Use lightweight HTTP clients and HTML parsers for static pages.
- Dynamic Pages: For pages that require JavaScript rendering or interaction, use Chrome DevTools MCP (
chrome-devtools-mcp) tools (such aschrome-devtools/evaluate_scriptorchrome-devtools/take_snapshot) or Puppeteer/Playwright scripts first. - Prefer small, respectful, rate-limited, and task-specific extraction.
- Use Computer Use only if a page cannot be accessed with scripts and the user approves UI-based extraction.
Inputs
- URLs.
- Data fields to extract.
- Rate and scope limits.
- Allowed pages.
- Output format.
Outputs
- Extracted data table or JSON.
- Source URL per row.
- Extraction notes.
- Errors or missing fields.
- Data quality warnings.
Security and Ethics
- Scrape only public data or user-authorized data.
- Do not bypass access controls, CAPTCHAs, login gates, or paywalls.
- Do not collect credentials, private customer data, or sensitive personal data.
- Respect site terms and rate limits.