From cbd43240c7f275a77d5ed13aadc60d4838a1a283 Mon Sep 17 00:00:00 2001 From: Alex Newman Date: Sun, 19 Oct 2025 01:26:44 -0400 Subject: [PATCH] docs: Add marketplace installation instructions to README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates Installation section with: - Method 1: Claude Code Marketplace (recommended) - Simple two-command installation - Automatic dependency and hook setup - Clear explanation of what gets installed - Renumbered existing methods (Clone=2, NPM=3) Users can now easily install via: /plugin marketplace add thedotmack/claude-mem /plugin install claude-mem 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- README.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 80d08b36..69de4787 100644 --- a/README.md +++ b/README.md @@ -184,7 +184,27 @@ SQLite database (`${CLAUDE_PLUGIN_ROOT}/data/claude-mem.db`) with tables: node --version # Should be >= 18.0.0 ``` -### Method 1: Clone and Build (Recommended for Development) +### Method 1: Claude Code Marketplace (Recommended) + +Install directly from Claude Code using the plugin marketplace: + +```bash +# Add the marketplace +/plugin marketplace add thedotmack/claude-mem + +# Install the plugin +/plugin install claude-mem +``` + +The plugin will: +- Automatically install all dependencies (including PM2) +- Configure hooks for session lifecycle management +- Set up the MCP search server +- Auto-start the worker service on first session + +**That's it!** The plugin is ready to use. Start a new Claude Code session and you'll see context from previous sessions automatically loaded. + +### Method 2: Clone and Build (For Development) ```bash # Clone the repository @@ -205,7 +225,7 @@ npm run worker:start npm run worker:status ``` -### Method 2: NPM Package (Coming Soon) +### Method 3: NPM Package (Coming Soon) ```bash # Install from NPM (when published)