Use Axon search and research to discover current web sources and queue bounded indexing when available.
Scanned 9/1/2026
Install to Claude Code
npx -y skills add dinglebear-ai/axon --skill search --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Search?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/dinglebear-ai-search)More formats (shields.io, HTML) on the badges page.
---
name: search
description: Use Axon search and research to discover current web sources and queue bounded indexing when available.
---
# Axon Search
Use `axon search` when there is no exact URL yet. Use `axon research` when the user wants search, full-page extraction, and LLM synthesis in one pass.
## Examples
```bash
mkdir -p .axon
axon search "OpenAI Codex skills optional metadata" --json --limit 5 > .axon/search.json
axon research "OpenAI Codex skills optional metadata" --research-depth 5 > .axon/research.md
```
Then scrape, crawl, or ask:
```bash
jq -r '.results[].url // .data.web[].url' .axon/search.json
axon scrape "https://developers.openai.com/codex/skills" --output .axon/codex-skills.md
axon ask "What did the indexed sources say about optional skill metadata?"
```
## Guidance
- Prefer Axon search/research over raw web search for repo work so relevant sources can be queued for bounded indexing when workers are available.
- Use `--limit` or `--research-depth` to keep source count bounded.
- Save JSON or markdown output under `.axon/`.
- Do not mention hosted search credits or unrelated hosted feedback flows.
## See Also
- [scrape](../scrape/SKILL.md)
- [crawl](../crawl/SKILL.md)
- [deep-research](../deep-research/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!