Skip to main content

Generate flashcards from Obsidian notes using AI and sync them to Anki

Project description

ObsidianKi

Automated flashcard generation to Anki from your Obsidian vault.

Preview

Installation

# uv
uv tool install obsidianki
# uv (source)
uv tool install https://github.com/ccmdi/obsidianki.git

# pip
pip install obsidianki
# pip (source)
pip install https://github.com/ccmdi/obsidianki.git

Setup

Run:

obsidianki

This will start the interactive setup. Here's what you'll need:

  1. Obsidian Local REST API plugin setup:

    • Install plugin in Obsidian
    • Copy the API key from plugin settings
  2. AnkiConnect setup:

    • Add-on code: 2055492159
    • Keep Anki running

The interactive setup will guide you through model selection and configuration.

Usage

obsidianki                   # Generate flashcards
oki                          # Alias

Configuration

oki config                         # Show config
oki config get max_cards           # Get specific setting
oki config set max_cards 15        # Update setting
oki config set model "GPT-5"       # Switch AI model

Tags

oki tag                      # Show tags
oki tag add python 2.0       # Add/update tag weight
oki tag remove python        # Remove tag weight
oki tag exclude boring       # Exclude notes with 'boring' tag
oki tag include boring       # Remove 'boring' from exclusion list

Notes

# Process specific number of notes
oki --notes 5                         # Sample 5 random notes
oki --notes 10 --cards 20             # Sample 10 notes, max 20 cards total

# Process specific notes by name
oki --notes "React" "JavaScript"       # Process specific notes
oki --notes "React" --cards 6          # Process React note, max 6 cards

# Directory patterns with sampling
oki --notes "frontend/*"               # Process all notes in frontend/
oki --notes "frontend/*:5"             # Sample 5 notes from frontend/
oki --notes "docs/*.md:3"              # Sample 3 markdown files from docs/
oki --notes "react*:2" "vue*:1"        # Sample 2 React + 1 Vue note

# Mixed usage
oki --notes "React Hooks" "components/*:3"  # Specific note + 3 from pattern

Query mode

# Make flashcard without source note
oki -q "how to center a div"
oki -q "CSS flexbox" --cards 8

# Targeted extraction from source note(s)
oki --notes "React" -q "error handling"
oki --notes "JavaScript" "TypeScript" -q "async patterns" --cards 6

Advanced

# Deck management
oki --deck "Programming"             # Add cards to specific deck
oki deck                             # List all Anki decks
oki deck rename "Old" "New"          # Rename a deck

# History
oki history stats                    # View generation statistics
oki history clear                    # Clear processing history
oki history clear --notes "React*"   # Clear history for specific notes

# Templating
oki template add "programming" "--notes 'frontend/*' --cards 3' -b 1"
oki template use programming # runs the above command as "oki --notes 'frontend/*' --cards 3' -b 1"

How it works

Standard mode

  1. Finds old notes in your vault (configurable age threshold)
  2. Weights notes by tags and processing history (avoids over-processed notes)
  3. Generates flashcards using Claude 4 Sonnet
  4. Creates cards in Anki "Obsidian" deck (or DECK set in config)

Query mode

  • Standalone: Generates flashcards from AI knowledge alone based on your query
  • Targeted: Extracts specific information from selected notes based on your query

Configuration options

Setting Default Description
max_cards 6 Maximum cards per session
notes_to_sample 3 Number of notes to process in default mode
days_old 30 Only process notes older than N days
sampling_mode "weighted" "weighted" or "uniform" note selection
card_type "custom" "basic" or "custom" Anki card type
deck "Obsidian" Default Anki deck name
approve_notes false Review each note before processing
approve_cards false Review each card before adding to Anki
deduplicate_via_history false Avoid duplicates using processing history
deduplicate_via_deck false Avoid duplicates by checking existing deck cards
use_deck_schema false Match existing card formatting in deck
syntax_highlighting true Enable code syntax highlighting
upfront_batching false Process notes in parallel (faster)
batch_size_limit 20 Max notes per batch
batch_card_limit 100 Max cards per batch
density_bias_strength 0.5 Bias strength against over-processed notes (0-1)
search_folders [] Limit processing to specific folders (array)
vector_dedup false Enable semantic deduplication via embeddings
vector_threshold 0.7 Similarity threshold for duplicate detection (0-1)

Vector Deduplication

Avoid generating semantically similar flashcards using API embeddings (Gemini or OpenAI).

Enable

oki config set vector_dedup true

Index existing cards

oki vector index                    # Index cards from default deck
oki vector index --deck "My Deck"   # Index cards from specific deck

Commands

oki vector status                   # Show index stats
oki vector check "question text"    # Check if similar card exists
oki vector clear                    # Clear the index

How it works

  1. AI proposes flashcards via create_flashcards tool
  2. Each card is checked for semantic similarity against existing cards
  3. If similar cards exist, AI receives feedback: "Card 2 is 87% similar to 'What is polymorphism?'"
  4. AI can revise or confirm via submit_flashcards tool
  5. Accepted cards are indexed for future deduplication

Embeddings use Gemini (GEMINI_API_KEY) or OpenAI (OPENAI_API_KEY). The index is stored in ~/.config/obsidianki/vectors.json.

MCP

There is an experimental MCP server that runs Obsidianki as a subprocess. Useful if you want to generate flashcards from daily use with an LLM, such as if you ask questions back and forth and want to generate flashcards from that material.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

obsidianki-0.9.0.tar.gz (60.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

obsidianki-0.9.0-py3-none-any.whl (71.8 kB view details)

Uploaded Python 3

File details

Details for the file obsidianki-0.9.0.tar.gz.

File metadata

  • Download URL: obsidianki-0.9.0.tar.gz
  • Upload date:
  • Size: 60.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for obsidianki-0.9.0.tar.gz
Algorithm Hash digest
SHA256 f07cf9d43181aac9361023f87b1b4f4df8e49ba381e8e54a3d6ef47310ef9f2b
MD5 27d2d38691d53bad587b7f862f2156c4
BLAKE2b-256 74fd388ff51438523ea2658160eb9811b89f0883428dfff9f71a2af7f3807500

See more details on using hashes here.

Provenance

The following attestation bundles were made for obsidianki-0.9.0.tar.gz:

Publisher: release.yml on ccmdi/obsidianki

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file obsidianki-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: obsidianki-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 71.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for obsidianki-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a968f2a1262413d7915ed8d2320cd23a5daeb91d35d946a6dfbf5012f21bdbd1
MD5 0423ee651a09e3cd0c360e40695d88b3
BLAKE2b-256 b39733e24fa9fd87e7ed9146a8da5e7fc9f54788ca1f4681fe5413d0068097fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for obsidianki-0.9.0-py3-none-any.whl:

Publisher: release.yml on ccmdi/obsidianki

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page