← ClaudeAtlas

clilisted

Route web search, source indexing, extraction, RAG, jobs, and watch tasks through the local Axon CLI.
dinglebear-ai/axon · ★ 4 · AI & Automation · score 67
Install: claude install-skill dinglebear-ai/axon
# Axon CLI Axon is the local web/RAG engine. Use it for real-time web discovery, source indexing, structured extraction, retrieval, durable jobs, and recurring watches. Run: ```bash axon --help axon doctor ``` Use `./scripts/axon` only inside the Axon source checkout when you specifically want the repo wrapper that sources the local environment. ## One indexing command Every source family — web pages, whole sites, local paths, git repos, feeds, Reddit, YouTube, packages, AI sessions — enters through **`axon <source>`** (equivalently `axon source <source>`), optionally narrowed with `--scope`. `axon crawl`, `axon ingest`, `axon embed`, and `axon refresh` **do not exist**. **Scope gotcha:** a bare web URL resolves to the web family, whose default scope is `site` — `axon "https://example.com/some/article"` indexes the whole domain. For one page use `axon scrape <url>` or `axon <url> --scope page`. Non-web sources (repos, feeds, local paths, videos, packages) default correctly; leave `--scope` off there. ## Routing | Need | Command | Use When | | --- | --- | --- | | Find sources | `search` | No exact URL yet. | | Synthesize current research | `research` | Need search, fetch, and cited synthesis in one pass. | | Read a known page | `scrape` | One URL should become markdown/output files. Retained one-page projection of `source`. | | Discover URLs | `map` | Known site, unknown page. | | Capture a site section | `<url> --scope site` | Many pages under a domain or path. | |