npx skills add https://github.com/vectorize-io/hindsight --skill hindsight-docsCLI Reference
The Hindsight CLI provides command-line access to memory operations and bank management. All commands follow the OpenAPI specification, so you can use --help on any command to see all available options.
Installationβ
curl-fsSL https://hindsight.vectorize.io/get-cli |bash
Configurationβ
Configure the API URL:
# Interactive configuration
hindsight configure
# Or set directly
hindsight configure --api-url http://localhost:8888
# With API key for authentication
hindsight configure --api-url http://localhost:8888 --api-key your-api-key
# Or use environment variables (highest priority)
exportHINDSIGHT_API_URL=http://localhost:8888
exportHINDSIGHT_API_KEY=your-api-key
Named Profilesβ
When you need to switch between multiple Hindsight deployments (e.g. local,
staging, production) without constantly rewriting ~/.hindsight/config, use
named profiles. Each profile is a TOML file at
~/.hindsight/cli-profiles/<name>.toml and is selected per-invocation with
-p/--profile (or by setting $HINDSIGHT_PROFILE).
# Create (or overwrite) a profile
hindsight profile create prod \
--api-url https://api.hindsight.vectorize.io \
--api-key hsk_...
# List and inspect profiles
hindsight profile list
hindsight profile show prod
# Use a profile for a single command
hindsight -p prod bank list
# Or make it sticky for the current shell
exportHINDSIGHT_PROFILE=prod
hindsight bank list
# Remove a profile
hindsight profile delete prod -y
Profile files are written with 0600 permissions on Unix so the API key is
only readable by the owner.
Configuration precedence (highest first):
- Environment variables (
HINDSIGHT_API_URL,HINDSIGHT_API_KEY) - Named profile β explicit
-p <name>, otherwise$HINDSIGHT_PROFILE - Shared config file (
~/.hindsight/config, written byhindsight configure) - Default (
http://localhost:8888)
HINDSIGHT_API_URL / HINDSIGHT_API_KEY always override profile values, which
makes it safe to use -p in scripts while letting CI inject credentials via
environment.
Core Commandsβ
Retain (Store Memory)β
Store a single memory:
hindsight memory retain <bank_id>"Alice works at Google as a software engineer"
# With context
hindsight memory retain <bank_id>"Bob loves hiking"--context"hobby discussion"
# Queue for background processing
hindsight memory retain <bank_id>"Meeting notes"--async
# With an event date (ISO 8601 datetime or date)
hindsight memory retain <bank_id>"Project launched"--timestamp2024-01-15
# Store without a timestamp (overrides the default of "now")
hindsight memory retain <bank_id>"Background fact"--timestampunset
Retain Filesβ
Bulk import from files:
# Single file
hindsight memory retain-files <bank_id> notes.txt
# Directory (recursive by default)
hindsight memory retain-files <bank_id> ./documents/
# With context
hindsight memory retain-files <bank_id> meeting-notes.txt --context"team meeting"
# With a named retain strategy (see retain_strategies in bank config)
hindsight memory retain-files <bank_id> ./documents/ --strategy conversations
# Background processing
hindsight memory retain-files <bank_id> ./data/ --async
Recall (Search)β
Search memories using semantic similarity:
hindsight memory recall <bank_id>"What does Alice do?"
# With options
hindsight memory recall <bank_id>"hiking recommendations"\
--budget high \
--max-tokens 8192
# Filter by fact type
hindsight memory recall <bank_id>"query" --fact-type world,observation
# Filter by tags
hindsight memory recall <bank_id>"query"--tags work,project \
--tags-match all
# Pin results to a specific time
hindsight memory recall <bank_id>"query" --query-timestamp "2026εΉ΄01ζ15ζ₯T00:00:00Z"
# Show trace information
hindsight memory recall <bank_id>"query"--trace
Reflect (Generate Response)β
Generate a response using memories and bank disposition:
hindsight memory reflect <bank_id>"What do you know about Alice?"
# With additional context
hindsight memory reflect <bank_id>"Should I learn Python?"--context"career advice"
# Higher budget for complex questions
hindsight memory reflect <bank_id>"Summarize my week"--budget high
# Filter by fact type
hindsight memory reflect <bank_id>"query"\
--fact-types world,experience \
--exclude-mental-models
Memory Historyβ
View the observation history for a specific memory unit:
hindsight memory history<bank_id><memory_id>
Clear Observationsβ
Remove all observations for a memory unit, keeping the core fact:
hindsight memory clear-observations <bank_id><memory_id>
# Skip confirmation prompt
hindsight memory clear-observations <bank_id><memory_id>-y
Bank Managementβ
List Banksβ
hindsight bank list
View Dispositionβ
hindsight bank disposition <bank_id>
Set Dispositionβ
hindsight bank set-disposition <bank_id>--skepticism3--literalism4--empathy5
View Statisticsβ
hindsight bank stats <bank_id>
Set Bank Nameβ
hindsight bank name <bank_id>"My Assistant"
Set Missionβ
hindsight bank mission <bank_id>"I am a helpful AI assistant interested in technology"
Clear Observations (Bank-wide)β
Remove all observations across the entire bank:
hindsight bank clear-observations <bank_id>
# Skip confirmation prompt
hindsight bank clear-observations <bank_id>-y
Recover Consolidationβ
Recover from a failed or stuck consolidation:
hindsight bank consolidation-recover <bank_id>
Document Managementβ
# List documents
hindsight document list <bank_id>
# Get document details
hindsight document get <bank_id><document_id>
# Update document metadata
hindsight document update <bank_id><document_id>--context"updated context"
# Delete document and its memories
hindsight document delete <bank_id><document_id>
Entity Managementβ
# List entities
hindsight entity list <bank_id>
# Get entity details
hindsight entity get <bank_id><entity_id>
Operation Managementβ
Track and manage async operations (retain-files, consolidation, etc.):
# List operations
hindsight operation list <bank_id>
# Get operation status
hindsight operation get <bank_id><operation_id>
# Cancel a pending operation
hindsight operation cancel <bank_id><operation_id>
# Retry a failed operation
hindsight operation retry <bank_id><operation_id>
Webhook Managementβ
Configure event delivery hooks for bank activity:
# List webhooks
hindsight webhook list <bank_id>
# Create a webhook (defaults to consolidation.completed events)
hindsight webhook create <bank_id> https://example.com/hook
# Create with specific events and signing secret
hindsight webhook create <bank_id> https://example.com/hook \
--event-types retain.completed,consolidation.completed \
--secret my-hmac-secret
# Update a webhook
hindsight webhook update <bank_id><webhook_id>--url https://new-url.com
# Delete a webhook
hindsight webhook delete <bank_id><webhook_id>
# View delivery history
hindsight webhook deliveries <bank_id><webhook_id>
Audit Logsβ
Inspect the audit trail for a bank:
# List audit entries
hindsight audit list <bank_id>
# Filter by action and transport
hindsight audit list <bank_id>--action recall --transport mcp
# Filter by date range
hindsight audit list <bank_id>\
--start-date "2026εΉ΄04ζ01ζ₯T00:00:00Z"\
--end-date "2026εΉ΄04ζ10ζ₯T00:00:00Z"
# Pagination
hindsight audit list <bank_id>--limit50--offset100
Output Formatsβ
# Pretty (default)
hindsight memory recall <bank_id>"query"
# JSON
hindsight memory recall <bank_id>"query"-o json
# YAML
hindsight memory recall <bank_id>"query"-o yaml
Global Optionsβ
| Flag | Description |
|---|---|
-v, --verbose | Show detailed output including request/response |
-o, --output <format> | Output format: pretty, json, yaml |
--help | Show help |
--version | Show version |
Control Plane UIβ
Launch the web-based Control Plane UI directly from the CLI:
hindsight ui
This runs the Control Plane locally on port 9999 using the API URL from your configuration. The UI provides:
- Memory bank management β Browse and manage all your banks
- Entity explorer β Visualize the knowledge graph
- Query testing β Interactive recall and reflect testing
- Operation history β View ingestion and processing logs
The UI command requires Node.js to be installed. It automatically downloads and runs the @vectorize-io/hindsight-control-plane package via npx.
Interactive Explorerβ
Launch the TUI explorer for visual navigation of your memory banks:
hindsight explore
The explorer provides an interactive terminal interface to:
- Browse memory banks β View all banks and their statistics
- Search memories β Run recall queries with real-time results
- Inspect entities β Explore the knowledge graph and entity relationships
- View facts β Browse world facts, experiences, and observations
- Navigate documents β See source documents and their extracted memories
Keyboard Shortcutsβ
| Key | Action |
|---|---|
β/β | Navigate items |
Enter | Select / Expand |
Tab | Switch panels |
/ | Search |
q | Quit |
Example Workflowβ
# Configure API URL
hindsight configure --api-url http://localhost:8888
# Store some memories
hindsight memory retain demo "Alice works at Google"
hindsight memory retain demo "Bob is a data scientist"
hindsight memory retain demo "Alice and Bob are colleagues"
# Search memories
hindsight memory recall demo "Who works with Alice?"
# Generate a response
hindsight memory reflect demo "What do you know about the team?"
# Check bank disposition
hindsight bank disposition demo