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.
Downloads web pages as clean markdown files by removing navigation, scripts, and ads.
/plugin marketplace add thoeltig/claude-code-toolkit/plugin install fetch-full-content@claude-code-toolkit--folder <name> <url1> [url2...]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 <name>: Output folder (required)<url1> [url2...]: URLs to download (required, space-separated)Execute:
python ${CLAUDE_PLUGIN_ROOT}/scripts/fetch_full_content.py --folder <folder_name> <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)