Best use case
zotero-actions-tags-guide is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Zotero workflow automation with custom actions and tags
Teams using zotero-actions-tags-guide should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/zotero-actions-tags-guide/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How zotero-actions-tags-guide Compares
| Feature / Agent | zotero-actions-tags-guide | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Zotero workflow automation with custom actions and tags
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Zotero Actions & Tags Guide
## Overview
Zotero Actions & Tags is a powerful Zotero plugin that enables workflow automation through event-triggered actions. Define custom rules that execute when items are added, modified, opened, or tagged — such as auto-tagging by collection, running scripts on PDF open, auto-renaming attachments, or sending notifications. Transforms Zotero from a passive reference manager into an active research workflow engine.
## Installation
```bash
# Download .xpi from GitHub releases
# In Zotero 7: Tools → Add-ons → Install Add-on From File
```
## Core Concepts
```markdown
### Event → Condition → Action
**Events** (triggers):
- Item added to library
- Item added to collection
- Item modified
- Tag added/removed
- Attachment opened
- Item selected
**Conditions** (filters):
- Item type (article, book, etc.)
- Collection membership
- Tag presence/absence
- Field value match (regex)
- Date range
**Actions** (responses):
- Add/remove tags
- Set field values
- Run JavaScript
- Open URLs
- Copy to clipboard
- Show notifications
```
## Action Examples
### Auto-Tag by Collection
```json
{
"name": "Auto-tag ML papers",
"event": "add_to_collection",
"condition": {
"collection": "Machine Learning"
},
"actions": [
{"type": "add_tag", "tag": "#ml"},
{"type": "add_tag", "tag": "#to-read"}
]
}
```
### Mark as Read on Open
```json
{
"name": "Track reading",
"event": "open_attachment",
"condition": {
"attachment_type": "application/pdf"
},
"actions": [
{"type": "remove_tag", "tag": "#to-read"},
{"type": "add_tag", "tag": "#reading"},
{"type": "set_field", "field": "extra",
"value": "LastOpened: ${date}"}
]
}
```
### Auto-Prioritize Highly Cited
```json
{
"name": "Flag high-impact",
"event": "item_modified",
"condition": {
"field": "extra",
"regex": "Citations:\\s*(\\d{3,})"
},
"actions": [
{"type": "add_tag", "tag": "#high-impact"},
{"type": "add_tag", "tag": "#priority"}
]
}
```
### Custom Script Action
```javascript
// Run custom JavaScript on trigger
// Example: Auto-format author names
{
"name": "Format authors",
"event": "item_added",
"action": {
"type": "script",
"code": `
const creators = item.getCreators();
// Log to Zotero debug console
Zotero.debug('New item by: ' +
creators.map(c => c.lastName).join(', '));
`
}
}
```
## Workflow Recipes
### Reading Pipeline
```json
[
{
"name": "New → To-Read",
"event": "item_added",
"actions": [{"type": "add_tag", "tag": "#to-read"}]
},
{
"name": "To-Read → Reading",
"event": "open_attachment",
"condition": {"has_tag": "#to-read"},
"actions": [
{"type": "remove_tag", "tag": "#to-read"},
{"type": "add_tag", "tag": "#reading"}
]
},
{
"name": "Reading → Done",
"event": "tag_added",
"condition": {"tag": "#done"},
"actions": [
{"type": "remove_tag", "tag": "#reading"}
]
}
]
```
### Auto-Organization
```json
[
{
"name": "Tag by journal",
"event": "item_added",
"condition": {
"field": "publicationTitle",
"regex": "Nature|Science|Cell"
},
"actions": [
{"type": "add_tag", "tag": "#top-journal"}
]
},
{
"name": "Flag recent papers",
"event": "item_added",
"condition": {
"field": "date",
"after": "2024-01-01"
},
"actions": [
{"type": "add_tag", "tag": "#recent"}
]
}
]
```
## Configuration
```markdown
### Settings (Edit → Preferences → Actions & Tags)
- **Enable/disable** individual actions
- **Action priority** — execution order when multiple match
- **Logging** — debug action execution
- **Import/Export** — share action sets with collaborators
- **Keyboard shortcuts** — trigger actions manually
```
## Use Cases
1. **Reading workflow**: Auto-track reading status via tags
2. **Auto-organization**: Tag by collection, journal, or date
3. **Priority flagging**: Highlight high-impact or recent papers
4. **Team workflows**: Shared tag-based review pipelines
5. **Custom scripts**: Extend Zotero with JavaScript actions
## References
- [Zotero Actions & Tags GitHub](https://github.com/windingwind/zotero-actions-tags)
- [Zotero JavaScript API](https://www.zotero.org/support/dev/client_coding/javascript_api)
- [Zotero Plugin Development](https://www.zotero.org/support/dev/client_coding/plugin_development)Related Skills
thuthesis-guide
Write Tsinghua University theses using the ThuThesis LaTeX template
thesis-writing-guide
Templates, formatting rules, and strategies for thesis and dissertation writing
thesis-template-guide
Set up LaTeX templates for PhD and Master's thesis documents
sjtuthesis-guide
Write SJTU theses using the SJTUThesis LaTeX template with full compliance
novathesis-guide
LaTeX thesis template supporting multiple universities and formats
graphical-abstract-guide
Create SVG graphical abstracts for journal paper submissions
beamer-presentation-guide
Guide to creating academic presentations with LaTeX Beamer
plagiarism-detection-guide
Use plagiarism detection tools and ensure manuscript originality
paper-polish-guide
Review and polish LaTeX research papers for clarity and style
grammar-checker-guide
Use grammar and style checking tools to polish academic manuscripts
conciseness-editing-guide
Eliminate wordiness and redundancy in academic prose for clarity
academic-translation-guide
Academic translation, post-editing, and Chinglish correction guide