You've written some concepts. Now assemble them into a real Open Knowledge Brain — which is just a folder of markdown files, plus one index. That folder is your AI brain.
.md instead of .txt — same
typing, nothing special to install.) No database, no app, no account, no payment — just a folder you could email to
yourself or zip up later.
First, let's make the folder that will be your brain. Pick your computer below and follow the clicks.
On a Mac:
my-ai-brain and press Return.On Windows:
my-ai-brain over the highlighted name and press Enter.Now you have an empty folder called my-ai-brain on your Desktop. Next, let's save each concept into it
as its own text file.
How to save one concept as a .md file:
TextEdit, and press Return. On Windows, press the Windows key,
type Notepad, and press Enter.my-ai-brain folder on the Desktop as the place to save it.profile.md (not just
"profile"). The .md at the end is what makes it a markdown file..md or .txt, click Use .md.Repeat that for each concept. Make one .md file per concept and keep them all loose inside
my-ai-brain (no folders inside folders for now — just keep it simple). When you're done it should look
like this:
my-ai-brain/
├── profile.md
├── projects.md
├── tools.md
├── voice.md
└── faq.md
Those names are just examples — use whatever concepts you actually wrote. The little lines and branches are just a drawing of "files inside a folder," not anything you type.
---). It tells an AI what the file is. The only required line is
type:. You added these back when you wrote your concepts — for example:
---
type: concept
title: Profile
description: Who I am and what I do
---
If any file is missing this top block, add one now before moving on.
index.md (the table of contents)OKF has one special file with a reserved name: index.md. Think of it as the table of contents
for your brain — a simple list of every other file and what's in it. This lets an AI glance at the list first and
decide what to read, instead of reading every file at once.
Make it exactly like you made the others: open TextEdit (Mac, set to Plain Text) or
Notepad (Windows), paste in the text below, then File → Save into your
my-ai-brain folder with the name index.md. Copy this and change the names/links to
match your real files:
---
type: index
title: My AI Brain
description: What's inside this brain
---
- [Profile](profile.md) — who I am and what I do
- [Projects](projects.md) — what I'm working on now
- [Tools](tools.md) — my stack
- [Voice](voice.md) — how I write
- [FAQ](faq.md) — questions I get asked a lot
Each list line follows the same pattern: - [Title](filename.md) — short note. The part in
square brackets is the name a human reads; the part in round brackets is the exact file name it points to, so it must
match a real file in your folder, spelled the same way.
Now your folder looks like this:
my-ai-brain/
├── index.md ← the map
├── profile.md
├── projects.md
├── tools.md
├── voice.md
└── faq.md
Open each file one more time and check these. Keeping them the same across every file is what "consistent frontmatter" means — it just helps the AI read your brain reliably.
--- info block (the frontmatter) and that block has a type: line.title: and a description: line (not strictly required, but they help
the AI a lot).--- lines around the info block: one on the line above it and one on the line below it,
with nothing else around them.index.md exactly.index.md.
Congratulations — that folder is a real Open Knowledge Brain. Next up — Lobe 05: wire it into your agent.
Tip: done beats perfect. You'll improve concepts once you've actually used the brain in Lobe 05 — that's when the gaps show up.