Skip to main content

Overview

Klip is a VS Code extension for browsing, resuming, searching, and organizing AI coding sessions from Claude Code, Codex, and Gemini.

What Klip Does

FeatureDescription
Session DiscoveryAutomatically finds sessions from all installed AI CLIs
Resume SessionsContinue where you left off with one click
SearchFind sessions by keyword or semantic meaning
SummariesAI-generated summaries to remember context
Multi-SessionWork with multiple sessions in grid layouts
MCP ManagementConfigure MCP servers across agents

Supported AI Agents

AgentCLISession Format
ClaudeClaude Code (Anthropic)JSONL
CodexCodex CLI (OpenAI)JSONL
GeminiGemini CLI (Google)JSON

Architecture

Klip consists of two components:

VS Code Extension

  • Sidebar navigation
  • Webview panels (Klip Panel, Dashboard, Sessions Explorer)
  • VS Code integration (commands, settings, terminals)

Local Daemon (kp)

  • Session indexing and database
  • Vector search (embeddings)
  • Summary generation
  • MCP server management

The daemon starts automatically when needed and runs in the background.

Key Concepts

Local-First

All data is stored locally. Klip never uploads your code or session history. The only external calls are:

  • AI API requests for summaries/embeddings (to provider you configure)
  • License validation (for Pro features)
  • Feedback submission (when you choose to send)

Cross-Environment Support

Klip works across Windows, WSL, macOS, and Linux. Sessions from different environments in the same workspace are grouped together.

Session Discovery

Klip scans default CLI directories plus any custom paths you configure. Sessions are indexed into a local SQLite database for fast access.

Free vs Pro

FeatureFreePro
Session browsingYesYes
Resume sessionsYesYes
Keyword searchYesYes
AI summariesYesYes
Klip PanelYesYes
MCP managementYesYes
Advanced Analytics-Yes
Session History Viewer-Yes
Tags (env vars, init scripts)-Yes
Button Library-Yes
Daemon API Keys-Yes
MCP Gateway-Yes

Next Steps