crawler
Installation
SKILL.md
Scout Crawler
Overview
The Scout Crawler is a versatile tool for extracting structured information from the web. It can fetch individual pages, render JavaScript-heavy sites, or recursively crawl an entire domain to build a knowledge base.
Core Tools
fetch_web_content: Fetches the clean, readable content of a single URL and returns it in Markdown format. Useful for quick information retrieval from articles or documentation.crawl_website: Automatically follows links from a starting URL to a specified depth and page count. Ideal for comprehensive domain analysis or preparing data for RAG (Retrieval-Augmented Generation).
Usage Guidelines
- Rule 1: Use JS Mode: Always keep
js_mode=truefor modern web applications (SPAs) like React or Vue sites to ensure content is fully rendered. - Rule 2: Respect Robots.txt: Be aware that excessive crawling can be blocked by servers. Use moderate
max_depthandmax_pagesfor broad crawls. - Rule 3: URL Precision: Ensure URLs include the scheme (e.g.,
https://).