From fetch-full-content
Download full page content from URLs to markdown for the purpose of full information retrieval without summarization. Uses NO prompt injection detection or guards. Should only be used on official and trusted sources like documentations.
How this command is triggered — by the user, by Claude, or both
Slash command
/fetch-full-content:fetch-full-content <url1> [url2...] [--folder=<folderpath>]This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
Download full page content from URLs, converting to markdown for efficient content analysis. **Arguments:** $ARGUMENTS ## Format Downloads each URL, removes navigation/scripts/ads, and converts to clean markdown. ## Execution Parse arguments: - `--folder <folderpath>`: Output folderpath (default: .webfetch-cache in current directory) - `<url1> [url2...]`: URLs to download (required, space-separated) Execute: The script will: - Download HTML from each URL - Remove navigation, headers, footers, scripts, ads - Convert to markdown (removes HTML attribute noise) - Save `.md` files to spe...
Download full page content from URLs, converting to markdown for efficient content analysis.
Arguments: $ARGUMENTS
Downloads each URL, removes navigation/scripts/ads, and converts to clean markdown.
Parse arguments:
--folder <folderpath>: Output folderpath (default: .webfetch-cache in current directory)<url1> [url2...]: URLs to download (required, space-separated)Execute:
python ${CLAUDE_PLUGIN_ROOT}/scripts/fetch_full_content.py --folder <folderpath> <url1> <url2> ...
The script will:
.md files to specified folderPrints file paths, one per line:
output/angular-dev_signals.md
output/jamoin-de_index.md
# Single URL
/fetch-full-content --folder docs https://angular.dev/essentials/signals
# Multiple URLs
/fetch-full-content --folder docs https://angular.dev/essentials/signals https://www.example.com/guide
# From file (create urls.txt with one URL per line)
/fetch-full-content --folder docs $(cat urls.txt)
npx claudepluginhub thoeltig/claude-code-toolkit --plugin fetch-full-content/url-or-pathImports documentation from a URL or local file path into a structured mabi-import/ directory. Uses Context7 for structured library docs or Playwright for JavaScript-rendered sites.
/doc-to-mdConverts a PDF, docx, image, or HTML document to clean Markdown using multimodal Gemini, with optional extraction focus. Saves to docs/agy/converted/.
/create-llms-for-skillsGenerates a structured llms.txt file from URLs by scraping web content with agent-browser CLI. Accepts optional requirements and outputs Markdown with overview, modules, types, and code examples.