AN
anki-update
Update Anki notes one by one from a folder of markdown files.
Install
mkdir -p .claude/skills/anki-update && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15125" && unzip -o skill.zip -d .claude/skills/anki-update && rm skill.zipInstalls to .claude/skills/anki-update
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Update Anki notes one by one from a folder of markdown files.61 charsno explicit “when” trigger
About this skill
Anki Apy Update Notes Skill (One-by-One)
When to Use
Update Anki notes individually from a folder. Perfect for syncing batch changes efficiently.
Usage
./.github/skills/anki-update/update-anki-notes.sh <folder_path>
Example
./.github/skills/anki-update/update-anki-notes.sh "notes/CFA Level 1 Derivatives"
What It Does
- Scans the folder for all
.mdfiles - Updates each note one by one in Anki
- Shows progress with a checkmark (✓) or X for each file
- Displays a summary count at the end
Output
Updating notes from folder: notes/CFA Level 1 Derivatives
[1] Updating: Advantage of Derivative.md ... ✓
[2] Updating: Call Option.md ... ✓
[3] Updating: Derivative.md ... ✓
...
Summary: 29/29 files updated successfully
Markdown File Format
Each .md file should have this structure:
# Note (nid: <note_id>)
model: Basic (1 cards)
tags:
## Front
Question or topic
## Back
Answer or definition
The script automatically extracts and normalizes these fields for Anki import.