Best for
- After /search-lit completes — sync the produced .bib into Zotero + Obsidian.
- Bulk-register references from an existing .bib into Zotero + Obsidian.
- Tidy the references/ folder inside a project workspace.
Aperivue/medsci-skills/skills/lit-sync/SKILL.md
Sync research references from .bib files to Zotero library + Obsidian literature notes. Extract cross-cutting concept notes when enough literature accumulates. Works after /search-lit or standalone.
Decision brief
Takes the .bib output of /search-lit (or any user-specified .bib file) and synchronizes the references into the Zotero library and Obsidian literature notes. When enough literature notes accumulate, extracts cross-cutting concept notes.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/Aperivue/medsci-skills --skill "skills/lit-sync"Inspect the Agent Skill "lit-sync" from https://github.com/Aperivue/medsci-skills/blob/048afbc14a235058a220a63daec517851145c445/skills/lit-sync/SKILL.md at commit 048afbc14a235058a220a63daec517851145c445. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
The user-specified .bib file path, or the .bib just produced by /search-lit.
Review the “Process” section in the pinned source before continuing.
Review the “and will not resolve against the library. See Step 3.2 §Citekey provenance.” section in the pinned source before continuing.
Identify the project from the current working directory or from an explicit user override. Reuse an existing collection key if one is recorded; otherwise create a new collection.
Identify the project from the current working directory or from an explicit user override. Reuse an existing collection key if one is recorded; otherwise create a new collection.
Permission review
The documentation asks the agent to create, modify, or delete local files.
If Zotero is unavailable, write the same file with `status: "skipped"` and aThe documentation includes network, browsing, or remote request actions.
curl -s -m 5 -o /dev/null -w "%{http_code}" \The documentation includes network, browsing, or remote request actions.
http://127.0.0.1:23119/better-bibtex/json-rpc # expect 200The documentation asks the agent to run terminal commands or scripts.
python3 "$ENGINE" <worklist> -o pdfs/ -e <contact-email> --report pdfs/retrieval_report.jsonThe documentation asks the agent to run terminal commands or scripts.
python3 scripts/check_citekey_provenance.py --vault "$VAULT" --bib "$REFS_BIB"The documentation asks the agent to create, modify, or delete local files.
**Never write `refs.bib` directly.** Only Better BibTeX auto-export may write that file. If auto-export is broken, fix the Zotero setup rather than writing the file from this skill.Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 93/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 273 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Takes the .bib output of /search-lit (or any user-specified .bib file) and
synchronizes the references into the Zotero library and Obsidian literature notes.
When enough literature notes accumulate, extracts cross-cutting concept notes.
02 연구/문헌/ and 02 연구/개념노트/), honor it — never silently
rename a user's folders. For a new or unclear vault, default to the English folders
Literature/ and Concepts/ with the English note templates below.references/locale/ko/note_templates.md — use it when the vault is Korean-structured or the
user prefers Korean notes./search-lit completes — sync the produced .bib into Zotero + Obsidian.references/ folder inside a project workspace./lit-sync is an owner-scoped operation per docs/zotero_policy.md. Collaborators consume the committed manuscript/_src/refs.bib snapshot read-only.<project>/manuscript/_src/refs.bib (owner setup checklist in docs/zotero_policy.md §Setup).$OBSIDIAN_VAULT).Per docs/artifact_contract.md, /lit-sync is the sole writer of:
| Artifact | Writer | Readers |
|---|---|---|
manuscript/_src/refs.bib | /lit-sync (via Better BibTeX auto-export trigger) | /write-paper, /verify-refs, /manage-refs |
references/zotero_collection.json | /lit-sync | /verify-refs, /sync-submission |
Direct hand edits to refs.bib are drift — revert on sight.
.bib file (or /search-lit output)
│
▼ Phase 1: Parse
Extract DOI, PMID, title, authors, journal, year
│
▼ Phase 2: Zotero Sync (owner)
Dedupe → zotero_add_by_doi → place in collection → pin citekey
│
▼ Phase 2.5: refs.bib snapshot refresh
Trigger Better BibTeX auto-export → verify manuscript/_src/refs.bib mtime updated
│
▼ Phase 2.7: Fulltext Retrieval (opt-in)
Disk OA PDFs via /fulltext-retrieval + in-library via find_available_pdf.js → reconcile report
│
▼ Phase 3: Obsidian Literature Notes
Create Literature/{citekey}.md (empty note OK — fill later with highlights)
│
▼ Phase 4: Concept Extraction (conditional)
≥10 literature notes → scan for cross-cutting concepts → propose concept notes
The user-specified .bib file path, or the .bib just produced by /search-lit.
# Parse .bib entries with regex.
# Extract per entry:
# - citekey — read it from the entry, never compose one.
# Better BibTeX keys look like `smithDeepLearningRadiology2024`
# (author + title words + year). A key shaped like `Smith_2024_Validation`
# or `smith2024validation` was almost certainly invented rather than read,
# and will not resolve against the library. See Step 3.2 §Citekey provenance.
# - doi
# - pmid
# - title
# - authors (first + last minimum)
# - journal
# - year
# - volume, number, pages (if present)
Log any parse failures and skip those entries.
Identify the project from the current working directory or from an explicit user override. Reuse an existing collection key if one is recorded; otherwise create a new collection.
Collection mapping: Check existing Zotero collections for the current project.
If no collection exists, create one with zotero_create_collection. Record the
collection key for future use.
For each entry:
zotero_search_items to search by DOI or title — if already present, skip.
This search-first step is what prevents duplicates; zotero_add_by_doi does not
dedupe by itself (it fetches CrossRef and creates the item), so never skip the search.zotero_add_by_doi (when a DOI is available) or
zotero_add_by_url (falling back to the PubMed URL when no DOI is available).
zotero_add_by_doi accepts an attach_mode argument that governs the OA child-PDF
attach attempt at add time (the installed server treats linked_url as "bookmark the
PDF URL"; other values download/import). Set it when you want a PDF attached during the
add. Exact accepted values are server-version-specific — verify against the connected
server. Do not use zotero_add_from_file to attach a PDF to an item added here: it
has no parent-item argument and would create a duplicate parent item.zotero_manage_collections to place the item in the project collection.Zotero Sync:
Added: 8 papers (new)
Skipped: 3 papers (already in library)
Failed: 1 paper (no DOI/PMID)
Collection: RFA-Meta (TZQEP4NH)
If the Zotero MCP is not connected, skip this entire phase and proceed to Phase 3.
Always write references/zotero_collection.json in the project workspace:
{
"schema_version": 1,
"status": "synced",
"collection": "RFA-Meta",
"collection_key": "TZQEP4NH",
"added": 8,
"skipped": 3,
"failed": 1
}
If Zotero is unavailable, write the same file with status: "skipped" and a
human-readable reason.
Better BibTeX "Keep updated" auto-export normally refreshes manuscript/_src/refs.bib within seconds of a Zotero change. This phase verifies the snapshot actually updated before downstream skills consume it.
Read SSOT.yaml → truth.refs_bib. Default: manuscript/_src/refs.bib. If absent (legacy project), fall back to manuscript/_src/refs.bib and emit a WARN recommending SSOT migration.
Before entering the 10s polling loop in Step 2.5.2, verify both preconditions. If either fails, abort Phase 2.5 with setup instructions instead of waiting for a timeout that will never resolve.
Better BibTeX is answering. Probe the running plugin, not a file on disk:
curl -s -m 5 -o /dev/null -w "%{http_code}" \
http://127.0.0.1:23119/better-bibtex/json-rpc # expect 200
A non-200 means Zotero is closed or BBT has not finished starting. Retry once after Zotero's window is up; BBT registers its endpoint a few seconds after the app does.
⚠️ Do not gate on ~/Zotero/better-bibtex/read-only.json. Current BBT releases keep
auto-export registrations in their own store, so that file is routinely [] on a
perfectly healthy install. Treating an empty list as "not configured" skips this phase
on working setups — and a skipped Phase 2.5 is how a stale refs.bib and an invented
citekey reach a manuscript.
On failure print:
Phase 2.5 skipped: Better BibTeX did not answer on
127.0.0.1:23119(HTTP<code>). Open Zotero, wait for it to finish loading, then re-run/lit-sync.
Target refs.bib exists. The resolved truth.refs_bib path from Step 2.5.1 must exist on disk (even empty is OK — BBT will overwrite). On failure print:
Phase 2.5 skipped: target snapshot
<path>not found. Configure BBT auto-export with "On Change" to the SSOT path, then re-run.
In either early-exit, set refs_bib_refreshed: false + reason: "precondition:<which>" in the Step 2.5.3 JSON and return control to the caller. Record it and tell the user; nothing downstream enforces it. verify_refs.py has never read this flag, and the sentence that said it did was the only thing standing between a stale refs.bib and a manuscript.
After Phase 2 adds items:
stat -f "%m" manuscript/_src/refs.bib before Zotero writes.<project>/manuscript/_src/refs.bib) and refer to docs/zotero_policy.md §Setup.File → Export Library → Better BibTeX → target path.Append to the JSON written in Step 2.3:
{
"refs_bib_path": "manuscript/_src/refs.bib",
"refs_bib_mtime": "2026-04-24T14:32:11Z",
"refs_bib_refreshed": true,
"citekeys_verified": ["smithDeepLearningRadiology2024", "..."]
}
If refresh failed, set refs_bib_refreshed: false and include reason. The flag records whether the export ran. It is a note to the reader, not a gate.
Run only when the user asks for full text (e.g. "download the PDFs", "fetch full
text", or a worklist supplied with that intent). Default /lit-sync stays metadata-only
and network-light — do not auto-run this phase. Runs after items are in Zotero (Phase 2)
and the snapshot is verified (Phase 2.5), before Obsidian notes (Phase 3).
There are two complementary retrieval routes; offer both and reconcile them in one report:
Delegate to the /fulltext-retrieval engine (do not re-implement the OA cascade or
import its code; invoke it by path). Resolve the engine as:
ENGINE="${MEDSCI_SKILLS_ROOT:-$HOME/workspace/medsci-skills}/skills/fulltext-retrieval/fetch_oa.py"
python3 "$ENGINE" <worklist> -o pdfs/ -e <contact-email> --report pdfs/retrieval_report.json
<worklist> is the DOI/PMID(/Title) list — the Phase-1 .bib DOIs, the worklist supplied
in the standalone mode below, or the project collection's DOIs. Output: pdfs/*.pdf for
/meta-analysis and pdf_to_md.py, plus
pdfs/retrieval_report.json (per-DOI status/source/title_match).
Emit ${MEDSCI_SKILLS_ROOT:-$HOME/workspace/medsci-skills}/skills/fulltext-retrieval/references/find_available_pdf.js
for the user to paste into Zotero (Tools → Developer → Run JavaScript) with the project
collection selected. It triggers Zotero's own addAvailablePDF/addAvailablePDFs, which
reuse the user's OpenURL resolver / institutional proxy — so it typically retrieves more
than OA-only, while no credentials or institutional identifiers enter this skill. The
no-code equivalent is right-click → "Find Available PDF". This route is user-initiated and
session-dependent; record its {attached, missing} summary from the printed JSON.
Merge Route A's pdfs/retrieval_report.json (and the user-reported Route B summary) into
references/fulltext_retrieval.json (owner of this file is /lit-sync):
{
"schema_version": 1,
"retrieved_oa_disk": [{"doi": "...", "source": "unpaywall", "file": "...", "title_match": "match"}],
"retrieved_zotero_native": [{"doi": "...", "via": "addAvailablePDF"}],
"not_retrieved": [{"doi": "...", "journal": "..."}],
"institutional_fallback": ["<DOIs needing institutional access / ILL / author contact>"],
"title_mismatch_flagged": ["<DOIs whose downloaded PDF title did not match>"]
}
Also append a short fulltext block (counts) to references/zotero_collection.json.
not_retrieved DOIs are candidates for institutional access, interlibrary loan, or author
contact — never bypass paywalls or access controls from this skill.
# Default English layout; substitute the vault's existing folder if one is present
# (e.g. "02 연구/문헌/" for a Korean-structured vault — see references/locale/ko/note_templates.md).
ls "$VAULT/Literature/" | grep -v "📊" | wc -l
For each .bib entry, create Literature/{citekey}.md (or the vault's existing literature folder).
Skip if the file already exists (never overwrite).
A literature note's filename and its citekey: field assert that an entry with that key
exists in Zotero. Every downstream use depends on it: [@key] in a manuscript, [[key]]
between notes, the Zotero Integration plugin writing {{citekey}}.md into the same folder.
A key that resolves to nothing turns all three into dead ends at once — and the note still
looks correct, which is why this goes unnoticed for months.
So the key is read, never composed:
.bib entry, or ask Better BibTeX
(item.search over json-rpc — see references/bbt_lookup.md).zotero_add_by_doi) and let BBT mint
the key. Phase 2 owns that step for a reason: a note written ahead of its library entry
has no key to be right about.citekey: "" and the tag
_needs-citekey. An empty field is recoverable; an invented one is not, because nothing
downstream can tell it apart from a real key.Verify before finishing:
python3 scripts/check_citekey_provenance.py --vault "$VAULT" --bib "$REFS_BIB"
Every reported INVENTED is a note whose key exists nowhere — fix it here rather than
letting it reach a manuscript.
---
notetype: literature
citekey: "{citekey}"
title: "{title}"
authors: "{authors}"
journal: "{journal}"
year: {year}
doi: "{doi}"
pmid: "{pmid}"
created: "{today}"
tags:
- type/literature
- _unread
---
# {title}
## Bibliographic info
- **Authors**: {authors}
- **Journal**: {journal}{volume_issue_pages}
- **Year**: {year}
- **DOI**: [{doi}](https://doi.org/{doi})
{pmid_line}
## Key points (in my own words)
## My thoughts
## Related notes
- [[Research Hub]]
- [[Papers & Reviews]]
-
-
(For a Korean-structured vault, use the Korean-heading template in references/locale/ko/note_templates.md and the vault's own hub-note names.)
Rules:
notetype: literature — compatible with the Zotero Integration template._unread tag — change to _read later after the user reads the PDF in Zotero and adds highlights.## Key points and ## My thoughts blank — the user fills these in personally.## Related notes contains 2 hub links + 2 empty slots (reserved for later concept-note linking).Obsidian Literature Notes:
Created: 8 notes (new)
Skipped: 3 notes (already exist)
Location: Literature/
Total in vault: 12 literature notes
Run this phase only when there are ≥10 literature notes in the vault. If fewer exist, print a status message like "N literature notes — concept extraction unlocks at ≥10" and stop.
Read all files under Literature/*.md (or the vault's existing literature folder):
Exclude from concept candidates:
Whatever remains becomes a concept-note candidate.
Create Concepts/{concept name}.md (or the vault's existing concept-note folder):
---
title: "{concept name}"
type: concept
tags:
- concept
- {domain tag}
aliases:
- {alternative name}
related_papers:
- "[[{lit-note-1}]]"
- "[[{lit-note-2}]]"
- "[[{lit-note-3}]]"
status: 🌱Seedling
---
# {concept name}
## Definition (My Understanding)
> TODO: write in your own words
## Why it matters
{why the concept matters in this domain — AI supplies a draft}
## Per-paper perspectives
- **[[{lit-note-1}]]**: {this paper's angle}
- **[[{lit-note-2}]]**: {a different angle}
- **[[{lit-note-3}]]**: {comparison / complement}
## Related concepts
- [[{another concept}]]
## Open questions
- {open question 1}
- {open question 2}
## Related notes
- [[Research Hub]]
- [[{related project hub}]]
- [[{lit-note-1}]]
- [[{lit-note-2}]]
(For a Korean-structured vault, use the Korean-heading concept template in references/locale/ko/note_templates.md.)
Key rules:
## Definition section as a > TODO marker — the 2nd-layer note only becomes
meaningful once the user writes the definition in their own words.status always starts at 🌱Seedling.## Related notes (vault convention).Concept-note candidates (≥3 papers cross-referenced):
1. {Concept A} (4 papers)
2. {Concept B} (3 papers)
3. {Concept C} (5 papers)
Create? (all / selected / skip)
Create only after user confirmation. Auto-draft but always confirm.
This skill can run without a fresh .bib file.
On an explicit concept-extraction request, scan existing
Literature/*.md (or the vault's existing literature folder) and run only Phase 4.
On a "tidy this project's references" request, locate .bib files inside the
workspace and run Phase 1–3.
On a "sync Zotero" request, diff the Zotero collection against the .bib file
and add whatever is missing.
When the user supplies a list of PMIDs (e.g., from a HANDOFF or a colleague), resolve PMIDs to DOIs via PubMed esummary first, then enter Phase 2 with the DOIs:
PMIDS="12345,67890,..."
curl -s "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi?db=pubmed&id=${PMIDS}&retmode=json" \
| jq -r '.result | to_entries[] | select(.key != "uids") | "\(.value.uid)\t\(.value.elocationid)\t\(.value.title)"'
For each resolved DOI, search-first with zotero_search_items, then call
zotero_add_by_doi — the search is what dedupes (add-by-doi alone does not). For items
already in the library (detected via zotero_search_items by DOI), use
zotero_manage_collections to attach them to the project collection without re-adding —
re-adding by URL/PubMed-URL would bypass the search dedup and create duplicates. Record both
added and existing items in references/zotero_collection.json.
If a PMID has no DOI in PubMed (rare; older papers, non-indexed), fall back to
zotero_add_by_url with the PubMed URL and mark the entry as no_doi: true.
When the user supplies a worklist file (a .tsv/.csv/.md table with a DOI column,
optional PMID/Title, or a plain DOI-per-line list — e.g. an SR include set), enter
Phase 2 directly from it: resolve any PMID-only rows to DOIs (esummary above), then run the
search-first dedupe + add loop. The same worklist file feeds Phase 2.7 Route A
(fetch_oa.py reads .tsv/.csv/.md/plain natively), so no reformatting is needed.
## Definition of a concept note — keep the TODO marker; the
essence of the 2nd-layer note is the user's own wording.refs.bib to compensate (violates artifact contract).refs.bib directly. Only Better BibTeX auto-export may write that file. If auto-export is broken, fix the Zotero setup rather than writing the file from this skill.SSOT.yaml reference_manager.required_for), abort with instructions to flag [@NEW:topic] placeholders in the manuscript and notify the owner./fulltext-retrieval engine) and the user-run Zotero "Find Available PDF" snippet
(which uses the user's own proxy config). Never automate authenticated browser sessions,
never bypass paywalls/access controls, and never hard-code institutional proxies,
credentials, or hosts into this skill. not_retrieved items are routed to institutional
access / ILL / author contact, not worked around.Frequently asked questions
Takes the .bib output of /search-lit (or any user-specified .bib file) and synchronizes the references into the Zotero library and Obsidian literature notes. When enough literature notes accumulate, extracts cross-cutting concept notes.
The source record exposes this install command: npx skills add https://github.com/Aperivue/medsci-skills --skill "skills/lit-sync". Inspect the command and pinned source before running it.
Static rules flagged write-files, network, exec-script in the source; the page lists the matching lines and excerpts.
Alternatives
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
coreyhaines31/marketingskills
When the user wants to reduce churn, build cancellation flows, set up save offers, recover failed payments, or implement retention strategies. Also use when the user mentions 'churn,' 'cancel flow,' 'offboarding,' 'save offer,' 'dunning,' 'failed payment recovery,' 'win-back,' 'retention,' 'exit survey,' 'pause subscription,' 'involuntary churn,' 'people keep canceling,' 'churn rate is too high,' 'how do I keep users,' or 'customers are leaving.' Use this whenever someone is losing subscribers o
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.