From 3d0a40dd58748021a0d18f26e8210df23117a979 Mon Sep 17 00:00:00 2001 From: Seth Hobson Date: Thu, 15 Jan 2026 21:01:45 -0500 Subject: [PATCH] fix(plugins): align with official Claude Code plugin conventions - Add minimal .claude-plugin/plugin.json to conductor and startup-business-analyst (matches official format: name, description, author only) - Remove .gitignore from startup-business-analyst (not in official plugins) - Bump versions: conductor 1.0.5, startup-business-analyst 1.0.2 Plugin structure now matches official examples (feature-dev, ralph-loop, etc.) --- .claude-plugin/marketplace.json | 4 ++-- plugins/conductor/.claude-plugin/plugin.json | 8 ++++++++ .../.claude-plugin/plugin.json | 8 ++++++++ plugins/startup-business-analyst/.gitignore | 17 ----------------- 4 files changed, 18 insertions(+), 19 deletions(-) create mode 100644 plugins/conductor/.claude-plugin/plugin.json create mode 100644 plugins/startup-business-analyst/.claude-plugin/plugin.json delete mode 100644 plugins/startup-business-analyst/.gitignore diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index f2abd04..ac2e186 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -1375,7 +1375,7 @@ "name": "startup-business-analyst", "source": "./plugins/startup-business-analyst", "description": "Comprehensive startup business analysis with market sizing (TAM/SAM/SOM), financial modeling, team planning, and strategic research for early-stage companies", - "version": "1.0.1", + "version": "1.0.2", "author": { "name": "Seth Hobson", "url": "https://github.com/wshobson" @@ -1951,7 +1951,7 @@ "name": "conductor", "source": "./plugins/conductor", "description": "Context-Driven Development plugin that transforms Claude Code into a project management tool. Implements structured workflow: Context → Spec & Plan → Implement with full TDD support, track-based work units, semantic git reversion, and resumable sessions", - "version": "1.0.4", + "version": "1.0.5", "author": { "name": "Seth Hobson", "url": "https://github.com/wshobson" diff --git a/plugins/conductor/.claude-plugin/plugin.json b/plugins/conductor/.claude-plugin/plugin.json new file mode 100644 index 0000000..240bd45 --- /dev/null +++ b/plugins/conductor/.claude-plugin/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "conductor", + "description": "Context-Driven Development plugin that transforms Claude Code into a project management tool with structured workflow: Context → Spec & Plan → Implement", + "author": { + "name": "Seth Hobson", + "email": "seth@major7apps.com" + } +} diff --git a/plugins/startup-business-analyst/.claude-plugin/plugin.json b/plugins/startup-business-analyst/.claude-plugin/plugin.json new file mode 100644 index 0000000..097e2a7 --- /dev/null +++ b/plugins/startup-business-analyst/.claude-plugin/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "startup-business-analyst", + "description": "Comprehensive startup business analysis with market sizing (TAM/SAM/SOM), financial modeling, team planning, and strategic research", + "author": { + "name": "Seth Hobson", + "email": "seth@major7apps.com" + } +} diff --git a/plugins/startup-business-analyst/.gitignore b/plugins/startup-business-analyst/.gitignore deleted file mode 100644 index 505538c..0000000 --- a/plugins/startup-business-analyst/.gitignore +++ /dev/null @@ -1,17 +0,0 @@ -# Local configuration files -.claude/*.local.md - -# OS files -.DS_Store -Thumbs.db - -# Editor files -.vscode/ -.idea/ -*.swp -*.swo -*~ - -# Temporary files -*.tmp -*.log