domainslisted
Install: claude install-skill jmagar/axon
# axon-domains
Lists indexed domains with URL count and chunk totals — a high-level view of what's in the knowledge base.
## MCP (preferred)
```json
{ "action": "domains" }
```
## CLI fallback
```bash
axon domains
```
## What it shows
- Domain name (e.g., `docs.example.com`)
- Number of indexed URLs from that domain
- Total chunk count across those URLs
- Last indexed timestamp
## domains vs sources vs stats
| Command | Granularity | Best for |
|---------|-------------|----------|
| `domains` | Per domain | "Do I have X site indexed?" |
| `sources` | Per URL | "Is this specific page stored?" |
| `stats` | Collection total | "How big is my index?" |
## Identifying gaps
Low URL count on a crawled domain? The crawl may have been capped or many pages were thin. Re-crawl with higher `max_pages`:
```json
{
"action": "crawl",
"urls": ["https://docs.example.com"],
"max_pages": 500,
"max_depth": 4
}
```