用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dinglebear-ai/axon --skill cli命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use Axon for RAG, web search, source indexing, extraction, memory, and grounded answers over indexed docs, repos, feeds, or web content.
Use when extracting structured company lists from public or authorized directories into JSON, CSV, CRM-ready lists, or research tables.
Use Axon site-scope source indexing to capture many pages from a site or scoped documentation section.
基于 SOC 职业分类
正在显示 SKILL.md
| name | cli |
| description | Route web search, source indexing, extraction, RAG, jobs, and watch tasks through the local 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:
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.
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.
| 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. |
| Index any other source | <source> | Repo, feed, local dir, subreddit, video, package, session. |
| Structured extraction | extract | Need JSON-like records or fields from URLs. |
| Ask indexed knowledge | ask | Answer from the existing Axon knowledge base. |
| Inspect async work | jobs, status, monitor jobs | A detached job needs checking, retrying, or recovering. |
| Watch for changes | watch | Recurring re-indexing of a source. |
| Remove indexed content | prune plan then prune exec --confirm | Cleanup is plan-first and destructive on exec. |
--scope site only when the user needs many pages.mkdir -p .axon
axon search "OpenAI Codex skills metadata" --json --limit 5 > .axon/search.json
axon scrape "https://developers.openai.com/codex/skills" --output .axon/codex-skills.md
axon "https://docs.example.com" --scope site --max-pages 100 --wait true --output-dir .axon/docs-site
axon "https://github.com/owner/repo" --wait true
axon ask "What does the indexed documentation say about optional metadata?"
Without --wait true the CLI enqueues and returns a job id, auto-spawning a
worker. Follow it through the unified job surface — there are no per-command
lifecycle subcommands:
axon jobs list --json
axon jobs get <job-id>
axon jobs events <job-id>
axon jobs retry <job-id>
axon status
.axon/ or another ignored output directory.head, sed, jq, or targeted reads.