Installation
Requirements
- VS Code 1.96 or later
- At least one supported AI CLI installed:
- Claude Code (Anthropic)
- Codex (OpenAI)
- Gemini CLI (Google)
Install from Marketplace
- Open VS Code
- Go to Extensions (
Ctrl+Shift+X) - Search for "Klip"
- Click Install
Or install directly:
Install from VSIX
For manual installation from a .vsix file:
code --install-extension klip-x.y.z.vsix
Or in VS Code:
- Go to Extensions (
Ctrl+Shift+X) - Click the
...menu - Select Install from VSIX...
- Choose the
.vsixfile
Verify Installation
After installation:
- Look for the Klip icon in the Activity Bar (left sidebar)
- Open the Command Palette (
Ctrl+Shift+P) - Search for "Klip" - you should see Klip commands
First Launch
On first launch, Klip will:
- Detect installed CLIs - Scans for Claude, Codex, and Gemini
- Start the daemon - Background service for indexing
- Discover sessions - Scans default session directories
If you have existing sessions, they should appear in the sidebar within a few seconds.
Updating
Klip updates automatically through VS Code's extension update mechanism.
To manually check for updates:
- Go to Extensions (
Ctrl+Shift+X) - Click the
...menu - Select Check for Extension Updates
Uninstalling
To uninstall Klip:
- Go to Extensions (
Ctrl+Shift+X) - Find Klip
- Click Uninstall
Clean Uninstall
To also remove Klip's data:
Linux/macOS/WSL:
# Stop the daemon
kp shutdown
# Remove Klip data directory
rm -rf ~/.klip
Windows (PowerShell):
# Stop the daemon
kp shutdown
# Remove Klip data directory
Remove-Item -Recurse -Force "$env:USERPROFILE\.klip"
caution
This removes all Klip metadata including summaries, tags, and embeddings. Session files (stored by the AI CLIs) are not affected.
Next Steps
- First-time Setup - Configure CLIs and API keys