#!/usr/bin/env node /** * Claude Cortex - Brain-like Memory System for Claude Code * * This server provides persistent, intelligent memory for Claude Code, * solving the context compaction and session persistence problems. * * Usage: * npx claude-cortex # Start MCP server (default) * npx claude-cortex --mode mcp # Start MCP server * npx claude-cortex --mode api # Start visualization API server * npx claude-cortex --mode both # Start both servers * npx claude-cortex --dashboard # Start API + Dashboard (admin panel) * npx claude-cortex --db /path/to.db # Custom database path * npx claude-cortex setup # Configure Claude for proactive memory use * npx claude-cortex setup uninstall # Remove hooks and CLAUDE.md block * npx claude-cortex uninstall # Complete uninstall (keeps database) * npx claude-cortex uninstall --keep-logs # Complete uninstall, preserve logs * npx claude-cortex hook pre-compact # Run pre-compact hook (for settings.json) * npx claude-cortex hook session-start # Run session-start hook (for settings.json) * npx claude-cortex hook session-end # Run session-end hook (for settings.json) * npx claude-cortex service install # Auto-start dashboard on login * npx claude-cortex service uninstall # Remove auto-start * npx claude-cortex service status # Check service status * npx claude-cortex clawdbot install # Install OpenClaw/Clawdbot hook * npx claude-cortex clawdbot uninstall # Remove OpenClaw/Clawdbot hook * npx claude-cortex clawdbot status # Check Clawdbot hook status * npx claude-cortex plugin # Print plugin directory path (for --plugin-dir) */ export {}; //# sourceMappingURL=index.d.ts.map