create_obsidian_flashcards

create_obsidian_flashcards is a skill for Claude Code, Codex from luna-jmy/thinkdokit-skills. It costs 34 tokens per session (1,123 once invoked), scanned A, original, MIT.

A flashcard-writing helper for Obsidian, a note-taking app, using the syntax understood by its Spaced Repetition plugin. It converts notes into question-and-answer, two-way, multi-line, or fill-in-the-blank cards.

In plain words
What is it for?
Use it to turn notes into review cards, organize them into decks with tags, and create cards for definitions, code, lists, formulas, or missing-word practice.
Why use it?
It removes the work of formatting study cards by hand and keeps them recognizable to the plugin. The cards can retain Markdown features such as code, formulas, images, audio, and video.

Skill for Claude CodeCodex

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

Good fit Use it to turn notes into review cards, organize them into decks with tags, and create cards for definitions, code, lists, formulas, or missing-word practice.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/luna-jmy/thinkdokit-skills/spaced-repetition
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 luna-jmy/thinkdokit-skills --skill spaced-repetition
Clone the repo
git clone --depth 1 https://github.com/luna-jmy/thinkdokit-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 create_obsidian_flashcards

README.md
[![agentmods](https://agentmods.dev/badge/skills/luna-jmy/thinkdokit-skills/spaced-repetition/github.svg)](https://agentmods.dev/skills/luna-jmy/thinkdokit-skills/spaced-repetition)
Your own site
<a href="https://agentmods.dev/skills/luna-jmy/thinkdokit-skills/spaced-repetition"><img src="https://agentmods.dev/badge/skills/luna-jmy/thinkdokit-skills/spaced-repetition/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 create_obsidian_flashcards

Your own site · 80×15
<a href="https://agentmods.dev/skills/luna-jmy/thinkdokit-skills/spaced-repetition"><img src="https://agentmods.dev/badge/skills/luna-jmy/thinkdokit-skills/spaced-repetition.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,123 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.00034 $0.01123
Opus 5 $0.00017 $0.00562
Sonnet 5 $0.00007 $0.00225
Haiku 4.5 $0.00003 $0.00112

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

Security

Grade A, and why

create_obsidian_flashcards 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 12d ago.

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.

spaced-repetition/SKILL.md · 72 lines

What it actually says

核心目标

帮助将用户的笔记、知识点转化为符合 Obsidian Spaced Repetition 插件语法的闪卡(Flashcards),以便在 Obsidian 中进行间隔重复复习。

闪卡基础语法规则

在制作闪卡时,必须遵循以下语法规则:

1. 牌组标签 (Deck Tags)

每一条闪卡必须位于一个带有特定标签的笔记中,这样插件才能识别并将其归入对应的牌组:

  • 默认主牌组:#flashcards
  • 子牌组:#flashcards/子牌组名称 (例如:#flashcards/计算机网络)

2. 问答卡片 (Q&A Cards)

问答卡分为单行多行,并且都支持正向(只问一次)和双向(正反面交换问两次)。

单行卡片 (Single-line)

  • 单向 (正向): 使用 :: 分隔问题和答案。
    • 格式: 问题;;答案
    • 示例: Obsidian 是一款什么软件?;;一款本地知识管理和笔记软件。
  • 双向 (正反向): 使用 ;;; 分隔。卡片会生成两张,一张问问题,一张问答案。
    • 格式: 问题;;;答案
    • 示例: 苹果的英文单词是?;;;Apple

多行卡片 (Multi-line)

适用于问题或答案包含多行文本(如列表、代码块、长段落等)的情况。

  • 单向 (正向): 使用 ? 在单独的一行作为分隔符。注意:分隔符必须单独占一行!
    • 格式:
      这里是多行的问题
      可以是代码块或列表
      ?
      这里是多行的答案
      
  • 双向 (正反向): 使用 ?? 在单独的一行作为分隔符。注意:分隔符必须单独占一行!
    • 格式:
      概念的名称
      ??
      概念的详细多行解释
      

3. 填空卡片 (Cloze Cards)

适用于在一段完整文本中“挖空”关键信息的场景。

  • 语法:
  花括号: {{被挖空的内容}}
  自定义:{{[123::]answer[::hint]}}
  • 注意事项: 填空卡片所在的笔记同样需要包含 #flashcards 标签。
  • 示例: Obsidian Spaced Repetition 插件默认使用 {{?}} 或者 {{;;}} 来制作多行或单行的闪卡。使用自定义格式制作{{1::Anki::软件名称}}同款{{1::填空::类型}}。

扩展支持

  • 富文本: 闪卡内容完全继承 Obsidian 的 Markdown 支持,这意味着你可以使用图片、音频、视频、LaTeX 公式语法($$math$$)、代码高亮和脚注。
  • 上下文标题: 卡片会自动根据其所在的标题层级生成上下文(如 笔记标题 > 一级标题 > 二级标题),这对于理解卡片的背景很有帮助。

工作流执行步骤

  1. 分析内容: 阅读用户提供的文本素材或知识点。
  2. 选择题型: 根据知识的特性选择合适的卡片类型:
    • 如果是简短、对应关系明确的知识,使用单行卡片
    • 如果是外语单词或可逆背诵的概念,使用双向卡片
    • 如果是复杂的步骤、代码或解释,使用多行卡片
    • 如果是需要记忆句子中的特定关键词或上下文,使用填空卡片
  3. 输出闪卡: 生成对应格式的 Markdown 文本,并确保顶部或合适位置包含 #flashcards 或用户指定的牌组标签。
    • 如果是知识用 #knowledge/{领域} 牌组
    • 如果是书籍,用 #book/{领域}/{类型} 牌组,如 #book/AIGC/定义
    • 其他用 #flashcards/{领域} 牌组
  4. 审核优化: 确保问题精炼、答案准确无歧义且尽量与原文一致。避免一张卡片包含过多信息(拆分为多张小卡片效果更好)。
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. 12d ago First seen · 72 lines · 34 tokens per session scan A 753c1fb92fd4

Subscribe to this mod's changes

create_obsidian_flashcards is a skill published in the GitHub repository luna-jmy/thinkdokit-skills (5 stars, last pushed 5mo ago), licensed MIT. It adds 34 tokens to every session and 1,123 once invoked, about $0.0002 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

hr-onboarding

A new-hire onboarding plan as a single page — first week schedule, buddy + manager intro, learning track, equipment checklist, and "you're set when…" outcomes. Use when the brief mentions "onboarding", "new hire", "first week plan", or "入职".

nexu-io/open-design · 62 tokens

book-mirror

Take any book (EPUB/PDF), produce a personalized chapter-by-chapter analysis. Each chapter is preserved in detail (The Chapter) and mirrored back to the reader's actual life (The Mirror) using brain context. The mirror observes and resonates — a friend pointing out parallels, NOT a consultant rearranging the reader's…

garrytan/gbrain · 138 tokens

miniapp

Build a tiny interactive HTML playground only when someone asks to see, play with, or step through a mechanism.

yc-software/qm · 25 tokens

eli5

Explain research, papers, or technical ideas in plain English with minimal jargon, concrete analogies, and clear takeaways. Use when the user says "ELI5 this", asks for a simple explanation of a paper or research result, wants jargon removed, or asks what something technically dense actually means.

companion-inc/feynman · 63 tokens

deck-course-module

A course or workshop slide template with persistent learning goals, teaching pages, multiple-choice self-tests, and a wrap-up.

nexu-io/html-anything · 25 tokens

master-yinguang

A reference-based assistant for questions about Yinguang and Pure Land Buddhism, a Buddhist tradition focused on faith, ethical living, and practice connected with rebirth in the Pure Land. It can answer in Yinguang’s historical teaching style.

xr843/Master-skill · 274 tokens