Loading...
Loading...
Fetch, extract, and summarize content from URLs. Use when: (1) user shares a link and wants a summary, (2) you need to gather information from web pages, (3) researching topics that require reading articles or documentation, (4) extracting code snippets or technical content from websites.
npx skill4agent add winsorllc/upgraded-carnival link-scrapernode /job/.pi/skills/link-scraper/scrape.js "https://example.com/article"node /job/.pi/skills/link-scraper/scrape.js "https://example.com/page1" "https://example.com/page2"node /job/.pi/skills/link-scraper/scrape.js --title "https://example.com"node /job/.pi/skills/link-scraper/scrape.js --full "https://example.com"node /job/.pi/skills/link-scraper/scrape.js --selector "article" "https://example.com/blog"{
"url": "https://example.com/article",
"title": "Article Title",
"description": "Brief description of the page...",
"content": "Main content extracted from the page...",
"wordCount": 500,
"links": ["https://example.com/related1", "https://example.com/related2"],
"images": ["https://example.com/image1.jpg"],
"siteName": "Example Site"
}{
"url": "https://example.com/article",
"title": "Article Title",
"summary": "A concise 2-3 sentence summary of the article...",
"keyPoints": [
"First key point from the article",
"Second key point",
"Third key point"
],
"wordCount": 500,
"readTime": "2 min"
}User: Check out https://github.com/openclaw/openclaw for me
Agent: [Uses link-scraper to fetch and summarize]User: Find information about AI agents
Agent: [Uses link-scraper to fetch relevant articles, documentation, etc.]User: How do I use the GitHub API? https://docs.github.com/en/rest
Agent: [Uses link-scraper with --selector to extract code examples]