Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Command-line interface for Zotero - search your Zotero library, add/edit notes, read attachments, and manage bibliographic references from the terminal.
Command-line interface for Zotero - search your Zotero library, add/edit notes, read attachments, and manage bibliographic references from the terminal.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
Command-line interface for the Zotero reference manager, providing terminal-based access to your Zotero library through the Zotero API.
# Install (PEP 668 systems) sudo apt install pipx && pipx ensurepath && pipx install zotero-cli # Configure zotcli configure # Start using zotcli query "machine learning" zotcli add-note "\"deep learning\"" zotcli read "\"attention mechanism\"" ๐ Detailed guide: QUICKSTART.md
pipx install zotero-cli
pip install --user zotero-cli export PATH="$HOME/.local/bin:$PATH"
python3 -m venv ~/.venvs/zotero-cli source ~/.venvs/zotero-cli/bin/activate pip install zotero-cli ๐ Complete installation guide: INSTALL.md
CommandDescriptionzotcli query "topic"Search libraryzotcli add-note "paper"Add a notezotcli edit-note "paper"Edit a notezotcli read "paper"Read first PDF attachmentzotcli configureConfigure API credentials
# Set default editor export VISUAL=nano # or vim, emacs, code # Run configuration zotcli configure # Verify setup ./scripts/setup_and_check.sh
ScriptPurposesetup_and_check.shAutomated setup and verificationbackup_restore.shBackup and restore configurationupdate_check.shCheck for updatesquick_search.pyFormatted search outputexport_citations.pyExport citations (BibTeX, RIS)batch_process.shProcess multiple queries Usage examples: # Quick search python scripts/quick_search.py "topic" --format table # Export citations python scripts/export_citations.py "topic" --format bib > refs.bib # Backup ./scripts/backup_restore.sh backup # Update check ./scripts/update_check.sh check ๐ Scripts documentation: scripts/README.md
"neural AND networks" # Boolean AND "(deep OR machine) AND learning" # OR + grouping "learning NOT neural" # NOT "\"deep learning\"" # Phrase search "transform*" # Prefix search
zotcli query "topic" zotcli add-note "paper" python scripts/export_citations.py "topic" --format bib > refs.bib
python scripts/quick_search.py "\"recent\"" --format table zotcli add-note "\"interesting paper\"" ./scripts/backup_restore.sh backup ๐ More examples: EXAMPLES.md
DocumentDescriptionQUICKSTART.md5-minute quick start guideINSTALL.mdComprehensive installation guideEXAMPLES.mdPractical usage examplesscripts/README.mdHelper scripts guide
Command not found: export PATH="$HOME/.local/bin:$PATH" pipx ensurepath Permission denied (PEP 668 systems): pipx install zotero-cli Configuration errors: zotcli configure ๐ Detailed troubleshooting: INSTALL.md
# Essential commands zotcli query "topic" # Search zotcli add-note "paper" # Add note zotcli edit-note "paper" # Edit note zotcli read "paper" # Read PDF # Helper scripts ./scripts/setup_and_check.sh # Setup ./scripts/backup_restore.sh backup # Backup ./scripts/update_check.sh check # Update ./scripts/batch_process.sh queries.txt --output results.txt # Batch For complete documentation: QUICKSTART.md - Get started INSTALL.md - Installation details EXAMPLES.md - Usage examples SKILL_SUMMARY.md - Full overview
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.