Install
openclaw skills install zotero-enhancedManages the Zotero library. Supports adding new PDF documents with automatic metadata fetching (Crossref/arXiv), searching for existing items, reading attached files, and managing notes. Works with both Zotero cloud storage and WebDAV.
openclaw skills install zotero-enhancedThis skill provides a suite of scripts to interact with a Zotero library, covering the full document lifecycle: adding, searching, and reading. Includes enhanced metadata fetching for PDFs with DOI or arXiv IDs.
The skill supports two storage configurations:
ZOTERO_USER_ID, ZOTERO_API_KEYimported_file (stored directly) and imported_url (referenced via WebDAV URL) attachment typesZOTERO_USER_ID, ZOTERO_API_KEY, WEBDAV_URL, WEBDAV_USER, WEBDAV_PASSAll scripts require Zotero API credentials. Get your API key from: https://www.zotero.org/settings/keys
Use scripts/search.sh to find items in the library by keyword.
# Ensure the script is executable
chmod +x scripts/search.sh
# Run the search
ZOTERO_USER_ID="<user_id>" \
ZOTERO_API_KEY="<api_key>" \
bash scripts/search.sh "your search query"
The script outputs a formatted list of matching items with their Key, needed for reading.
Use scripts/read_universal.sh to read documents from either storage mode.
chmod +x scripts/read_universal.sh
# For Zotero cloud storage:
ZOTERO_USER_ID="<user_id>" \
ZOTERO_API_KEY="<api_key>" \
bash scripts/read_universal.sh "ITEM_KEY"
# For WebDAV storage (add WebDAV variables):
ZOTERO_USER_ID="<user_id>" \
ZOTERO_API_KEY="<api_key>" \
WEBDAV_URL="<url>" \
WEBDAV_USER="<user>" \
WEBDAV_PASS="<pass>" \
bash scripts/read_universal.sh "ITEM_KEY"
Use scripts/read.sh for WebDAV storage only (legacy).
The skill now supports creating, reading, updating, and deleting notes in your Zotero library. Notes can be standalone or attached to parent items (documents).
Use scripts/create_note.sh to create a new note with plain text content.
chmod +x scripts/create_note.sh
# Create a standalone note:
ZOTERO_USER_ID="<user_id>" \
ZOTERO_API_KEY="<api_key>" \
bash scripts/create_note.sh "My important research notes"
# Create a note attached to a document:
bash scripts/create_note.sh --parent "ITEM_KEY" "Meeting notes about this paper"
# Create a note with tags:
bash scripts/create_note.sh --tag research --tag to-read "Follow up on this paper"
--parent KEY: Attach note to a parent item (document key)--tag TAG: Add a tag (can be used multiple times)--dry-run: Show steps without creating the noteThe script automatically converts plain text to HTML for Zotero storage.
Use scripts/read_note.sh to read a note and convert HTML back to plain text.
chmod +x scripts/read_note.sh
# Read as plain text (default):
ZOTERO_USER_ID="<user_id>" \
ZOTERO_API_KEY="<api_key>" \
bash scripts/read_note.sh "NOTE_KEY"
# Read as HTML:
bash scripts/read_note.sh --format html "NOTE_KEY"
# Read as JSON (full item data):
bash scripts/read_note.sh --format json "NOTE_KEY"
plain (default): Human-readable plain texthtml: Raw HTML contentjson: Full JSON item dataUse scripts/update_note.sh to update existing notes with new content or tags.
chmod +x scripts/update_note.sh
# Replace note content:
echo "New content" | \
ZOTERO_USER_ID="<user_id>" \
ZOTERO_API_KEY="<api_key>" \
bash scripts/update_note.sh --replace "NOTE_KEY"
# Append to existing content:
echo "Additional notes" | \
bash scripts/update_note.sh --append "NOTE_KEY"
# Add tags:
bash scripts/update_note.sh --tag important --tag to-read "NOTE_KEY"
# Remove tags:
bash scripts/update_note.sh --remove-tag obsolete "NOTE_KEY"
--replace: Replace note content (default)--append: Append new content to existing note--tag TAG: Add a tag (can be used multiple times)--remove-tag TAG: Remove a tag (can be used multiple times)--dry-run: Show steps without updatingThe script includes version checking to prevent update conflicts.
Use scripts/delete_note.sh to delete notes safely with confirmation and backup options.
chmod +x scripts/delete_note.sh
# Delete with confirmation:
ZOTERO_USER_ID="<user_id>" \
ZOTERO_API_KEY="<api_key>" \
bash scripts/delete_note.sh "NOTE_KEY"
# Delete without confirmation (use with caution):
bash scripts/delete_note.sh --no-confirm "NOTE_KEY"
# Backup before deleting:
bash scripts/delete_note.sh --backup "NOTE_KEY"
# Dry-run to see what would be deleted:
bash scripts/delete_note.sh --dry-run "NOTE_KEY"
--no-confirm is used~/.zotero-backup/ before deletionUse scripts/add_to_zotero_universal.sh for full metadata fetching and flexible storage.
--dry-run to see what would be uploaded without making changeschmod +x scripts/add_to_zotero_universal.sh
# Zotero cloud storage (no WebDAV needed):
ZOTERO_USER_ID="<user_id>" \
ZOTERO_API_KEY="<api_key>" \
bash scripts/add_to_zotero_universal.sh "/path/to/paper.pdf"
# WebDAV storage:
ZOTERO_USER_ID="<user_id>" \
ZOTERO_API_KEY="<api_key>" \
WEBDAV_URL="<url>" \
WEBDAV_USER="<user>" \
WEBDAV_PASS="<pass>" \
bash scripts/add_to_zotero_universal.sh "/path/to/paper.pdf"
The universal script will:
10.1126/science.aec8352 from PDFUse scripts/add_to_zotero_enhanced.sh for flexible storage with metadata fetching. Supports both Zotero cloud and WebDAV storage.
Use scripts/add_to_zotero.sh for flexible storage with title-only extraction. Supports both Zotero cloud and WebDAV storage.
curl: HTTP requestsjq: JSON processing (for enhanced/universal scripts)pdftotext: PDF text extraction (from poppler-utils)zip: File compression (for WebDAV mode)All scripts are cross‑platform compatible (Linux and macOS). The universal scripts automatically detect platform‑specific commands (md5sum/md5, stat options).
sudo apt-get update
sudo apt-get install -y curl jq poppler-utils zip
brew install curl jq poppler zip
bash scripts/check_deps.sh
ZOTERO_USER_ID="1234567" \
ZOTERO_API_KEY="abc123def456" \
bash scripts/search.sh "artificial intelligence"
ZOTERO_USER_ID="1234567" \
ZOTERO_API_KEY="abc123def456" \
bash scripts/add_to_zotero_universal.sh "~/Downloads/paper.pdf"
add_to_zotero_universal.sh (get_filesize function)create_note.sh HTML conversion: handles **bold**, bullet lists (-, *, numbered), and inline line breaks (<br>)read_note.sh HTML→plaintext conversion: decodes <br>, <strong>, <b>, <ul>/<li>, and HTML entitiescreate_note.sh: Create notes (plain text → HTML, optional parent, tags)read_note.sh: Read notes (HTML → text, with format options)update_note.sh: Update notes (append/replace, tag management, version checking)delete_note.sh: Delete notes (with confirmation, backup option)check_attachments.sh, find_duplicates.sh, analyze_tags.sh) per user request.imported_url support in read_universal.sh for WebDAV‑stored PDFs.--dry‑run mode for add_to_zotero_universal.sh.md5sum/md5 and stat variants.check_deps.sh).--help/--version flags.linkMode: "imported_file" (stored directly) or linkMode: "imported_url" (referenced via WebDAV)read_universal.sh script will search for both types automaticallycurl -u user:pass "https://your.webdav.server/"curl "https://api.crossref.org/works/10.1126/science.aec8352"WEBDAV_URL, WEBDAV_USER, WEBDAV_PASS variables