ClawVault
Commands

init & setup

Initialize a new vault or auto-discover and configure an existing one

The init and setup commands handle vault creation and configuration. Use init to create a new vault from scratch, or setup to auto-discover and configure an existing memory folder.

clawvault init

Create a new ClawVault in the specified directory.

clawvault init [path] [options]

Options

FlagDescriptionDefault
-n, --name <name>Vault nameDirectory name
--qmdSet up qmd semantic search collectionfalse
--qmd-collection <name>qmd collection nameVault name
--no-basesSkip Obsidian Bases file generationfalse
--no-tasksSkip tasks/ and backlog/ directoriesfalse
--no-graphSkip initial graph buildfalse
--categories <list>Comma-separated custom categoriesDefault 16
--canvas <template>Generate a canvas on init (default, brain, project-board, sprint)None
--theme <style>Graph color theme: neural, minimal, nonenone
--minimalMinimal vault — memory categories only, no tasks/bases/graphfalse

Examples

# Full initialization with all defaults
clawvault init ~/my-vault --name "work-memory"

# Initialize with neural graph theme and brain canvas
clawvault init ~/agent-memory --theme neural --canvas brain

# Minimal vault for a lightweight agent
clawvault init ./memory --minimal

# Custom categories only
clawvault init ./memory --categories "notes,research,code,docs"

# Skip task management, just memory
clawvault init ~/vault --no-tasks --no-bases

clawvault setup

Auto-discover and configure a ClawVault from an existing memory folder.

clawvault setup [options]

Options

FlagDescriptionDefault
-v, --vault <path>Target vault pathAuto-discovered
--theme <style>Graph color theme: neural, minimal, noneneural
--graph-colors / --no-graph-colorsOpt in/out of Obsidian graph themingIncluded
--bases / --no-basesOpt in/out of Obsidian Bases task viewsIncluded
--canvas [template]Generate canvas dashboardNot generated
--forceOverwrite existing configuration filesSkip existing

By default, setup applies the neural graph theme and generates Obsidian Bases views for task management. Use --no-graph-colors or --no-bases to skip these.

Examples

# Full setup with neural theme (default behavior)
clawvault setup

# Setup with brain architecture canvas
clawvault setup --canvas brain

# Structure only — no visual config
clawvault setup --no-graph-colors --no-bases

# Force-refresh all configs
clawvault setup --force --canvas project-board

# Target a specific vault
clawvault setup -v ~/projects/agent-memory

When to Use Which

ScenarioCommand
Starting freshclawvault init [path]
Existing OpenClaw workspaceclawvault setup
Lightweight agent vaultclawvault init --minimal
Add visual config to existing vaultclawvault setup --force
Agent needs task management onlyclawvault init --no-graph --canvas project-board

On this page