anki-card-maker

anki-card-maker is a skill for Claude Code, Codex from serejaris/kimi-skills. It costs 72 tokens per session (1,029 once invoked), scanned A, original, MIT.

A converter that turns study notes or other text into question-and-answer flashcards and writes them as an Anki-compatible CSV file. Anki is a flashcard app that schedules reviews to support long-term memory.

In plain words
What is it for?
Use it to convert Markdown or plain-text study materials into cards for Anki, or turn existing JSON flashcard data into an importable CSV.
Why use it?
Creating useful cards by hand takes time and makes it easy to overlook important points. It extracts definitions, questions, lists, and other structured knowledge from notes, or formats supplied card data.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to convert Markdown or plain-text study materials into cards for Anki, or turn existing JSON flashcard data into an importable CSV.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/serejaris/kimi-skills/anki-card-maker
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add serejaris/kimi-skills --skill anki-card-maker
Clone the repo
git clone --depth 1 https://github.com/serejaris/kimi-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for anki-card-maker

README.md
[![agentmods](https://agentmods.dev/badge/skills/serejaris/kimi-skills/anki-card-maker/github.svg)](https://agentmods.dev/skills/serejaris/kimi-skills/anki-card-maker)
Your own site
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/anki-card-maker"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/anki-card-maker/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for anki-card-maker

Your own site · 80×15
<a href="https://agentmods.dev/skills/serejaris/kimi-skills/anki-card-maker"><img src="https://agentmods.dev/badge/skills/serejaris/kimi-skills/anki-card-maker.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,029 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00072 $0.01029
Opus 5 $0.00036 $0.00515
Sonnet 5 $0.00014 $0.00206
Haiku 4.5 $0.00007 $0.00103

Measured 11d ago against content hash 4688f235cd08, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

anki-card-maker scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/generate_flashcards.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/anki-card-maker/SKILL.md · 96 lines

How it starts

The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.

anki-card-maker

Automatically extracts knowledge points from study materials and generates flashcards in "front question + back answer" format, outputting a CSV file ready for direct import into Anki.

Two working modes are supported:

  • auto mode: Rule-based extraction of definitions, Q&A pairs, lists, and other structured knowledge from Markdown/plain text
  • json mode: Accepts pre-constructed JSON flashcard data and formats it as Anki CSV

Quick Start

# Auto-extract flashcards from Markdown notes
python scripts/generate_flashcards.py --input notes.md --output flashcards.csv

# Generate Anki CSV from JSON data (ideal for agent calls)
python scripts/generate_flashcards.py --mode json --input cards.json --output flashcards.csv

# Use via stdin/stdout
cat notes.md | python scripts/generate_flashcards.py > flashcards.csv

Agent Workflow

When a user provides study materials and requests flashcard generation, the recommended workflow is:

  1. Read the material: Read the study material file provided by the user
  2. Intelligent extraction: Analyze the material content, extract core knowledge points, and generate high-quality Q&A pairs. Follow these principles:
    • Each card focuses on a single knowledge point (minimum information principle)
    • Use precise question format on the front; avoid vague questions
    • Provide concise but complete answers on the back
    • Cover core concepts, definitions, formulas, cause-and-effect relationships, comparisons, etc.
  3. Generate CSV: Write the extracted Q&A pairs as JSON, then call the script to convert to Anki CSV
  4. Deliver the file: Inform the user of the output path and import instructions

Agent Call Example

Construct extracted knowledge points as a JSON array and convert to CSV via --mode json:

cat <<'EOF' > /tmp/cards.json
[
  {"front": "What is photosynthesis?", "back": "The process by which plants use light energy to convert CO₂ and H₂O into organic matter while releasing O₂", "tags": "biology"},
  {"front": "What is the chemical equation for photosynthesis?", "back": "6CO₂ + 6H₂O → C₆H₁₂O₆ + 6O₂", "tags": "biology"}
]
EOF
python scripts/generate_flashcards.py --mode json --input /tmp/cards.json --output flashcards.csv

Read the full file on GitHub · 96 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 96 lines · 72 tokens per session scan A 4688f235cd08

Subscribe to this mod's changes

anki-card-maker is a skill published in the GitHub repository serejaris/kimi-skills (6 stars, last pushed 1mo ago), licensed MIT. It adds 72 tokens to every session and 1,029 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

offensive-vuln-classes

Exploit development curriculum covering core vulnerability classes with real-world CVE case studies: stack/heap buffer overflows, use-after-free, integer overflows, format strings, type confusion, and race conditions. Use when learning or teaching vuln classes, researching specific CVE patterns, or building exploit…

SnailSploit/Claude-Red · 0 tokens

explain-this

Explain whatever the user is pointing at right now in plain language: a pending question, a piece of code, an error, a command output, or an artifact like a plan or findings report. Use when the user asks to "explain this", "what am I being asked", "what's happening right now", "help me understand this", "what does…

tobihagemann/turbo · 102 tokens

understand-change

Teach the user to deeply understand a change through interactive tutoring: restating understanding, drilling into why/what/how, and quizzing until mastery. The active counterpart to a one-shot explanation. Use when the user asks to "understand this change", "teach me this change", "help me understand what changed"…

tobihagemann/turbo · 96 tokens

ape-quiz-me

Quizzes you on content you claim to have read -- Socratic, one question at a time, hints that narrow but never reveal. Ends with a verdict on what you understood versus merely recited. Trigger on "ape quiz me", "quiz me on this", "test my understanding", "did I actually get this", or any request to be tested on shared…

arpitbbhayani/ape-skills · 81 tokens

ape-write-pseudocode

Guidelines for writing pseudocode for functions and algorithms. Use this skill whenever the user asks to write pseudocode, sketch out an algorithm, or describe the logic of a function at a high level. Trigger on phrases like "write pseudocode", "sketch this algorithm", "pseudocode for this function", or "describe the…

arpitbbhayani/ape-skills · 75 tokens

cizhuan-mudiban-xuangou-zhinan

A Chinese-language knowledge guide about choosing and installing ceramic tiles and wood flooring.

zx029w/zhuangxiu-skills · 103 tokens