一键导入
arxiv-search
Use when searching arXiv papers by keyword, title, author, abstract, category, or arXiv ID through ArkSpace web_search routing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when searching arXiv papers by keyword, title, author, abstract, category, or arXiv ID through ArkSpace web_search routing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and other Obsidian-specific syntax. Use when working with .md files in Obsidian, or when the user mentions wikilinks, callouts, frontmatter, tags, embeds, or Obsidian notes.
Use when a user invokes ArkSpace, asks for general help, a cross-domain task, role selection, skill selection, provider routing, web search/fetch through ArkSpace, or when task scope is unclear.
Create and edit Obsidian Bases (.base files) with views, filters, formulas, and summaries. Use when working with .base files, creating database-like views of notes, or when the user mentions Bases, table views, card views, filters, or formulas in Obsidian.
Interact with Obsidian vaults using the Obsidian CLI to read, create, search, and manage notes, tasks, properties, and more. Also supports plugin and theme development with commands to reload plugins, run JavaScript, capture errors, take screenshots, and inspect the DOM. Use when the user asks to interact with their Obsidian vault, manage notes, search vault content, perform vault operations from the command line, or develop and debug Obsidian plugins and themes.
Use when running Firecrawl Agent for structured extraction, schema-guided web data collection, or ArkSpace structured_extract routing that selects Firecrawl.
Use when controlling a Firecrawl remote browser session through ArkSpace web_interact routing, especially for opening pages, snapshots, clicks, or simple browser actions.
| name | arxiv-search |
| description | Use when searching arXiv papers by keyword, title, author, abstract, category, or arXiv ID through ArkSpace web_search routing. |
Use arXiv as a no-key web_search provider for academic paper discovery when the user asks for papers, preprints, arXiv IDs, authors, categories such as cs.AI, or literature candidates.
This skill queries the official arXiv public API and returns candidate paper metadata, abstracts, authors, categories, abstract URLs, and PDF URLs. Use a fetch or paper-reading workflow after search when the answer needs detailed synthesis from selected papers.
https://arxiv.org/https://info.arxiv.org/help/api/index.htmlhttps://info.arxiv.org/help/api/user-manual.htmlhttps://hermes-agent.nousresearch.com/docs/user-guide/skills/bundled/research/research-arxivResolve the installed ArkSpace package root before running commands. Replace <installed-arkspace-path> with the directory two levels above this loaded SKILL.md, such as /Users/<user>/.claude/plugins/cache/ark-space/ark-space/0.1.2. Use the installed package path, not a repository-relative command.
Check readiness:
python3 <installed-arkspace-path>/scripts/arkspace.py provider check arxiv --capability web_search
arXiv search does not require provider setup or an API key.
Basic paper search:
python3 <installed-arkspace-path>/scripts/arkspace.py web search --provider arxiv "diffusion transformers" --max-results 5 --output json
Search by author and category:
python3 <installed-arkspace-path>/scripts/arkspace.py web search --provider arxiv "language agents" \
--author "Yoshua Bengio" \
--category cs.AI \
--max-results 5 \
--output markdown
Search by title:
python3 <installed-arkspace-path>/scripts/arkspace.py web search --provider arxiv "" \
--title "attention is all you need" \
--max-results 3 \
--output json
Fetch specific IDs:
python3 <installed-arkspace-path>/scripts/arkspace.py web search --provider arxiv "" \
--id-list 1706.03762,2402.03268 \
--output json
Use arXiv field syntax directly when needed:
python3 <installed-arkspace-path>/scripts/arkspace.py web search --provider arxiv "ti:\"retrieval augmented generation\" AND cat:cs.CL" --max-results 10
exa-search when the task mixes papers with broader web sources, repositories, technical docs, or semantic discovery outside arXiv.tavily-research or exa-answer when the user asks for a synthesized research report rather than a paper candidate list.