From 29d59eb5cfe306cd7d627999c3047e40f811867d Mon Sep 17 00:00:00 2001 From: Seth Hobson Date: Thu, 15 Jan 2026 20:58:35 -0500 Subject: [PATCH] fix(plugins): add proper frontmatter to commands and agents Commands now have correct frontmatter format: - description (required) - argument-hint (optional) Agents now have correct frontmatter format: - name, description, tools, model, color Updated plugins: - conductor v1.0.4: fixed all 5 commands and 1 agent - startup-business-analyst v1.0.1: fixed all 3 commands --- .claude-plugin/marketplace.json | 2 +- plugins/conductor/agents/conductor-validator.md | 2 ++ plugins/conductor/commands/implement.md | 5 +++++ plugins/conductor/commands/new-track.md | 5 +++++ plugins/conductor/commands/revert.md | 5 +++++ plugins/conductor/commands/setup.md | 5 +++++ plugins/conductor/commands/status.md | 5 +++++ plugins/startup-business-analyst/commands/business-case.md | 4 ++++ .../commands/financial-projections.md | 4 ++++ .../startup-business-analyst/commands/market-opportunity.md | 4 ++++ 10 files changed, 40 insertions(+), 1 deletion(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 3fcca7f..f2abd04 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -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.3", + "version": "1.0.4", "author": { "name": "Seth Hobson", "url": "https://github.com/wshobson" diff --git a/plugins/conductor/agents/conductor-validator.md b/plugins/conductor/agents/conductor-validator.md index 85df64d..f314781 100644 --- a/plugins/conductor/agents/conductor-validator.md +++ b/plugins/conductor/agents/conductor-validator.md @@ -1,7 +1,9 @@ --- name: conductor-validator description: Validates Conductor project artifacts for completeness, consistency, and correctness. Use after setup, when diagnosing issues, or before implementation to verify project context. +tools: Read, Glob, Grep, Bash model: opus +color: cyan --- You are an expert validator for Conductor project artifacts. Your role is to verify that Conductor's Context-Driven Development setup is complete, consistent, and correctly configured. diff --git a/plugins/conductor/commands/implement.md b/plugins/conductor/commands/implement.md index a178f06..e3204a4 100644 --- a/plugins/conductor/commands/implement.md +++ b/plugins/conductor/commands/implement.md @@ -1,3 +1,8 @@ +--- +description: "Execute tasks from a track's implementation plan following TDD workflow" +argument-hint: "[track-id] [--task X.Y] [--phase N]" +--- + # Implement Track Execute tasks from a track's implementation plan, following the workflow rules defined in `conductor/workflow.md`. diff --git a/plugins/conductor/commands/new-track.md b/plugins/conductor/commands/new-track.md index 2738562..e94efbe 100644 --- a/plugins/conductor/commands/new-track.md +++ b/plugins/conductor/commands/new-track.md @@ -1,3 +1,8 @@ +--- +description: "Create a new track with specification and phased implementation plan" +argument-hint: " " +--- + # New Track Create a new track (feature, bug fix, chore, or refactor) with a detailed specification and phased implementation plan. diff --git a/plugins/conductor/commands/revert.md b/plugins/conductor/commands/revert.md index 2982b00..3ca720a 100644 --- a/plugins/conductor/commands/revert.md +++ b/plugins/conductor/commands/revert.md @@ -1,3 +1,8 @@ +--- +description: "Git-aware undo by logical work unit (track, phase, or task)" +argument-hint: "[track-id | track-id:phase | track-id:task]" +--- + # Revert Track Revert changes by logical work unit with full git awareness. Supports reverting entire tracks, specific phases, or individual tasks. diff --git a/plugins/conductor/commands/setup.md b/plugins/conductor/commands/setup.md index 4237273..bf94b56 100644 --- a/plugins/conductor/commands/setup.md +++ b/plugins/conductor/commands/setup.md @@ -1,3 +1,8 @@ +--- +description: "Initialize project with Conductor artifacts (product definition, tech stack, workflow, style guides)" +argument-hint: "[--resume]" +--- + # Conductor Setup Initialize or resume Conductor project setup. This command creates foundational project documentation through interactive Q&A. diff --git a/plugins/conductor/commands/status.md b/plugins/conductor/commands/status.md index da8c41c..8e89268 100644 --- a/plugins/conductor/commands/status.md +++ b/plugins/conductor/commands/status.md @@ -1,3 +1,8 @@ +--- +description: "Display project status, active tracks, and next actions" +argument-hint: "[track-id] [--detailed]" +--- + # Conductor Status Display the current status of the Conductor project, including overall progress, active tracks, and next actions. diff --git a/plugins/startup-business-analyst/commands/business-case.md b/plugins/startup-business-analyst/commands/business-case.md index 95680f0..1375547 100644 --- a/plugins/startup-business-analyst/commands/business-case.md +++ b/plugins/startup-business-analyst/commands/business-case.md @@ -1,3 +1,7 @@ +--- +description: "Generate comprehensive investor-ready business case document with market, solution, financials, and strategy" +--- + # Business Case Generator Generate a comprehensive, investor-ready business case document covering market opportunity, solution, competitive landscape, financial projections, team, risks, and funding ask for startup fundraising and strategic planning. diff --git a/plugins/startup-business-analyst/commands/financial-projections.md b/plugins/startup-business-analyst/commands/financial-projections.md index e190e28..f58dc9c 100644 --- a/plugins/startup-business-analyst/commands/financial-projections.md +++ b/plugins/startup-business-analyst/commands/financial-projections.md @@ -1,3 +1,7 @@ +--- +description: "Create detailed 3-5 year financial model with revenue, costs, cash flow, and scenarios" +--- + # Financial Projections Create a comprehensive 3-5 year financial model with revenue projections, cost structure, headcount planning, cash flow analysis, and three-scenario modeling (conservative, base, optimistic) for startup financial planning and fundraising. diff --git a/plugins/startup-business-analyst/commands/market-opportunity.md b/plugins/startup-business-analyst/commands/market-opportunity.md index 34e730a..640ed5d 100644 --- a/plugins/startup-business-analyst/commands/market-opportunity.md +++ b/plugins/startup-business-analyst/commands/market-opportunity.md @@ -1,3 +1,7 @@ +--- +description: "Generate comprehensive market opportunity analysis with TAM/SAM/SOM calculations" +--- + # Market Opportunity Analysis Generate a comprehensive market opportunity analysis for a startup, including Total Addressable Market (TAM), Serviceable Available Market (SAM), and Serviceable Obtainable Market (SOM) calculations using both bottom-up and top-down methodologies.