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 URL (via Context7, WebFetch, or Playwright if blocked) or copies local path into structured mabi-import/ folders.
/create-llms-for-skillsGenerates a comprehensive llms.txt file for a set of URLs, using agent-browser to extract documentation, code examples, and more. Specify one or more URLs plus optional requirements.