ClawVault
Commands

wake

Start a session with context recovery, recap, and observation highlights

The wake command is ClawVault's session bootstrap. It checks for context death, restores checkpoint context, and builds a recap for fast restart.

Usage

clawvault wake [options]

What Wake Does

  1. Checks for context death and clears the dirty flag
  2. Generates a recap from recent handoffs
  3. Includes recent observations (structural and potential importance)
  4. Generates an executive summary when an LLM is available

Options

FlagDescriptionDefault
-n, --handoff-limit <n>Max recent handoffs to include3
--fullShow full recap (default is brief/compact)false
-v, --vault <path>Vault pathauto-detected

Examples

# Standard wake flow (brief by default)
clawvault wake

# Include more handoffs
clawvault wake --handoff-limit 5

# Full verbose output
clawvault wake --full

Details

wake is typically the first command in each session. It pairs with sleep for continuity and with checkpoint for high-frequency recovery during intensive work.

On this page