From a367436a78332701caf943bbc0e6b376357663db Mon Sep 17 00:00:00 2001 From: Alex Newman Date: Sun, 9 Nov 2025 19:15:04 -0500 Subject: [PATCH] Release v5.4.0: Skill-Based Search Migration & Progressive Disclosure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Version Bump: - package.json: 5.3.0 → 5.4.0 - .claude-plugin/marketplace.json: 5.3.0 → 5.4.0 - plugin/.claude-plugin/plugin.json: 5.3.0 → 5.4.0 - CLAUDE.md: 5.3.0 → 5.4.0 Breaking Changes: - MCP search tools removed (replaced with skill-based search) - No user action required - migration is transparent Major Features: - Skill-based search architecture (~2,250 token savings per session) - Progressive disclosure pattern (skill frontmatter ~250 tokens) - 10 HTTP API endpoints for search operations - Natural language queries replace MCP tool syntax Technical Changes: - Removed MCP search server registration - Added search skill with comprehensive documentation - Updated all documentation to reflect new architecture - HTTP API endpoints in worker service Migration Notes: - Users: No action required, searches work identically - Developers: MCP server source kept for reference 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .claude-plugin/marketplace.json | 2 +- CLAUDE.md | 2 +- package.json | 2 +- plugin/.claude-plugin/plugin.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 329a3b4e..e243a971 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -10,7 +10,7 @@ "plugins": [ { "name": "claude-mem", - "version": "5.3.0", + "version": "5.4.0", "source": "./plugin", "description": "Persistent memory system for Claude Code - context compression across sessions" } diff --git a/CLAUDE.md b/CLAUDE.md index a46cf8bc..3bdebd5a 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -6,7 +6,7 @@ Claude-mem is a Claude Code plugin providing persistent memory across sessions. **Your Role**: You are working on the plugin itself. When users interact with Claude Code with this plugin installed, your observations get captured and become their persistent memory. -**Current Version**: 5.3.0 +**Current Version**: 5.4.0 ## Critical Architecture Knowledge diff --git a/package.json b/package.json index 4881f5d4..05dd2521 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "claude-mem", - "version": "5.3.0", + "version": "5.4.0", "description": "Memory compression system for Claude Code - persist context across sessions", "keywords": [ "claude", diff --git a/plugin/.claude-plugin/plugin.json b/plugin/.claude-plugin/plugin.json index 0f6c7ce6..43d98c28 100644 --- a/plugin/.claude-plugin/plugin.json +++ b/plugin/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "claude-mem", - "version": "5.3.0", + "version": "5.4.0", "description": "Persistent memory system for Claude Code - seamlessly preserve context across sessions", "author": { "name": "Alex Newman"