From 47c1398ce762920b284f4001600cb305d69220a7 Mon Sep 17 00:00:00 2001 From: Alex Newman Date: Sun, 19 Oct 2025 01:24:56 -0400 Subject: [PATCH] feat: Add marketplace metadata and sync plugin version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates marketplace.json with: - Marketplace metadata (description, version) - Plugin version synced to 4.0.2 - Full plugin description from plugin.json - Author information for discoverability Users can now 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 --- .claude-plugin/marketplace.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 03138212..1ffa7c53 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -3,11 +3,19 @@ "owner": { "name": "Alex Newman" }, + "metadata": { + "description": "Alex Newman's Claude Code plugins", + "version": "1.0.0" + }, "plugins": [ { "name": "claude-mem", "source": "./plugin", - "description": "Persistent memory system for Claude Code" + "description": "Persistent memory system for Claude Code - seamlessly preserve context across sessions", + "version": "4.0.2", + "author": { + "name": "Alex Newman" + } } ] }