用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/LazyAGI/LazyMind --skill paper-search命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | paper-search |
| description | Primary skill for searching, retrieving, and reading academic papers from arXiv. |
This skill provides a streamlined workflow for searching and reading academic papers from arXiv. You must default to using the system's native tools for searching and reading. Use local scripts only for specific formatting tasks (like BibTeX) or as a fallback mechanism.
arxiv_search (Primary): Use this first for querying papers by keyword, author, or ID.url_fetch (Primary): Use this to read abstracts and full-text HTML papers.run_script (Optional/Fallback): Use this only to generate BibTeX citations OR if arxiv_search fails to return valid results. This tool returns a dictionary.Primary Method:
When the user asks for papers on a topic, immediately call the native arxiv_search tool with appropriate keywords.
arxiv_search(query="large language models")Fallback Method (If arxiv_search fails or returns empty/errors):
If the native tool malfunctions, use run_script to execute the fallback Python search script.
{
"name": "paper-search",
"rel_path": "scripts/search_arxiv.py",
"args": ["<your_search_query>"]
}
Once you have identified target arXiv IDs, retrieve their content using url_fetch.
https://arxiv.org/abs/<arxiv_id>url_fetch(url="https://arxiv.org/abs/2402.03300")https://ar5iv.labs.arxiv.org/html/<arxiv_id>url_fetch(url="https://ar5iv.labs.arxiv.org/html/2402.03300")If the user specifically asks for BibTeX citations, the native tools might not format it correctly. Use run_script to execute the BibTeX generator.
{
"name": "paper-search",
"rel_path": "scripts/get_bibtex.py",
"args": ["<arxiv_id>"]
}
Example <arxiv_id>: 2402.03300
arxiv_search before resorting to scripts/search_arxiv.py.run_script, the args parameter MUST be a List of strings (List[str]).2402.03300 resolves to the latest version. Use unversioned IDs for lookups unless the user specifically requests an older version.