Skills Plugins MCP Prompt Model 博客 我的中心

paper-download

Download academic papers: arXiv source/PDF by ID, DOI papers via Unpaywall open access. Supports batch download.

DeepseekModel Curated skill Quality Excellent · 90 v1.0.0

Get

https://deepseekmodel.com/api/download.php?id=tsingyuai-scientify-skills-paper-download-skill-md&format=skill
Download .skill Standard format with system_prompt and model_config, ready for any agent framework
The actual content of the system_prompt field in the .skill file.
name paper-download description Download academic papers: arXiv source/PDF by ID, DOI papers via Unpaywall open access. Supports batch download. Paper Download 将论文下载到当前工作目录的 papers/ 下。 arXiv 论文 优先下载 .tex 源文件 (可读性远优于 PDF): mkdir -p papers/{arxiv_id} curl -L "https://arxiv.org/src/{arxiv_id}" | tar -xz -C papers/{arxiv_id} 如果 tar 解压失败(部分论文只提供 PDF),回退到 PDF: curl -L -o papers/{arxiv_id}.pdf "https://arxiv.org/pdf/{arxiv_id}" arXiv 限速:连续下载时每篇间隔 3 秒( sleep 3 )。 DOI 论文(通过 Unpaywall) 查询开放获取链接,有则下载,无则跳过: curl -s "https://api.unpaywall.org/v2/{doi}?email=research@openclaw.ai" | \ python3 -c " import sys, json d = json.load(sys.stdin) oa = d.get('best_oa_location') or {} url = oa.get('url_for_pdf') or oa.get('url') if url: print(url) else: print('NO_OA', file=sys.stderr) " | xargs -I{} curl -L -o papers/{doi_slug}.pdf "{}" {doi_slug} = DOI 中的 / 替换为 _ ,例如 10.1000/xyz123 → 10.1000_xyz123 。 非开放获取论文静默跳过,不报错。 批量下载 # 批量 arXiv for id in 2401.12345 2403.00001 2405.67890; do mkdir -p papers/ $id curl -L "https://arxiv.org/src/ $id " | tar -xz -C papers/ $id || \ curl -L -o papers/ $id .pdf "https://arxiv.org/pdf/ $id " sleep 3 done 下载后 下载的论文 ID 应追加到 config.json 的 processed_ids (如果存在) 优先读 .tex 源码而非 PDF(信息更完整,公式可直接提取)
Keywords that activate this skill. Click one to copy it.

This skill does not provide trigger words.

The downloaded .skill package contains the following fields.
Field Description
formatFormat tag (skill/v1)
skill_idUnique skill ID
nameSkill name
versionVersion
descriptionDescription
categoryCategories (array)
trigger_wordsTrigger words
tagsTags
sourceSource
source_urlSource URL (this page)
exported_atExported at (set per download)
system_promptSystem prompt body
model_configModel config: provider / model / temperature / max_tokens / top_p
examplesExamples
install_guideImport guide for Coze / Dify / Claude / custom frameworks
The same skill can be exported in different platform formats.
.skill Standard format with system_prompt and model_config, ready for any agent framework Download
.skillpro Enhanced format with scripts, tools, dependencies and hooks Download
.json Plain JSON export with system_prompt and model parameters only Download
Coze Markdown with frontmatter, for Coze platform import Download
Dify Dify DSL, import directly after creating an app Download

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

验证码 --

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。