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
This commit is contained in:
Seth Hobson
2026-01-15 20:58:35 -05:00
parent 87ed65d2b5
commit 29d59eb5cf
10 changed files with 40 additions and 1 deletions

View File

@@ -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`.

View File

@@ -1,3 +1,8 @@
---
description: "Create a new track with specification and phased implementation plan"
argument-hint: "<feature|bug|chore|refactor> <name>"
---
# New Track
Create a new track (feature, bug fix, chore, or refactor) with a detailed specification and phased implementation plan.

View File

@@ -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.

View File

@@ -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.

View File

@@ -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.