Lobe 04 · The Brain

Build your brain

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.

An OKF brain — your knowledge written in the Open Knowledge Format — is nothing fancy: a folder of text files on your computer. Each file is one "concept." (A "markdown file" is just a plain text file whose name ends in .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.

1Make one folder and put every concept in it

First, let's make the folder that will be your brain. Pick your computer below and follow the clicks.

On a Mac:

On Windows:

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:

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.

What's "frontmatter"? It's the little info block at the very top of each file, fenced between two lines of three dashes (---). 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.

2Add an 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

3Quick consistency check

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.

✅ Lobe 04 complete when: you have a folder with 5+ concept files and an 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.