Loading...
Loading...
Fetch and extract content from web pages, converting HTML to clean markdown. Use when users want to read web articles, extract information from URLs, scrape web content, or when the built-in WebFetch tool fails due to network restrictions. Trigger when user provides URLs to read, asks to fetch web content, or needs to extract text from websites.
npx skill4agent add zephyrwang6/myskill web-scraperpython3 scripts/fetch_url.py <url> [options]--timeout <seconds>--max-length <chars>--rawpython3 scripts/fetch_url.py "https://example.com/article"python3 scripts/fetch_url.py "https://example.com/article" --timeout 60for url in "https://url1.com" "https://url2.com"; do
python3 scripts/fetch_url.py "$url" &
done
waitfetch_url.py######-1.**bold***italic*--timeout 60