zotero-management
>
pinned to #68098d5updated 2 weeks ago
Ask your AI client: “install skills/zotero-management”.
Requires the metahub MCP server installed in your client. Set up MCP.
mh install skills/zotero-managementmetahub onboarded this repo on the author's behalf.
If you own github.com/jxtse/scientific-research-skills on GitHub, claim the listing to take over publishing. Your claim preserves the existing eval history and badges; only the curator label is replaced with verified-publisher on your next publish.
Stars
54
Last commit
2 weeks ago
Latest release
published
- #academic-research
- #agent-skill
- #claude-skill
- #literature-review
- #zotero
About this skill
Pulled from SKILL.md at publish time.
Systematic management of an academic literature library via Zotero.
Evaluation report
WarningsAutomated checks the publisher passed at publish time — structure, docs, safety, and whether the artifact behaves as claimed.68098d5· 2 weeks ago
Documentation
41Description qualitywarn
21 words · 101 chars — manifest description is empty; graded the GitHub repo description instead
A skill's manifest description doubles as its trigger — add one to SKILL.md (15+ words, e.g. “use this skill when …”).
README is present and substantial
13,987 chars · 7 sections · 5 code blocks
Tags / topics declared
5 total — academic-research, agent-skill, claude-skill, literature-review, zotero
README has usage / example sections
found: Quick Start · Installation · Example
Homepage / docs URL declared
no homepage declared (registry will use the repo URL) — info-only, not blocking
Release history
1- releasecurrent68098d5warn2 weeks ago
Contents
Zotero Library Management
Systematic management of an academic literature library via Zotero.
When to Use
- User asks to add a paper to Zotero
- User asks to check their reading queue
- User wants to organize papers for a project
- User asks "what's in my library about X?"
- User asks to clean up or reorganize collections
Library Structure
Standard collection hierarchy:
00_Inbox → Newly added, unprocessed papers
10_Active Projects → Papers actively being used in current work
20_Background → General domain knowledge, surveys, textbooks
30_Reading Queue → Papers to read, prioritized
40_Archive → Completed projects, historical reference
90_Meta → Templates, style guides, writing resources
Tag System
Use tags to cross-cut the collection hierarchy:
- Project tags:
#Inception,#AI-Scientist-BioAge,#ChemRetro,#CAST - Status tags:
#to-read,#reading,#read,#summarized - Priority tags:
#urgent,#high,#low - Type tags:
#survey,#method,#benchmark,#position-paper
API Access
Two access modes:
| Mode | Endpoint | Capability |
|---|---|---|
| Local API | localhost:23119 | Read-only, fast, requires Zotero running |
| Web API | api.zotero.org | Read-write, works always, needs API key |
# Check if Zotero is running locally
curl -s http://localhost:23119/api/users/0/items?limit=1
# Web API (read-write)
curl -s -H "Zotero-API-Key: $ZOTERO_API_KEY" \
"https://api.zotero.org/users/$ZOTERO_USER_ID/items?limit=5"
Workflows
Adding a Paper
- Find metadata: Get title, authors, year, venue, DOI/arXiv ID
- Check for duplicates: Search existing library by title
- Present summary to user: Don't auto-add — confirm first
- Add to Zotero via Web API with:
- Correct item type (journalArticle, conferencePaper, preprint)
- All available metadata fields
- Collection:
30_Reading Queue(default) or user-specified - Tags: project tag +
#to-read
- Attach notes: Source link (social media post, blog, etc.) as a note
Checking Reading Queue
# Get items in Reading Queue collection
curl -s -H "Zotero-API-Key: $ZOTERO_API_KEY" \
"https://api.zotero.org/users/$ZOTERO_USER_ID/collections/<COLLECTION_KEY>/items?limit=50"
Present as a prioritized list:
📚 Reading Queue (N papers)
🔴 Urgent:
1. [Paper Title] — added [date], tagged #Inception
🟡 High priority:
2. [Paper Title] — added [date], tagged #AI-Scientist-BioAge
⚪ Normal:
3. ...
After Reading a Paper
- Move from
30_Reading Queueto10_Active Projectsor20_Background - Update tag:
#to-read→#reador#summarized - Add reading notes as a child note item
- Link to project if relevant
Project Literature Setup
When starting a new project:
- Create a project tag (e.g.,
#NewProject) - Do initial literature search (use literature-search skill)
- Batch-add relevant papers to
30_Reading Queuewith project tag - Prioritize: which papers must be read first?
Key Principles
- Confirm before adding — always show summary, let user decide
- Preserve provenance — record where you found the paper (social media link, search query)
- One source of truth — Zotero is the canonical library; don't maintain parallel lists
- Tags cross-cut collections — a paper can be in one collection but tagged for multiple projects
- Regular maintenance — periodically review Inbox and Reading Queue for stale items
Reviews
No reviews yet. Be the first.
Related
Frontend Slides
Create beautiful slides on the web using Claude's frontend skills
Verification Before Completion
Evidence before assertions, always
Writing Plans
Turn specs into phased implementation plans
mh install skills/zotero-management