web-browse

Installation
SKILL.md

Web Browse

Fetch web pages and extract readable text content.

Quick fetch (raw HTML)

curl -sL "https://example.com" | head -200

Extract text with Python

curl -sL "https://example.com" | python3 -c "
import sys, html, re
raw = sys.stdin.read()
text = re.sub(r'<script[^>]*>.*?</script>', '', raw, flags=re.DOTALL)
text = re.sub(r'<style[^>]*>.*?</style>', '', text, flags=re.DOTALL)
text = re.sub(r'<[^>]+>', ' ', text)
Related skills

More from thinkfleetai/thinkfleet-engine

Installs
1
First Seen
Mar 1, 2026