Install
openclaw skills install @sangjie123/web-info-skillExtract and display useful information from web pages including title, meta description, headers, and links.
openclaw skills install @sangjie123/web-info-skillA lightweight web scraping skill that extracts structured information from any webpage.
# Basic usage
web-info https://example.com
# Get JSON output
web-info --json https://example.com
# Extract only links
web-info --links-only https://example.com
# Extract only headers
web-info --headers-only https://example.com
web-info https://news.ycombinator.com
web-info --json https://github.com > github-info.json
web-info --links-only https://example.com
The skill provides clean, formatted output:
Title: Example Domain
Description: Example meta description
URL: https://example.com
Headers:
H1: Example Domain
H2: More information
Links:
- Example Link (https://example.org)
- Another Link (https://example.net)
Images:
- logo.png (alt: "Company Logo")
Statistics:
- Word count: 150
- Links: 5
- Images: 2
curl (for fetching web pages)MIT-0 - Free to use, modify, and distribute