-
Notifications
You must be signed in to change notification settings - Fork 0
Quick Start
Halfservers LLC edited this page Jan 22, 2026
·
1 revision
Get running with Claude Code++ in 5 minutes.
- Claude Code CLI installed
- Python 3.10+
git clone https://github.com/H4LFdotDEV/Claude-CodePlusPlus.git
cd Claude-CodePlusPlus
./install.shRedis significantly improves performance but isn't required.
# macOS
brew install redis && brew services start redis
# Or Docker
docker run -d --name redis -p 6379:6379 redis:alpineOpen Claude Code and run:
memory_stats
You should see component status. At minimum, sqlite and vault should be true.
memory_store(
content="My first memory!",
type="note",
source="quick-start"
)
memory_search(query="first memory")
Before ending:
session_save(project_path="/path/to/your/project")
Next time you start:
session_restore
Claude now has persistent memory. Key behaviors to know:
- Claude searches memory automatically when you reference past work
- Important info is stored for future sessions
- Sessions persist - pick up where you left off
- Memory-MCP - Learn about the memory system
- Memory-MCP-Behavioral-Guidelines - How Claude uses memory
- Configuration - Customize your setup
| Tool | Purpose |
|---|---|
memory_search |
Find relevant context |
memory_store |
Save important info |
memory_list |
Browse recent memories |
session_save |
Save working state |
session_restore |
Resume previous session |
memory_stats |
Check system health |