Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

zotero-paper-readerzotero 纸质阅读器

Agent Skill

zotero-paper-reader 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,296

周安装

304

GitHub Stars

7

下载量

2,432
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:zotero-paper-reader(zotero 纸质阅读器)
来源仓库:https://github.com/fuzhiyu/researchprojecttemplate
仓库路径:skills/zotero-paper-reader
安装命令:
npx skills add https://github.com/fuzhiyu/researchprojecttemplate --skill zotero-paper-reader
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/fuzhiyu/researchprojecttemplate --skill zotero-paper-reader

简介

zotero-paper-reader 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 它适用于研究检索类任务,能结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从 GitHub 安装,支持主流宿主环境。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Zotero Paper Reader

Overview

Read and analyze academic papers directly from the Zotero library. This skill handles the complete workflow from searching Zotero to converting PDFs to readable markdown format.

When to Use

Use this skill when the user requests to:

  • "Read this paper from Zotero"
  • "Find and read [paper title]"
  • "Access [author name] paper"
  • "Get the paper about [topic]"
  • "Convert [paper] from Zotero to markdown"

Workflow

Step 1: Search Zotero Library

Use the Zotero MCP tools to search for the paper:

# Search by title, author, or keywords
mcp__zotero__zotero_search_items(query="paper title or author", limit=5)

Present the search results to the user if multiple papers are found. Get the item_key from the selected paper.

Step 2: Get PDF Attachment

Retrieve the PDF attachment information:

# Get child items (attachments) for the paper
mcp__zotero__zotero_get_item_children(item_key="ITEM_KEY")

Look for the attachment with type: application/pdf and note its Key (attachment key) and Filename.

Step 3: Get PDF File (Local or Download)

Use the bundled script to get the PDF - it automatically tries local storage first, then downloads if needed:

uv run python .claude/skills/zotero-paper-reader/scripts/get_zotero_pdf.py ATTACHMENT_KEY

The script workflow:

  1. First searches local Zotero storage (~/Zotero/storage/ATTACHMENT_KEY/)
  2. If found locally, returns that path
  3. If not found locally, downloads from Zotero web library using API
  4. Retrieves original filename from Zotero metadata and downloads to /tmp/[original_filename]

Security note: The Zotero API key and library configuration are read directly from Notes/.env by the Python script and never exposed to the LLM. Required environment variables: ZOTERO_API_KEY, ZOTERO_LIBRARY_TYPE, ZOTERO_LIBRARY_ID.

Step 4: Convert to Markdown

Use the mistral-pdf-to-markdown skill to convert the PDF:

uv run python .claude/skills/mistral-pdf-to-markdown/scripts/convert_pdf_to_markdown.py \
  "PATH_TO_PDF" \
  "Notes/PaperInMarkdown/CLEAN_FILENAME.md"

Filename convention: Create a clean filename from the paper metadata:

  • Format: Author_Year_Title.md
  • Example: Du_et_al_2023_Are_Intermediary_Constraints_Priced.md
  • Replace spaces with underscores, remove special characters

Step 5: Read and Analyze

Read the converted markdown file:

# For large papers, read in sections
Read(file_path="Notes/PaperInMarkdown/FILENAME.md", offset=1, limit=500)

Since academic papers are often large (>25k tokens), read strategically:

  • Start with abstract and introduction (first 300-500 lines)
  • Use Grep to search for specific sections if needed
  • Read specific sections based on user interest

Provide the user with:

  1. Paper metadata (title, authors, publication year)
  2. Brief summary of the abstract
  3. Main findings or sections of interest
  4. Offer to read specific sections or search for particular content

Example Usage

User request: "Read the paper 'Are Intermediary Constraints Priced' from my Zotero library"

Workflow:

  1. Search: mcp__zotero__zotero_search_items(query="Are Intermediary Constraints Priced")
  2. Get attachment: mcp__zotero__zotero_get_item_children(item_key="KPRQ2DLZ")
  3. Get PDF: uv run python.claude/skills/zotero-paper-reader/scripts/get_zotero_pdf.py 2HSELEHX

- Returns local path if available, or downloads and returns temp path

  1. Convert: uv run python.claude/skills/mistral-pdf-to-markdown/scripts/convert_pdf_to_markdown.py [PDF_PATH] Notes/PaperInMarkdown/Du_et_al_2023_Are_Intermediary_Constraints_Priced.md
  2. Read: Read(file_path="Notes/PaperInMarkdown/Du_et_al_2023_Are_Intermediary_Constraints_Priced.md", limit=500)
  3. Summarize and offer to dive deeper into specific sections

Notes

  • The skill works with both local and web Zotero libraries
  • For web libraries, requires ZOTERO_API_KEY, ZOTERO_LIBRARY_TYPE, and ZOTERO_LIBRARY_ID in Notes/.env
  • For local libraries, Zotero local API must be enabled in Zotero preferences
  • Requires Mistral API key in Notes/.env for PDF conversion
  • Converted markdown files include extracted images in images/ subfolder
  • Large papers (>40k tokens) should be read in sections to avoid context limits

Resources

scripts/

  • get_zotero_pdf.py - Unified script that tries local storage first, then downloads from web API if needed

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.48%
按下载量换算668

OpenCode

22.37%
按下载量换算544

Codex

20.41%
按下载量换算496

Gemini CLI

13.11%
按下载量换算319

Antigravity

7.75%
按下载量换算188

trae

3.64%
按下载量换算89

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills