bootspring session

Session intelligence -- status, snapshots, and health.

Overview

The session command manages session intelligence snapshots. Sessions capture metrics, patterns, and context from your AI-assisted development work. Snapshots are saved automatically via hooks and can be queried or cleaned up manually.

Usage

Loading code block...

Commands

CommandDescription
statusShow current session status and stats
listList all session snapshots
healthCheck session intelligence health
cleanRemove old session snapshots (keeps latest 10)

Options

OptionDescription
--jsonOutput as JSON
--limit <n>Number of sessions to list

How Sessions Work

  1. When you start a conversation with an AI assistant, a session is created
  2. Hook handlers track metrics (tokens, costs, tool calls, timing) during the session
  3. When the assistant stops, a snapshot is saved to .bootspring/memory/sessions/
  4. You can query, compare, and clean up sessions with this command

Storage

Sessions are stored locally in .bootspring/memory/sessions/ as JSON files. No external services are required.

Examples

Loading code block...