From b508d4bcce955b5f8af7fd4b1cd02318832d1f8f Mon Sep 17 00:00:00 2001 From: lmiranda Date: Tue, 20 Jan 2026 12:34:09 -0500 Subject: [PATCH] feat: register doc-guardian and code-sentinel plugins in marketplace - Add doc-guardian v1.0.0 with PostToolUse and Stop hooks - Add code-sentinel v1.0.0 with PreToolUse hook - Update marketplace version to 2.3.0 - Update projman version to 2.3.0 - Update hookMapping for new plugins Co-Authored-By: Claude Opus 4.5 --- .claude-plugin/marketplace.json | 38 ++++++++++++++++++++++++++++++--- 1 file changed, 35 insertions(+), 3 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 71b50d8..e61d06d 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -6,12 +6,12 @@ }, "metadata": { "description": "Project management plugins with Gitea and NetBox integrations", - "version": "2.2.0" + "version": "2.3.0" }, "plugins": [ { "name": "projman", - "version": "2.2.0", + "version": "2.3.0", "description": "Sprint planning and project management with Gitea integration", "source": "./plugins/projman", "author": { @@ -23,6 +23,36 @@ "mcpServers": ["gitea"], "integrationFile": "claude-md-integration.md" }, + { + "name": "doc-guardian", + "version": "1.0.0", + "description": "Automatic documentation drift detection and synchronization", + "source": "./plugins/doc-guardian", + "author": { + "name": "Leo Miranda", + "email": "leobmiranda@gmail.com" + }, + "homepage": "https://gitea.hotserv.cloud/personal-projects/support-claude-mktplace/src/branch/main/plugins/doc-guardian/README.md", + "repository": "https://gitea.hotserv.cloud/personal-projects/support-claude-mktplace.git", + "mcpServers": [], + "integrationFile": "claude-md-integration.md", + "hooks": ["PostToolUse", "Stop"] + }, + { + "name": "code-sentinel", + "version": "1.0.0", + "description": "Security scanning and code refactoring tools", + "source": "./plugins/code-sentinel", + "author": { + "name": "Leo Miranda", + "email": "leobmiranda@gmail.com" + }, + "homepage": "https://gitea.hotserv.cloud/personal-projects/support-claude-mktplace/src/branch/main/plugins/code-sentinel/README.md", + "repository": "https://gitea.hotserv.cloud/personal-projects/support-claude-mktplace.git", + "mcpServers": [], + "integrationFile": "claude-md-integration.md", + "hooks": ["PreToolUse"] + }, { "name": "project-hygiene", "version": "0.1.0", @@ -73,7 +103,9 @@ "netbox": "cmdb-assistant" }, "hookMapping": { - "PostToolUse:Write|Edit": "project-hygiene" + "PostToolUse:Write|Edit": "project-hygiene", + "PostToolUse:Write|Edit|MultiEdit": "doc-guardian", + "PreToolUse:Write|Edit|MultiEdit": "code-sentinel" } } }