用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/QiZishi/PaperAgent --skill search-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Citation network and reference management skill for tracking citations, formatting references, and building citation graphs
Document parsing skill for extracting content from PDFs and other academic documents using MinerU and local parsers
Academic writing skill for generating summaries, reports, literature reviews, and other research documents
基于 SOC 职业分类
正在显示 SKILL.md
| name | search_skill |
| description | Academic literature search skill for finding papers from arXiv, Semantic Scholar, and HuggingFace |
| version | 1.0.0 |
| author | PaperAgent Team |
This skill enables you to search for academic papers and literature from multiple sources. Use this skill when you need to find relevant research papers for a topic.
You have access to the following search tools (registered in the Toolkit):
search_arxivSearch for papers on arXiv preprint server.
Parameters:
query (str, required): The search query stringmax_results (int, optional): Maximum number of results (default: 10, max: 50)sort_by (str, optional): Sort by "relevance" or "date"Returns: List of papers with title, authors, abstract, URL, year, and categories.
Example:
search_arxiv(query="large language models", max_results=10, sort_by="relevance")
search_semantic_scholarSearch for papers on Semantic Scholar with citation information.
Parameters:
query (str, required): The search query stringmax_results (int, optional): Maximum number of results (default: 10)year_from (int, optional): Filter papers from this yearyear_to (int, optional): Filter papers to this yearReturns: List of papers with title, authors, abstract, URL, year, citation count, and venue.
Example:
search_semantic_scholar(query="transformer architecture", max_results=20, year_from=2020)
search_huggingface_papersSearch for papers on HuggingFace Papers.
Parameters:
query (str, required): The search query stringmax_results (int, optional): Maximum number of results (default: 10)Returns: List of papers with title, authors, abstract, and URL.
Example:
search_huggingface_papers(query="multimodal learning", max_results=15)
academic_searchMulti-source academic search that combines results from multiple sources.
Parameters:
query (str, required): The search query stringsources (list[str], optional): Sources to search (default: ["arxiv", "semantic_scholar"])max_results_per_source (int, optional): Max results per source (default: 5)Returns: Combined and deduplicated list of papers from all sources.
Example:
academic_search(query="neural networks", sources=["arxiv", "semantic_scholar"], max_results_per_source=10)
For exploring a research topic:
academic_search to get papers from multiple sourcesFor tracking specific researchers:
"Author Name" topicFor finding related work:
For finding recent advances:
year_from parameter in Semantic Scholarsort_by="date" in arXivSearch results are returned in markdown format with: