Open Brain System The open-source AI-integrated brain system — pgvector + MCP + Supabase

Building a Second Brain (BASB) vs. Building an Open Brain

Tiago Forte wrote a book about capturing notes for humans to read later. That methodology has nothing to say about AI agents querying your memory — which is the actual second-brain problem in 2026.


BASB in One Paragraph

The BASB Framework

Tiago Forte's Building a Second Brain (BASB) is a personal knowledge management (PKM) system designed to offload cognitive load into a digital environment. Formalized through his book published in 2022 and developed via platforms like fortelabs.com and buildingasecondbrain.com, the methodology focuses on human-driven capture and review. It operates as an app-agnostic framework, though Forte frequently references Notion and Evernote as primary implementation tools.

The system relies on two core pillars: PARA and CODE. PARA organizes information by actionability rather than topic, splitting data into Projects (short-term goals), Areas (ongoing responsibilities), Resources (interests), and Archives (completed items). The CODE workflow manages the lifecycle of a note: Capture, Organize, Distill, and Express. A critical component is Progressive Summarization, where users iteratively bold and highlight notes to create layers of essence, ensuring that future retrieval triggers biological memory without requiring a full re-read of the source material.

What BASB Doesn't Solve

The AI Integration Gap

BASB was designed for an era where digital memory functioned as a searchable file cabinet. It relies on keyword search and manual folder placement, which are rigid abstractions. In the current environment of LLMs and autonomous agents, building a second brain vs open brain becomes a conflict between manual curation and semantic retrieval. BASB lacks a protocol for agentic interaction; it contains no framework for Model Context Protocol (MCP) or embedding pipelines.

The PARA structure is fundamentally incompatible with how AI agents query data. An agent does not benefit from being told to look in a specific /Projects/Client-X folder. Instead, an agent requires semantic search—the ability to identify every instance where the user expressed concern over pricing for Client X across disparate notes. This is a vectorization problem, not a filing problem.

To solve this, systems must move toward vector databases like pgvector. While BASB organizes by actionability, an open brain architecture organizes by mathematical proximity in a latent space. The following SQL example demonstrates how a system using pgvector retrieves context based on semantic similarity rather than folder paths:

SELECT content FROM notes 
ORDER BY embedding <=> '[0.12, -0.23, 0.45, ...]' 
LIMIT 5;

Where BASB Still Earns Its Keep

Human-Workflow Scaffolding

Despite the shift toward AI, the behavioral disciplines of BASB remain valuable. The 'Capture' and 'Distill' phases of the CODE workflow provide a necessary human filter. Without a disciplined capture habit, an AI system simply indexes noise. Progressive Summarization, while tedious, forces the practitioner to engage with the material, transforming passive consumption into tacit knowledge.

The tension between building a second brain vs open brain is largely a marketing distinction rather than a technical one. The human-centric habits of BASB can serve as the front-end scaffolding for an AI-driven back-end. A user can maintain PARA folders for their own psychological organization while simultaneously indexing those files into a vector store for agentic retrieval.

The following table compares the utility of these two approaches across different stages of knowledge management:

Phase BASB Utility (Human) Open Brain Utility (AI)
Capture High: Habitual collection Low: Passive ingestion
Organization Medium: Actionability/PARA High: Semantic Embeddings
Retrieval Low: Keyword/Manual Search High: Vector Similarity
Synthesis Medium: Manual Distillation High: RAG-based Generation

The Real Second Brain Is AI-Integrated

The Evolution to Open Brain Architecture

By 2026, the concept of a 'second brain' has shifted from an aspirational metaphor to a literal technical requirement. For a digital memory system to be functional in the age of Claude Desktop and Cursor, it must be machine-readable. This necessitates an open brain architecture: one that utilizes open formats (like Markdown), standardized protocols (MCP), and vector storage (pgvector) for portability and accessibility.

The original promise of BASB—offloading memory to a trusted external system—is only fully realized when that system is agent-accessible. A folder structure is a wall; an embedding is a bridge. To implement this, developers typically use a pipeline that converts raw text into embeddings via an API and stores them in a PostgreSQL database.

# Conceptual Python snippet for Open Brain ingestion
import openai
from pgvector import Vector

embedding = openai.Embedding.create(input="Client X pricing notes", model="text-embedding-3-small")
db.execute("INSERT INTO memory (content, embedding) VALUES (%s, %s)", ("Client X pricing notes", embedding))

Forte's methodology was the correct solution for the keyword era. However, as the industry moves toward RAG (Retrieval-Augmented Generation), the manual overhead of PARA and Progressive Summarization is outgrown by systems that automate discovery through mathematical similarity.

Questions answered

What readers usually ask next.

What is Tiago Forte's Building a Second Brain?
Building a Second Brain (BASB) is a personal knowledge management (PKM) methodology designed to offload memory to digital tools. It uses the CODE workflow—Capture, Organize, Distill, and Express—to turn raw information into actionable outputs rather than just hoarding data.
Is Building a Second Brain AI-compatible?
Yes. While BASB was built on manual curation, its modular structure is highly compatible with AI augmentation. LLMs can now automate the 'Distill' phase of CODE and use PARA folders as structured context windows for Retrieval-Augmented Generation (RAG).
What are PARA and CODE in BASB?
PARA is an organizational system that sorts information by actionability into Projects, Areas, Resources, and Archives. CODE is the operational workflow—Capture, Organize, Distill, and Express—that moves a piece of information from initial discovery to final creative output.
Can I use BASB and an open brain together?
Absolutely. You can use BASB's PARA system for high-level organization while employing an 'open brain' architecture—using pgvector or vector databases—to handle semantic search. This combines human-driven intent with AI-powered discovery.
Why isn't BASB enough in 2026?
Manual Progressive Summarization becomes a bottleneck as data volume scales. In an era of AI agents, relying solely on manual folders is inefficient compared to semantic embeddings that allow you to retrieve relevant insights without needing to remember exactly where they are stored.
Does Tiago Forte recommend pgvector?
Forte focuses on methodology rather than specific database extensions. While he doesn't explicitly mandate pgvector, the transition toward AI-augmented memory naturally leads users toward vector databases to automate the retrieval processes BASB traditionally handles manually.
Is fortelabs.com an AI-native brain system?
Fortelabs provides the educational framework and coaching for the BASB methodology. While it integrates modern tools, it is primarily a pedagogical system for human knowledge management rather than a standalone AI software product.
What does BASB get right?
BASB excels at emphasizing 'actionability' over rigid categorization. By focusing on Projects and Areas rather than static topics, it prevents the 'digital graveyard' effect where notes are saved but never revisited or utilized.
What does BASB miss about AI agents?
BASB relies heavily on human intuition for distillation and retrieval. It lacks a native framework for autonomous agents that can proactively surface connections between notes using cosine similarity, a feature central to vector-based 'open brain' systems.
Should I read Tiago Forte's book?
Yes, if you struggle with digital clutter and lack a workflow for producing work from your research. Even in the AI era, understanding how to curate and distill information is essential for providing high-quality prompts and context to LLMs.
Is buildingasecondbrain.com an open brain system?
No, it is the official site for Tiago Forte's BASB methodology. It teaches a human-centric process of curation and organization, whereas an 'open brain' typically refers to an AI-integrated system using embeddings and automated retrieval.