12459eab3b
This commit brings all documentation up to date with the current v5.1.2 codebase, addressing 12+ critical discrepancies and adding 2 major new documentation files. ## Files Modified (18 documentation files): ### Root Documentation: - README.md: Updated version badge (4.3.1 → 5.1.2), tool count (7 → 9), added viewer UI and theme toggle features, updated "What's New" section - CHANGELOG.md: Added 8 missing releases (v4.3.2 through v5.1.2) with comprehensive release notes - CLAUDE.md: Removed hardcoded personal paths, documented all 14 worker endpoints (was 8), added Chroma integration overview, updated v5.x releases ### Mintlify Documentation (docs/): - introduction.mdx: Updated search tool count to 9, added viewer UI and theme toggle to features - configuration.mdx: Added smart-install.js documentation, clarified data directory locations, added CLAUDE_CODE_PATH env var, explained observations vs sessions, updated hook configuration examples - development.mdx: Added comprehensive viewer UI development section (103 lines), updated build output filenames (search-server.mjs) - usage/search-tools.mdx: Added get_context_timeline and get_timeline_by_query documentation with examples, updated tool count to 9 - architecture/overview.mdx: Updated to 7 hook files, 9 search tools, added Chroma to tech stack, enhanced component details with viewer UI - architecture/hooks.mdx: Added smart-install.js and user-message-hook.js documentation, updated hook count to 7 - architecture/worker-service.mdx: Documented all 14 endpoints organized by category (Viewer & Health, Data Retrieval, Settings, Session Management) - architecture/mcp-search.mdx: Added timeline tools documentation, updated tool count to 9, fixed filename references (search-server.mjs) - architecture-evolution.mdx: Added complete v5.x release history (v5.0.0 through v5.1.2), updated title to "v3 to v5" - hooks-architecture.mdx: Updated to "Seven Hook Scripts", added smart-install and user-message-hook documentation - troubleshooting.mdx: Added v5.x specific issues section (viewer, theme toggle, SSE, Chroma, PM2 Windows fix) ### New Documentation Files: - docs/VIEWER.md: Complete 400+ line guide to web viewer UI including architecture, features, usage, development, API integration, performance considerations - docs/CHROMA.md: Complete 450+ line guide to vector database integration including hybrid search architecture, semantic search explanation, performance benchmarks, installation, configuration, troubleshooting ## Key Corrections Made: 1. ✅ Updated version badges and references: 4.3.1 → 5.1.2 2. ✅ Corrected search tool count: 7 → 9 (added get_context_timeline, get_timeline_by_query) 3. ✅ Fixed MCP server filename: search-server.js → search-server.mjs 4. ✅ Updated hook count: 5 → 7 (added smart-install.js, user-message-hook.js) 5. ✅ Documented all 14 worker endpoints (was 8, incorrectly claimed 6 were missing) 6. ✅ Removed hardcoded personal file paths 7. ✅ Added Chroma vector database documentation 8. ✅ Added viewer UI comprehensive documentation 9. ✅ Updated CHANGELOG with all missing v4.3.2-v5.1.2 releases 10. ✅ Clarified data directory locations (production vs development) 11. ✅ Added smart-install.js caching system documentation 12. ✅ Updated SessionStart hook configuration examples ## Documentation Statistics: - Total files modified: 18 - New files created: 2 - Lines added: ~2,000+ - Version mismatches fixed: 2 critical - Missing features documented: 5+ major - Missing tools documented: 2 MCP tools - Missing endpoints documented: 6 API endpoints ## Impact: Documentation now accurately reflects the current v5.1.2 codebase with: - Complete viewer UI documentation (v5.1.0) - Theme toggle feature (v5.1.2) - Hybrid search architecture with Chroma (v5.0.0) - Smart install caching (v5.0.3) - All 7 hook scripts documented - All 9 MCP search tools documented - All 14 worker service endpoints documented - Comprehensive troubleshooting for v5.x issues 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
346 lines
8.6 KiB
Plaintext
346 lines
8.6 KiB
Plaintext
---
|
|
title: "Configuration"
|
|
description: "Environment variables and settings for Claude-Mem"
|
|
---
|
|
|
|
# Configuration
|
|
|
|
## Environment Variables
|
|
|
|
| Variable | Default | Description |
|
|
|-------------------------------|---------------------------------|---------------------------------------|
|
|
| `CLAUDE_PLUGIN_ROOT` | Set by Claude Code | Plugin installation directory |
|
|
| `CLAUDE_MEM_DATA_DIR` | `~/.claude-mem/` | Data directory (production default) |
|
|
| `CLAUDE_CODE_PATH` | Auto-detected | Path to Claude Code CLI (for Windows) |
|
|
| `CLAUDE_MEM_WORKER_PORT` | `37777` | Worker service port |
|
|
| `CLAUDE_MEM_MODEL` | `claude-sonnet-4-5` | AI model for processing observations |
|
|
| `CLAUDE_MEM_CONTEXT_OBSERVATIONS` | `50` | Number of observations to inject |
|
|
| `NODE_ENV` | `production` | Environment mode |
|
|
| `FORCE_COLOR` | `1` | Enable colored logs |
|
|
|
|
## Model Configuration
|
|
|
|
Configure which AI model processes your observations.
|
|
|
|
### Available Models
|
|
|
|
- `claude-haiku-4-5` - Fast, cost-efficient
|
|
- `claude-sonnet-4-5` - Balanced (default)
|
|
- `claude-opus-4` - Most capable
|
|
- `claude-3-7-sonnet` - Alternative version
|
|
|
|
### Using the Interactive Script
|
|
|
|
```bash
|
|
./claude-mem-settings.sh
|
|
```
|
|
|
|
This script manages `CLAUDE_MEM_MODEL` in `~/.claude/settings.json`.
|
|
|
|
### Manual Configuration
|
|
|
|
Edit `~/.claude/settings.json`:
|
|
|
|
```json
|
|
{
|
|
"CLAUDE_MEM_MODEL": "claude-sonnet-4-5"
|
|
}
|
|
```
|
|
|
|
## Files and Directories
|
|
|
|
### Data Directory Structure
|
|
|
|
The data directory location depends on the environment:
|
|
- **Production (installed plugin)**: `~/.claude-mem/` (always, regardless of CLAUDE_PLUGIN_ROOT)
|
|
- **Development**: Can be overridden with `CLAUDE_MEM_DATA_DIR`
|
|
|
|
```
|
|
~/.claude-mem/
|
|
├── claude-mem.db # SQLite database
|
|
├── .install-version # Cached version for smart installer
|
|
├── worker.port # Current worker port file
|
|
└── logs/
|
|
├── worker-out.log # Worker stdout logs
|
|
└── worker-error.log # Worker stderr logs
|
|
```
|
|
|
|
### Plugin Directory Structure
|
|
|
|
```
|
|
${CLAUDE_PLUGIN_ROOT}/
|
|
├── .claude-plugin/
|
|
│ └── plugin.json # Plugin metadata
|
|
├── .mcp.json # MCP server configuration
|
|
├── hooks/
|
|
│ └── hooks.json # Hook configuration
|
|
├── scripts/ # Built executables
|
|
│ ├── smart-install.js # Smart installer script
|
|
│ ├── context-hook.js # Context injection hook
|
|
│ ├── new-hook.js # Session creation hook
|
|
│ ├── save-hook.js # Observation capture hook
|
|
│ ├── summary-hook.js # Summary generation hook
|
|
│ ├── cleanup-hook.js # Session cleanup hook
|
|
│ ├── worker-service.cjs # Worker service (CJS)
|
|
│ └── search-server.mjs # MCP search server (ESM)
|
|
└── ui/
|
|
└── viewer.html # Web viewer UI bundle
|
|
```
|
|
|
|
## Plugin Configuration
|
|
|
|
### Hooks Configuration
|
|
|
|
Hooks are configured in `plugin/hooks/hooks.json`:
|
|
|
|
```json
|
|
{
|
|
"description": "Claude-mem memory system hooks",
|
|
"hooks": {
|
|
"SessionStart": [{
|
|
"hooks": [{
|
|
"type": "command",
|
|
"command": "node ${CLAUDE_PLUGIN_ROOT}/scripts/smart-install.js && node ${CLAUDE_PLUGIN_ROOT}/scripts/context-hook.js",
|
|
"timeout": 120
|
|
}]
|
|
}],
|
|
"UserPromptSubmit": [{
|
|
"hooks": [{
|
|
"type": "command",
|
|
"command": "node ${CLAUDE_PLUGIN_ROOT}/scripts/new-hook.js",
|
|
"timeout": 120
|
|
}]
|
|
}],
|
|
"PostToolUse": [{
|
|
"matcher": "*",
|
|
"hooks": [{
|
|
"type": "command",
|
|
"command": "node ${CLAUDE_PLUGIN_ROOT}/scripts/save-hook.js",
|
|
"timeout": 120
|
|
}]
|
|
}],
|
|
"Stop": [{
|
|
"hooks": [{
|
|
"type": "command",
|
|
"command": "node ${CLAUDE_PLUGIN_ROOT}/scripts/summary-hook.js",
|
|
"timeout": 120
|
|
}]
|
|
}],
|
|
"SessionEnd": [{
|
|
"hooks": [{
|
|
"type": "command",
|
|
"command": "node ${CLAUDE_PLUGIN_ROOT}/scripts/cleanup-hook.js",
|
|
"timeout": 120
|
|
}]
|
|
}]
|
|
}
|
|
}
|
|
```
|
|
|
|
### MCP Server Configuration
|
|
|
|
The MCP search server is configured in `plugin/.mcp.json`:
|
|
|
|
```json
|
|
{
|
|
"mcpServers": {
|
|
"claude-mem-search": {
|
|
"type": "stdio",
|
|
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/search-server.mjs"
|
|
}
|
|
}
|
|
}
|
|
```
|
|
|
|
This registers the `claude-mem-search` server with Claude Code, making the 9 search tools available in all sessions.
|
|
|
|
## PM2 Configuration
|
|
|
|
Worker service is managed by PM2 via `ecosystem.config.cjs`:
|
|
|
|
```javascript
|
|
module.exports = {
|
|
apps: [{
|
|
name: 'claude-mem-worker',
|
|
script: './plugin/scripts/worker-service.cjs',
|
|
instances: 1,
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '1G',
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
FORCE_COLOR: '1'
|
|
}
|
|
}]
|
|
};
|
|
```
|
|
|
|
### PM2 Settings
|
|
|
|
- **instances**: 1 (single instance)
|
|
- **autorestart**: true (auto-restart on crash)
|
|
- **watch**: false (no file watching)
|
|
- **max_memory_restart**: 1G (restart if memory exceeds 1GB)
|
|
|
|
## Context Injection Configuration
|
|
|
|
### CLAUDE_MEM_CONTEXT_OBSERVATIONS
|
|
|
|
Controls how many observations are injected into each new session for context continuity.
|
|
|
|
**Default**: 50 observations
|
|
|
|
**What it does**:
|
|
- Fetches the most recent N observations from the database
|
|
- Injects them as context at SessionStart
|
|
- Allows Claude to maintain awareness of recent work across sessions
|
|
|
|
**Configuration** in `~/.claude/settings.json`:
|
|
|
|
```json
|
|
{
|
|
"env": {
|
|
"CLAUDE_MEM_CONTEXT_OBSERVATIONS": "100"
|
|
}
|
|
}
|
|
```
|
|
|
|
**Considerations**:
|
|
- **Higher values** = More context but slower SessionStart and more tokens used
|
|
- **Lower values** = Faster SessionStart but less historical awareness
|
|
- Default of 50 balances context richness with performance
|
|
|
|
**Note**: This injects individual observations, not entire sessions. Each observation represents a single tool execution (Read, Write, Edit, etc.) that was compressed into a semantic learning.
|
|
|
|
## Customization
|
|
|
|
### Custom Data Directory
|
|
|
|
For development or testing, override the data directory:
|
|
|
|
```bash
|
|
export CLAUDE_MEM_DATA_DIR=/custom/path
|
|
```
|
|
|
|
### Custom Worker Port
|
|
|
|
If port 37777 is in use:
|
|
|
|
```bash
|
|
export CLAUDE_MEM_WORKER_PORT=38000
|
|
npm run worker:restart
|
|
```
|
|
|
|
### Custom Model
|
|
|
|
Use a different AI model:
|
|
|
|
```bash
|
|
export CLAUDE_MEM_MODEL=claude-opus-4
|
|
npm run worker:restart
|
|
```
|
|
|
|
## Advanced Configuration
|
|
|
|
### Hook Timeouts
|
|
|
|
Modify timeouts in `plugin/hooks/hooks.json`:
|
|
|
|
```json
|
|
{
|
|
"timeout": 120 // Default: 120 seconds
|
|
}
|
|
```
|
|
|
|
Recommended values:
|
|
- SessionStart: 120s (needs time for smart install check and context retrieval)
|
|
- UserPromptSubmit: 60s
|
|
- PostToolUse: 120s (can process many observations)
|
|
- Stop: 60s
|
|
- SessionEnd: 60s
|
|
|
|
**Note**: With smart install caching (v5.0.3+), SessionStart is typically very fast (10ms) unless dependencies need installation.
|
|
|
|
### Worker Memory Limit
|
|
|
|
Modify PM2 memory limit in `ecosystem.config.cjs`:
|
|
|
|
```javascript
|
|
{
|
|
max_memory_restart: '2G' // Increase if needed
|
|
}
|
|
```
|
|
|
|
### Logging Verbosity
|
|
|
|
Enable debug logging:
|
|
|
|
```bash
|
|
export DEBUG=claude-mem:*
|
|
npm run worker:restart
|
|
npm run worker:logs
|
|
```
|
|
|
|
## Configuration Best Practices
|
|
|
|
1. **Use defaults**: Default configuration works for most use cases
|
|
2. **Override selectively**: Only change what you need
|
|
3. **Document changes**: Keep track of custom configurations
|
|
4. **Test after changes**: Verify worker restarts successfully
|
|
5. **Monitor logs**: Check worker logs after configuration changes
|
|
|
|
## Troubleshooting Configuration
|
|
|
|
### Configuration Not Applied
|
|
|
|
1. Restart worker after changes:
|
|
```bash
|
|
npm run worker:restart
|
|
```
|
|
|
|
2. Verify environment variables:
|
|
```bash
|
|
echo $CLAUDE_MEM_MODEL
|
|
echo $CLAUDE_MEM_WORKER_PORT
|
|
```
|
|
|
|
3. Check worker logs:
|
|
```bash
|
|
npm run worker:logs
|
|
```
|
|
|
|
### Invalid Model Name
|
|
|
|
If you specify an invalid model name, the worker will fall back to `claude-sonnet-4-5` and log a warning.
|
|
|
|
Valid models:
|
|
- claude-haiku-4-5
|
|
- claude-sonnet-4-5
|
|
- claude-opus-4
|
|
- claude-3-7-sonnet
|
|
|
|
### Port Already in Use
|
|
|
|
If port 37777 is already in use:
|
|
|
|
1. Set custom port:
|
|
```bash
|
|
export CLAUDE_MEM_WORKER_PORT=38000
|
|
```
|
|
|
|
2. Restart worker:
|
|
```bash
|
|
npm run worker:restart
|
|
```
|
|
|
|
3. Verify new port:
|
|
```bash
|
|
cat ~/.claude-mem/worker.port
|
|
```
|
|
|
|
## Next Steps
|
|
|
|
- [Architecture Overview](architecture/overview) - Understand the system
|
|
- [Troubleshooting](troubleshooting) - Common issues
|
|
- [Development](development) - Building from source
|