一键导入
flashcard
Create and edit flashcards for spaced repetition learning. Use when the user wants to create, modify, format, or troubleshoot flashcards in their notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create and edit flashcards for spaced repetition learning. Use when the user wants to create, modify, format, or troubleshoot flashcards in their notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Edit markdown tables via the edit tool. Read before add_table_column, update_table_column, or delete_table_column — especially for large tables (20+ rows).
Update the conversation title stored in the note frontmatter
Expose model-callable widget actions and configure turn-based play via Widget.md (actions, actors, agent blocks). Read after stateful-widget when humans and models take turns.
Build interactive HTML project widgets with persisted runtime state (games, counters, forms). Read before show_widget when user actions must survive reopening the note.
Create and edit Steward user-defined commands (UDCs). Use when the user wants to create, modify, or troubleshoot custom command workflows defined as YAML in the Steward/Commands folder.
Define safety rules to restrict AI from reading, listing, creating, editing, or deleting specific folders or files. Use when the user wants to set up guardrails, access rules, or protect sensitive areas.
基于 SOC 职业分类
| name | flashcard |
| description | Create and edit flashcards for spaced repetition learning. Use when the user wants to create, modify, format, or troubleshoot flashcards in their notes. |
This skill enables you to create and edit flashcards for spaced repetition learning. Flashcards are stored in markdown files with specific formatting rules.
Flashcards can be defined in two styles:
A single-line flashcard uses :: or ::: as separators:
Question :: Answer — Standard flashcard (question on front)Question ::: Answer — Reversed flashcard (both sides can be swapped)Examples:
What is the capital of France? :: Paris
The process of photosynthesis ::: Plants converting light energy into chemical energy
A multiple-line flashcard uses ? or ?? as separators:
Standard flashcard (?):
What are the three types of rock?
?
Igneous, sedimentary, and metamorphic
Reversed flashcard (??):
The Pythagorean theorem
??
a² + b² = c² in a right triangle
Flashcards must always belong to a desk, indicated by tags prefixed with #flashcards:
#flashcards/Math — All math flashcards#flashcards/Math/Addition — Specific topic within math#flashcards/History/WorldWar2 — Multi-level desk hierarchyExample:
#flashcards/Math/Addition
What is 2 + 2? :: 4
What is 15 + 27? :: 42
#flashcards/Math/Subtraction
What is 10 - 3? :: 7
What is 50 - 18? :: 32
#flashcards)/ separatorFor flashcards that need to be reviewed in a specific order, use @start and @end markers:
@start <Description>
Question 1 :: Answer 1
Question 2 :: Answer 2
Question 3 :: Answer 3
@end
@start marker must include a description@start and @end are always reviewed in sequenceExample:
#flashcards/Spanish/Verbs
@start Present tense conjugation of "hablar"
yo :: hablo
tú :: hablas
él/ella :: habla
nosotros :: hablamos
@end
Regular flashcard outside sequence :: Answer
#flashcards/ tag@start <Description> and @end for ordered review#flashcards/Biology
What is DNA? :: Deoxyribonucleic acid, the molecule that carries genetic information
What is RNA?
?
Ribonucleic acid, involved in protein synthesis and gene regulation
@start Cell organelles and functions
Mitochondria :: Powerhouse of the cell, produces ATP
Nucleus :: Contains genetic material and controls cell activities
Ribosome :: Protein synthesis
@end
❌ Missing desk tag:
What is 2 + 2? :: 4
❌ Empty line within flashcard:
#flashcards/Math
What is the Pythagorean theorem?
:: a² + b² = c²
❌ Only one empty line between flashcards:
#flashcards/History
Question 1 :: Answer 1
Question 2 :: Answer 2
✅ Correct format:
#flashcards/History
Question 1 :: Answer 1
Question 2 :: Answer 2
When creating flashcards for users:
::: or ??) when both directions make sense (e.g., definitions, translations)@start/@end when order matters (e.g., conjugations, steps in a process)# Spanish Vocabulary
#flashcards/Spanish/Greetings
Hello :: Hola
Goodbye :: Adiós
Please ::: Por favor
#flashcards/Spanish/Verbs
@start Present tense - estar (to be)
yo :: estoy
tú :: estás
él/ella :: está
nosotros :: estamos
@end
What is the past tense of "ir"?
?
Fui, fuiste, fue, fuimos, fueron
#flashcards/Spanish/Numbers
One to ten in Spanish
?
Uno, dos, tres, cuatro, cinco, seis, siete, ocho, nueve, diez
#flashcards/:: for standard, ::: for reversed single-line cards? for standard, ?? for reversed multiple-line cards@start <Description> and @end for sequential review@start marker must always include a description