| name | academic_paper |
| description | 搜索学术论文(Semantic Scholar + DBLP + arXiv 三源并行),返回标题、作者、摘要、引用数、链接 |
| layer | access |
| trigger | 查询涉及学术论文、科研文献、预印本、论文引用量、特定学术会议/期刊论文的具体内容,并且网页、新闻、微信公众号等内容无法提供详情信息时使用。 |
| trigger_conditions | {"domain":["academic","research"],"entity_types":["paper","researcher","conference","journal"],"attribute_types":["citation_count","publication_year","venue","authors","abstract"],"coverage_gap_pattern":"academic_reference_missing"} |
| cost_hint | low |
| effectiveness_score | 0 |
| success_rate | 0 |
| status | seed |
| has_executor | true |
Skill: Academic Paper Search(学术论文搜索)
目标
通过 Semantic Scholar、DBLP、arXiv 三个免费学术 API 并行搜索论文,返回结构化的论文元数据。
适用场景
- 查找特定主题的学术论文(如 "transformer architecture")
- 按年份范围筛选论文(如 2023-2025 年的最新研究)
- 查找特定作者、会议、期刊的论文
- 需要论文引用量对比
- 查找 arXiv 预印本和摘要
不适用场景
- 非学术内容(新闻、博客、产品文档)
- 需要论文全文(本 skill 仅返回元数据和摘要)
- 需要中文学术论文(建议用知网等数据源)
执行方式
result = await execute({
"query": "large language model alignment",
"num_results": 5,
"year_range": "2023-2025",
"source": "all"
}, browser)
数据源说明
- Semantic Scholar: 覆盖面广,有引用量和摘要,免费无需 API key
- DBLP: CS 领域权威书目,元数据精确,无摘要和引用量
- arXiv: 预印本,有完整摘要,无引用量
常见误区 (Anti-Patterns)
-
场景: When searching for papers accepted to a future or very recent conference (e.g., 'ACL 2026' when the date is April 2026, prior to the conference date).
- ❌ 踩坑: Querying academic indices (Semantic Scholar/arXiv) with filters like 'year:2026' or 'venue:ACL 2026', or expecting these engines to return results for accepted papers not yet in proceedings.
- 原因: Academic indices index published proceedings. During the acceptance phase (months before the conference), papers exist on author homepages or institutional news, but lack the 'Conference Year' metadata tag in academic databases. Searching the index yields zero results.
- ✅ 应改用: Switch to 'news_search' or 'wechat_article' to find 'Accepted Papers Lists' (录用名单) released by institutions. Only use academic_paper to verify specific titles found in news, or wait until the conference starts to use venue filters.
- 来源 trace: 帮我梳理一下国内主流NLP组ACL2026发表情况 (2026-04-20)
-
场景: Searching for papers from a major conference for the current year (e.g., 'ACL 2026' in April 2026), specifically when the conference has not yet occurred or proceedings are not yet online.
- ❌ 踩坑: Querying standard academic indexes (Semantic Scholar, DBLP, arXiv) or generic web search for 'ACL 2026 papers', resulting in zero results or outdated 'Call for Papers' pages.