Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

zotero-browse佐特罗浏览

Agent Skill

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

总安装

4,563

周安装

194

GitHub Stars

公开资料未说明

下载量

1,599
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:zotero-browse(佐特罗浏览)
来源仓库:https://github.com/lyononthemoon/zotero-browse
安装命令:
openclaw skills install zotero-browse
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install zotero-browse

简介

浏览和搜索本地 Zotero 图书馆中的论文资源,支持标题、作者和关键词查询。

  • 帮助用户快速定位所需文献并读取附件内容。
  • 通过 SQLite 数据库接口实现高效检索与元数据访问。
  • 需确保 Zotero 客户端已开启本地连接器且路径配置正确。
  • zotero-browse 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
zotero-browse
description
Browse, search, and read papers from a local Zotero library. Use when the user wants to: (1) Search their Zotero library by title, author, or keyword, (2) Read or summarize a specific PDF stored in Zotero, (3) Get an overview of their Zotero library (item counts, types, recent additions), (4) Find papers related to a specific topic in their collection. Activates on: 'search my Zotero', 'find papers about', 'read the PDF', 'show recent papers', 'Zotero library summary', 'how many papers do I have on X', any query about accessing or reading Zotero papers or PDFs.
metadata
openclaw
emoji
📚
requires
env
[]
bins
["python3 (with pymupdf, sqlite3 built-in)"]
primaryEnv
null

Zotero Browse Skill

Read papers, search your library, and extract PDF content from a local Zotero database.

Database & Storage Locations

  • Database: E:\Refer.Hub\zotero.sqlite (4300+ items, 2112 stored PDFs)
  • PDF storage: E:\Refer.Hub\storage\{storageHash}/filename.pdf
  • Python stdlib sqlite3 for queries; fitz (PyMuPDF) for PDF reading

Scripts

  • scripts/query_items.py — Search and browse the library
  • scripts/read_pdf.py — Read PDF text by attachment key or title search

Both scripts are executable directly. Always use py -3 on Windows.


Common Workflows

1. Search library by keyword

py -3 scripts/query_items.py --search "FGF15"
py -3 scripts/query_items.py --search "fatty liver"

Returns: matching items with key, title, authors, date, attachment count.

2. Find attachment key for a paper, then read PDF

# Step 1: search to get the attachment key
py -3 scripts/query_items.py --search "Silibinin"

# Step 2: read the PDF (pass the attachment key shown in output)
py -3 scripts/read_pdf.py ZL42EGES

3. Read PDF by title search

py -3 scripts/read_pdf.py --search "Silibinin" --pages 5

Prompts for which attachment key to open, then extracts text.

4. Library summary

py -3 scripts/query_items.py --summary

Shows total items and breakdown by type (journalArticle, book, etc.).

5. Recent additions

py -3 scripts/query_items.py --recent 10

6. Get item details by key

py -3 scripts/query_items.py --key ZL42EGES

7. Extract full PDF text to file

py -3 scripts/read_pdf.py ZL42EGES --output extracted.txt

Database Schema

For SQL query reference (schema, table structure, query examples), see:

📄 references/schema.md

Key tables: items, itemData, fields, itemDataValues, itemAttachments, itemTypes, creators, itemCreators, tags


PDF Resolution Logic

Zotero stores PDFs at E:\Refer.Hub\storage\{storageHash}/ where storageHash is the hash from itemAttachments.storageHash. The itemAttachments.path field stores the original filename but the folder is named by storageHash.

Direct open by key:

import sqlite3, fitz, os

DB = r"E:\Refer.Hub\zotero.sqlite"
STORAGE = r"E:\Refer.Hub\storage"

conn = sqlite3.connect(DB, timeout=30)
conn.execute("PRAGMA read_only=ON")
cur = conn.cursor()

cur.execute("""
    SELECT itemAttachments.storageHash
    FROM itemAttachments JOIN items ON itemAttachments.itemID = items.itemID
    WHERE items.key = ? AND itemAttachments.linkMode = 0
""", (key,))
row = cur.fetchone()
if row and row[0]:
    folder = os.path.join(STORAGE, row[0])
    files = [f for f in os.listdir(folder) if f.lower().endswith('.pdf')]
    if files:
        pdf_path = os.path.join(folder, files[0])
        doc = fitz.open(pdf_path)
        text = "\
".join(page.get_text() for page in doc)

Tips

  • If database is locked, close Zotero application first
  • For long PDFs, use --pages N to extract just first N pages
  • PDF text extraction works for text-based PDFs; scanned PDFs need OCR
  • Use --info flag to get PDF metadata without extracting full text
  • Attachment keys are 8-character Zotero item keys shown in search results

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.85%
按下载量换算1,229

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills