MA
markdown-notes-to-cards
Use this flow when Markdown study notes in the repository need to become review cards for the English Memory Card site.
Install
mkdir -p .claude/skills/markdown-notes-to-cards && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15283" && unzip -o skill.zip -d .claude/skills/markdown-notes-to-cards && rm skill.zipInstalls to .claude/skills/markdown-notes-to-cards
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Use this flow when Markdown study notes in the repository need to become review cards for the English Memory Card site.119 chars · catalog description✓ has a “when” trigger
About this skill
Markdown Notes To Cards
Use this flow when Markdown study notes in the repository need to become review cards for the English Memory Card site.
Source Of Truth
- Store note files in
apps/english-memory-card/src/app/data. - The app reads
.mdfiles from that folder directly during development and production builds. - Each card section starts with a
##or deeper heading whose text begins with a date.
Supported heading formats:
## 2026-04-20 Topic## 2026/04/20 Topic## 2026.04.20 Topic## 2026年4月20日 Topic
Workflow
Edit the Markdown file directly, for example:
apps/english-memory-card/src/app/data/2026.md
Then run the app or a build:
npm start
npm run build
Output
- The website parses the Markdown files directly.
- No generated note module is required.
Validation
- Edit a Markdown file in
apps/english-memory-card/src/app/data. - Start the app with
npm startand verify the new cards appear. - Run
npm run buildbefore deploying if you want a production check. - Commit the Markdown source changes before deploying to GitHub Pages.