Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Fetch a URL and convert its web page content into clean Markdown for research, documentation, or knowledge base creation.
Fetch a URL and convert its web page content into clean Markdown for research, documentation, or knowledge base creation.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Fetches URLs and converts web pages to clean Markdown.
pip install requests beautifulsoup4 markdownify python3 -c "... fetching and converting URL ..."
curl -s URL | html2text wget -q -O - URL | pandoc -f html -t markdown
import requests from bs4 import BeautifulSoup from markdownify import markdownify as md def url_to_markdown(url, output_file=None): # ... fetch, parse, convert logic ... pass
def extract_article(html): soup = BeautifulSoup(html, 'html.parser') article = soup.find('article') or soup.find('main') return md(str(article)) if article else None
def preserve_code(html): # ... logic to wrap code in ``` ... pass
python url_to_markdown.py URL -o output.md
def safe_fetch(url, retries=3): # ... retry logic ... pass
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.