Get up and running with Claude Context Kit in 5 minutes.
# Clone the repository
git clone https://github.com/your-username/claude-context-kit.git
cd claude-context-kit
# Run the installer
node install.jsUnix/Mac:
curl -sL https://raw.githubusercontent.com/your-username/claude-context-kit/main/install.sh | bashWindows PowerShell:
irm https://raw.githubusercontent.com/your-username/claude-context-kit/main/install.ps1 | iexThe installer will:
- Copy hooks to
~/.claude/hooks/ - Copy commands to
~/.claude/commands/ - Install skill-generator to
~/.claude/skills/ - Install the semantic memory daemon to
~/.claude/memory/daemon/ - Configure
settings.jsonwith hook registrations - Initialize the SQLite database
Just start Claude Code as normal:
claudeThe session will automatically be registered in the session registry.
When starting work on a task, find relevant past sessions:
/fork-detect implement user authentication
This searches your session history for semantically similar work.
If you have pending work from a previous session:
/resume
This lists sessions with handoff prompts ready to continue.
When you discover something important:
/learn
This extracts and stores learnings to semantic memory.
| Command | Purpose |
|---|---|
/fork-detect <task> |
Find similar past sessions |
/prime-fork <session-id> |
Load context from a session |
/resume |
Continue from a pending session |
/learn |
Store learnings to memory |
/sync-registry |
Update session summaries |
/create-skill |
Create a project context skill |
If you have existing Claude Code history:
/migrate-sessions
This imports all historical sessions into the registry and builds the search index.
After installation, verify everything is working:
# Check hooks installed
ls ~/.claude/hooks/
# Check commands installed
ls ~/.claude/commands/
# Check daemon files
ls ~/.claude/memory/daemon/
# Test daemon (start in background first)
cd ~/.claude/memory/daemon && python server.py &
curl http://localhost:8741/health- Check
~/.claude/settings.jsonhas hooks configured - On Windows, ensure PowerShell execution policy allows scripts
- Check Python 3.8+ is installed
- Install dependencies:
pip install flask sentence-transformers torch
- Ensure daemon is running on port 8741
- Check
~/.claude/memory/semantic-memory.dbexists
For more detailed troubleshooting, see TROUBLESHOOTING.md.
- Read ARCHITECTURE.md to understand the system design
- Review COMMANDS.md for all available commands
- Learn about SKILLS.md for persistent project knowledge