instances/xiaodazi/skills/paper-search/SKILL.md
Search academic papers across Semantic Scholar, CrossRef, and DBLP. Returns titles, abstracts, citations, and BibTeX.
npx skillsauth add malue-ai/dazee-small paper-searchInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
搜索学术论文,支持 Semantic Scholar、CrossRef 等开放 API(无需 API Key)。
# 搜索论文
curl -s "https://api.semanticscholar.org/graph/v1/paper/search?query=large+language+model+agent&limit=10&fields=title,abstract,year,citationCount,authors,url" | python3 -c "
import json, sys
data = json.load(sys.stdin)
for i, paper in enumerate(data.get('data', []), 1):
title = paper.get('title', '')
year = paper.get('year', '?')
citations = paper.get('citationCount', 0)
authors = ', '.join(a.get('name', '') for a in paper.get('authors', [])[:3])
url = paper.get('url', '')
print(f'{i}. [{year}] {title}')
print(f' 作者: {authors}')
print(f' 引用: {citations} | {url}')
print()
"
# 通过论文 ID 获取详情(含摘要)
curl -s "https://api.semanticscholar.org/graph/v1/paper/{paper_id}?fields=title,abstract,year,citationCount,authors,references,url" | python3 -m json.tool
# 通过 DOI 获取 BibTeX
curl -sH "Accept: application/x-bibtex" "https://doi.org/{doi}"
curl -s "https://api.crossref.org/works?query=transformer+attention&rows=5" | python3 -c "
import json, sys
data = json.load(sys.stdin)
for item in data.get('message', {}).get('items', []):
title = item.get('title', [''])[0]
doi = item.get('DOI', '')
year = item.get('published', {}).get('date-parts', [['']])[0][0]
print(f'[{year}] {title}')
print(f' DOI: {doi}')
print()
"
development
Local web search (Tavily/Exa, requires API Key). For quick searches. If no Key configured or deep research needed, use cloud_agent instead.
development
Get current weather and forecasts (no API key required).
tools
Send WhatsApp messages to other people or search/sync WhatsApp history via the wacli CLI (not for normal user chats).
tools
Start voice calls via the Moltbot voice-call plugin.