ClawVault
Commands

list & get

Browse and retrieve documents from the vault

The list and get commands provide direct access to vault documents — browse by category or retrieve a specific document by ID.

clawvault list

List documents in the vault, optionally filtered by category.

clawvault list [category] [options]

Options

FlagDescriptionDefault
-v, --vault <path>Vault pathNearest vault
--jsonOutput as JSONfalse

Examples

# List all documents
clawvault list

# List only decisions
clawvault list decisions

# List people as JSON
clawvault list people --json

clawvault get

Retrieve a specific document by its ID.

clawvault get <id> [options]

Required

  • <id> — Document ID (typically the filename without extension)

Options

FlagDescriptionDefault
-v, --vault <path>Vault pathNearest vault
--jsonOutput as JSONfalse

Examples

# Get a specific document
clawvault get use-postgresql

# Get as JSON
clawvault get auth-refactor --json

On this page