Skip to main content

Note composition

A Brain note is one markdown document that can compose many content types — the same idea as Notion pages or Obsidian notes with embeds.

Model​

PieceWhat it isStandalone?
Text / headingsNormal markdown bodyLives in the host note
![[Other note]]Transclusion / include of another noteTarget is its own note
![[Other#Heading]] / ![[Other#^block]]Section or block includeSame
![[arc://view/name]]Saved database / board / calendar viewBrainView row; reusable anywhere
```arc-view fenceInline database definitionCan be split out into its own note
```arc-chart / graph fencesLive chart / graph widgetsSame — split or leave inline
Wikilink [[X]]Reference, not inclusionTarget may or may not exist

Rule: anything worth reusing or opening alone should be its own note (or saved view). The host note then includes it with ![[…]] instead of duplicating content.

Compose​

A project note might look like:

# Willow & Ivy

Launch narrative…

## Pipeline
![[Willow pipeline database]]

## Relationship map
![[Willow people graph]]

## This week
![[arc://view/this-weeks-training]]
  • Willow pipeline database is a normal note whose body is mostly an arc-view (or embeds a saved view).
  • Willow people graph is a graph-oriented note.
  • Both can be opened alone, linked from elsewhere, or included in other hosts.

Split out​

Take a heading section, ^block, or byte range from a host note → create a child note → replace the extracted range with ![[Child title]] (and an EMBED link).

Use when a section grew into its own document (database, long reference, graph).

Include​

Insert ![[Target]] (or heading/block variant) into a host without copying body text. Prefer include over paste.

MCP / API​

  • brain_include — insert an embed into a host note
  • brain_split — promote a section/block into a new note and leave an embed behind
  • brain_read with include: ["outline"] — composition outline (text vs embeds vs arc fences)

ClaudeContext stays LLM scratch; composition is Brain-only.