brain

English · 한국어 · Search

A personal knowledge base of everything I learn. Not a repo I fill by hand — three learning agent skills populate and keep it up to date automatically. It’s a living store.

Learning runs as a cycle called PTR (Place → Teach → Review):

place-me  →  teach-me  →  review-me
 (assess)     (learn)      (review)
   └──────────  levels.md  ──────────┘

PTR is the name for this three-skill loop. Run it once per topic: assess where you stand, learn piece by piece, then review until it sticks. Repeat as the level rises.

The three skills

This repo is built to work with the learning skills from the kidow/skills repository.

The three skills are tied together by a shared topic_name key: the notes/topic_name.md filename and the ## topic_name section in levels.md point to the same topic.

Optional companion: study-me

study-me is a fourth skill, outside the PTR loop. It extracts as many content-based questions as each note section supports and asks them one at a time — no grading, no spaced-repetition scheduling, just self-check against the original text. Useful for a low-pressure pass over notes without touching levels.md. No session state is persisted.

npx skills@latest add kidow/skills/study-me

Repository layout

brain/
├── notes/            # learned knowledge (written by teach-me, read by review-me)
│   ├── topic_name.md #  - one file per topic, no date (git history tracks time)
│   └── <domain>/     #  - notes auto-organize into domain subfolders as they grow
├── sheets/           # quick-reference cheat sheets (HTML, served via GitHub Pages)
├── drills/           # practice drills (HTML + JSON word data)
├── vocab/            # cross-language vocabulary book (HTML + JSON, one file per category)
├── levels.md         # per-topic level memory (Blank/Glimpsed/Grounded/Fluent)
└── README.md

Levels

Current level per topic — brain.dongwook.kim/levels

Notes

All knowledge notes served live at brain.dongwook.kim.

Languages — Japanese (45)
Languages — Chinese (18)
Languages — Russian (28)
Languages — Spanish (26)
Languages — German (25)
Languages — French (24)
Languages — Arabic (14)
Languages — English (38)
Music (2)
Art (1)
Economics / Finance (6)
Daily Life (2)
Science (1)
Technology (1)

Cheat Sheets

Quick-reference sheets served live at brain.dongwook.kim.

Arabic (3)
Japanese (15)
Russian (9)
Chinese (10)
German (9)
French (8)
Spanish (5)
English (39)
Music (1)
Economics / Finance (6)
Daily Life (1)
Technology (1)

Drills

Practice drills — spaced-repetition (SM-2) vocabulary review and stroke-order handwriting — served live at brain.dongwook.kim. Progress is stored in your browser’s localStorage only — it is not synced across devices.

Japanese (8)
Chinese (2)
English (1)
French (1)
Arabic (2)
Russian (3)
Spanish (1)
German (1)

Vocabulary

One concept shown in eight languages at once — English, Japanese, Chinese, French, German, Spanish, Russian, Arabic. Cut by category rather than by language, so you can see where the languages fail to line up. Concept lists come from standard sources (Swadesh, Berlin & Kay); words come from Wiktionary.

Installing the skills

npx skills@latest add kidow/skills/place-me
npx skills@latest add kidow/skills/teach-me
npx skills@latest add kidow/skills/review-me
npx skills@latest add kidow/skills/study-me  # optional, ungraded free study

Usage

Run the learning skills from inside this repository.

/place-me Japanese writing system   # assess level → record in levels.md
/teach-me Japanese writing system   # learn piece by piece → commit to notes/
/review-me                          # review weakest topics → update levels.md
/study-me Japanese writing system   # optional: free ungraded self-check, no levels.md update

Start your own brain

Copy the prompt below and paste it to your AI assistant (Claude Code recommended):

Set up a personal knowledge base using the PTR learning system (Place → Teach → Review).

1. Create a new git repository and open it in Claude Code.
2. Install the three learning skills:
   npx skills@latest add kidow/skills/place-me
   npx skills@latest add kidow/skills/teach-me
   npx skills@latest add kidow/skills/review-me
3. Create this file structure:
   - notes/      (empty folder — add a .gitkeep file so git tracks it)
   - levels.md   (empty file)
   - README.md   (copy from https://github.com/kidow/brain)

Once done, start with /place-me <topic> to assess your first topic.