> ## Documentation Index
> Fetch the complete documentation index at: https://2bd.l48a.de/llms.txt
> Use this file to discover all available pages before exploring further.

# Vault structure

> Complete reference for vault organization.

The vault stores your notes organized by [metabolic state](/ada/how-ada-works#metabolic-states). See [How Ada Works](/ada/how-ada-works) for the reasoning behind this organization.

## Top-level structure

```
2bd-vault/
├── 00_Brain/          # Core system
├── 01_Projects/       # Active work
├── 02_Areas/          # Ongoing domains
├── 04_Archives/       # Completed work
└── .obsidian/         # Obsidian config
```

## 00\_Brain: Core system

The heart of 2bd. Organized by metabolic state.

```
00_Brain/
├── ✱ Home.md              # Central hub
├── Captive/               # Working notes
│   ├── Today.md
│   ├── Week.md
│   ├── Quarter.md
│   └── Year.md
├── Periodic/              # Archives
│   ├── Daily/             # YYYY-MM-DD.md
│   ├── Weekly/            # YYYY-Www.md
│   ├── Quarterly/         # YYYY-QN.md
│   └── Yearly/            # YYYY.md
├── Semantic/              # Crystallized knowledge
│   └── {ritual-name}/     # Created on first use
│       └── insights.md
├── Synthetic/             # Active drafts
│   └── {ritual-name}/     # Created on first use
│       └── observations.md
└── Systemic/              # Infrastructure
    ├── Templates/
    ├── Directives/
    └── Coaching/
```

## 01\_Projects: Active work

```
01_Projects/
├── ✱ Projects.md          # Project hub
├── 2026-03-15-launch.md   # End-date prefix for sorting
├── 2026-06-30-migration.md
└── ...
```

Projects use end-date prefix so nearest deadlines sort first.

## 02\_Areas: Ongoing domains

```
02_Areas/
├── People/
│   ├── ✱ People.md        # People hub
│   ├── EstherS.md         # FirstNameL format
│   └── ...
└── Insights/
    ├── ✱ Insights.md      # Insights hub
    ├── leadership.md      # lowercase-with-hyphens
    └── ...
```

## Naming conventions

| Type      | Format                 | Example                |
| --------- | ---------------------- | ---------------------- |
| Hubs      | `✱ Title.md`           | `✱ Home.md`            |
| Daily     | `YYYY-MM-DD.md`        | `2026-02-08.md`        |
| Weekly    | `YYYY-Www.md`          | `2026-W06.md`          |
| Quarterly | `YYYY-QN.md`           | `2026-Q1.md`           |
| Yearly    | `YYYY.md`              | `2026.md`              |
| Projects  | `YYYY-MM-DD-name.md`   | `2026-03-15-launch.md` |
| People    | `FirstNameL.md`        | `EstherS.md`           |
| Insights  | `lowercase-hyphens.md` | `leadership.md`        |

## Hubs

Central navigation notes marked with `✱` prefix:

| Hub        | Location             | Purpose              |
| ---------- | -------------------- | -------------------- |
| ✱ Home     | `00_Brain/`          | Central navigation   |
| ✱ Projects | `01_Projects/`       | Active work overview |
| ✱ People   | `02_Areas/People/`   | Relationship notes   |
| ✱ Insights | `02_Areas/Insights/` | Thematic learnings   |

All hubs share a navigation bar:

```markdown theme={null}
[[00_Brain/✱ Home|✱ Home]] | [[01_Projects/✱ Projects|✱ Projects]] | ...
```

## Systemic folders

### Templates

```
Systemic/Templates/
├── Captive/           # today.md, week.md, etc.
├── Periodic/          # daily.md, weekly.md, etc.
├── Projects/          # project.md
└── Areas/
    ├── People/        # person.md
    └── Insights/      # insight.md
```

### Directives

```
Systemic/Directives/
├── user-profile.md    # Who you are
└── ai-personality.md  # How Claude communicates
```

### Coaching

```
Systemic/Coaching/
├── planning.md        # Planning ritual guidance
├── review.md          # Reflection ritual guidance
└── leadership.md      # Leadership coaching prompts
```

## Related

* [How Ada Works](/ada/how-ada-works) — Understanding metabolic states
* [Templates](/reference/templates) — Modifying templates
* [Settings and Directives](/configuration/settings-and-directives) — Personalizing your experience
* [Naming conventions](/reference/naming-conventions) — Detailed naming rules
