Save website or documentation content locally with Axon map, scrape, site-scope source indexing, output-dir, and screenshots.
Scanned 9/1/2026
Install to Claude Code
npx -y skills add dinglebear-ai/axon --skill download --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Download?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/dinglebear-ai-download)More formats (shields.io, HTML) on the badges page.
---
name: download
description: Save website or documentation content locally with Axon map, scrape, site-scope source indexing, output-dir, and screenshots.
---
# Axon Download
Axon does not have a dedicated `download` command and does not create browser-ready offline mirrors with fetched assets and rewritten links. Use this skill to save markdown crawl artifacts, manifests, HTML/raw HTML captures, WARC archives, and screenshots locally with Axon's real capture commands.
## When To Use
- The user wants local markdown files, HTML/raw HTML captures, WARC archives, screenshots, or saved crawl artifacts.
- The goal is durable files rather than an immediate answer.
- The user says "download this site", "save the docs", or "archive this section".
## Recipes
Single page:
```bash
mkdir -p .axon/download
axon scrape "https://example.com/page" --output .axon/download/page.md
```
Section capture:
```bash
mkdir -p .axon/download
axon "https://docs.example.com/reference" \
--scope site \
--max-pages 200 \
--wait true \
--output-dir .axon/download/reference
```
Add `--warc .axon/download/reference.warc` to archive every fetched page, or
`--skip-embed` to save files without publishing to Qdrant.
Screenshot:
```bash
axon screenshot "https://example.com" --output .axon/download/example.png
```
## Guidance
- Start with `map` if you need to choose which paths to capture.
- Use `--scope site` with explicit caps (`--max-pages`, `--max-depth`, `--budget`) for large sections.
- Expect markdown, manifests, WARC files, and screenshots, not a full offline website mirror.
- Keep generated captures out of commits unless the user explicitly asks for curated artifacts.
## See Also
- [map](../map/SKILL.md)
- [scrape](../scrape/SKILL.md)
- [crawl](../crawl/SKILL.md)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!