Session 3 Slides: The Personal Exocortex

--:-- --
↓ Scroll for more

Session 3

The Personal Exocortex

AI Product Engineering

Block 1: Foundations & The Exocortex

Today’s Agenda

  • What Is an Exocortex?
  • Static Training Data vs Your Vault
  • Why Obsidian?
  • The Four Structural Elements
  • Vault Structure for This Course
  • Interactive: Exocortex Check (3 min)
  • Interactive: File This Note (3–4 min)
  • Lab: Build Your Vault (Core)

What Is an Exocortex?

An external cognitive system — a digital extension of your memory and reasoning.

  • Your brain: limited working memory, unreliable long-term storage
  • Exocortex: offloads this to a system you design and control
  • For AI engineers: becomes the knowledge layer your AI queries

Static Training Data vs Your Vault

❌ Training Data Only

  • Knowledge cutoff date
  • No domain-specific content
  • Hallucination risk

✅ Your Exocortex

  • Always up to date
  • Your specific domain
  • Grounded, verifiable answers

This vault becomes the foundation of your RAG pipeline.

Why Obsidian?

AI-Ready

Plain Markdown — exactly what AI models work best with

Portable

Copy, search, process with any tool — no lock-in

Durable

Still readable plain text in 20 years

The Four Structural Elements

  1. Atomic Notes — one idea per note, self-contained
  2. Links[[double brackets]] create a knowledge graph
  3. Tags#categories that cut across folders
  4. Maps of Content (MOCs) — index notes that navigate the vault

Interactive: Exocortex Check (1/3) (3 min)

True or false — call on a pair, then tap.

Interactive: Exocortex Check (2/3) (3 min)

True or false — call on a pair, then tap.

Interactive: Exocortex Check (3/3) (3 min)

True or false — call on a pair, then tap.

Vault Structure for This Course

vault/
├── 00-Inbox/        # Quick captures
├── 01-Concepts/     # Theory: what things are
├── 02-How-To/       # Practical: how to do things
├── 03-Project/      # Your AI product
│   ├── Product-Spec.md
│   └── Prompts.md
├── 04-References/   # External sources
└── MOC-Course.md    # Master index

Interactive: File This Note (3–4 min)

Classify each capture into the vault folder it belongs in.

Lab: Build Your Vault (Core) (1/2)

  1. 3.1: Install Obsidian → create vault → folders above
  2. Enable plugins: Backlinks, Graph view, Templates
  3. 3.2: Three atomic notes (3–5 sentences) + [[links]]

Lab: Build Your Vault (Core) (2/2)

  1. 3.3: 03-Project/MOC-AI-Product.md as running index
  2. 3.4: One external source — summary, URL, link to another note

Checkpoint: open Graph view — show links to a neighbour.

Session 3 Summary

  • Exocortex = external knowledge layer your AI will query
  • Obsidian: plain Markdown, portable, AI-ready
  • Four elements: atomic notes, links, tags, MOCs
  • Vault = raw material for RAG (Sessions 8–9)

Next Session: Context Engineering