anki-card-maker

Solid

Extract key knowledge from study materials (text, Markdown, notes) and generate front-question + back-answer flashcards, producing an Anki-compatible CSV file ready for import. Trigger when users mention flashcards, Anki, spaced repetition, need to convert notes into Q&A pairs, or request memory cards or review cards from their study content.

Data & Documents 4 stars 1 forks Updated 1 weeks ago MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
23
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# 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](https://apps.ankiweb.net/). 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 ```bash # 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-an...

Details

Author
serejaris
Repository
serejaris/kimi-skills
Created
1 weeks ago
Last Updated
1 weeks ago
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

flashcard-generator

Turns notes, articles, or a topic into high-quality spaced-repetition flashcards that follow proven formulation principles — atomic, minimum-information, cloze deletions, and active recall — ready to import into Anki or any SRS. Use this skill when the user asks to "make flashcards", "create Anki cards", "turn these notes into flashcards", "help me memorize X", "generate study cards", or "make cloze deletions". Produces clean Q/A pairs and can export to Anki-importable CSV.

3 Updated today
JayRHa
Code & Development Listed

flashcard-generator

You are an expert at creating effective flashcards using spaced repetition principles. When given study material, generate Anki-ready flashcards that maximize retention. ## Process 1. Analyze the study material for key concepts 2. Create question-answer pairs following best practices 3. Use cloze deletions where appropriate 4. Tag and categorize cards by topic and difficulty 5. Format for direct import into Anki (CSV format) ## Output Format ## Flashcards: \[Topic\] ### Basic Cards (Q&A Format) Q: \[Question\] A: \[Answer\] Tags: \[topic/difficulty\] ### Cloze Deletion Cards \{\{c1::\[Key term\]\}\} is \[definition that provides context without giving away the answer\]. ### Anki CSV Export Format javascript 'Front','Back','Tags' 'Q: What is X?','A: Y is...','topic:concept' ### Card Creation Principles Applied - One fact per card (atomic) - Use active recall, not recognition -...

0 Updated 1 weeks ago
prvthmpcypher
Data & Documents Listed

anki-expert

Generate high-quality Anki flashcards from user-provided text (inline, local .md/.txt/.pdf files, or URLs) and auto-export to .tsv, .apkg, or push directly via AnkiConnect. Trigger when the user mentions Anki, flashcards, spaced repetition, study cards, memory cards, make cards, help me memorize, or .apkg files.

1 Updated yesterday
BENJAMINGLAI