mirror of
https://github.com/wshobson/agents.git
synced 2026-03-18 09:37:15 +00:00
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:
@@ -1951,7 +1951,7 @@
|
|||||||
"name": "conductor",
|
"name": "conductor",
|
||||||
"source": "./plugins/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",
|
"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": {
|
"author": {
|
||||||
"name": "Seth Hobson",
|
"name": "Seth Hobson",
|
||||||
"url": "https://github.com/wshobson"
|
"url": "https://github.com/wshobson"
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
---
|
---
|
||||||
name: conductor-validator
|
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.
|
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
|
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.
|
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.
|
||||||
|
|||||||
@@ -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
|
# Implement Track
|
||||||
|
|
||||||
Execute tasks from a track's implementation plan, following the workflow rules defined in `conductor/workflow.md`.
|
Execute tasks from a track's implementation plan, following the workflow rules defined in `conductor/workflow.md`.
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
description: "Create a new track with specification and phased implementation plan"
|
||||||
|
argument-hint: "<feature|bug|chore|refactor> <name>"
|
||||||
|
---
|
||||||
|
|
||||||
# New Track
|
# New Track
|
||||||
|
|
||||||
Create a new track (feature, bug fix, chore, or refactor) with a detailed specification and phased implementation plan.
|
Create a new track (feature, bug fix, chore, or refactor) with a detailed specification and phased implementation plan.
|
||||||
|
|||||||
@@ -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 Track
|
||||||
|
|
||||||
Revert changes by logical work unit with full git awareness. Supports reverting entire tracks, specific phases, or individual tasks.
|
Revert changes by logical work unit with full git awareness. Supports reverting entire tracks, specific phases, or individual tasks.
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
description: "Initialize project with Conductor artifacts (product definition, tech stack, workflow, style guides)"
|
||||||
|
argument-hint: "[--resume]"
|
||||||
|
---
|
||||||
|
|
||||||
# Conductor Setup
|
# Conductor Setup
|
||||||
|
|
||||||
Initialize or resume Conductor project setup. This command creates foundational project documentation through interactive Q&A.
|
Initialize or resume Conductor project setup. This command creates foundational project documentation through interactive Q&A.
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
---
|
||||||
|
description: "Display project status, active tracks, and next actions"
|
||||||
|
argument-hint: "[track-id] [--detailed]"
|
||||||
|
---
|
||||||
|
|
||||||
# Conductor Status
|
# Conductor Status
|
||||||
|
|
||||||
Display the current status of the Conductor project, including overall progress, active tracks, and next actions.
|
Display the current status of the Conductor project, including overall progress, active tracks, and next actions.
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
---
|
||||||
|
description: "Generate comprehensive investor-ready business case document with market, solution, financials, and strategy"
|
||||||
|
---
|
||||||
|
|
||||||
# Business Case Generator
|
# 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.
|
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.
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
---
|
||||||
|
description: "Create detailed 3-5 year financial model with revenue, costs, cash flow, and scenarios"
|
||||||
|
---
|
||||||
|
|
||||||
# Financial Projections
|
# 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.
|
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.
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
---
|
||||||
|
description: "Generate comprehensive market opportunity analysis with TAM/SAM/SOM calculations"
|
||||||
|
---
|
||||||
|
|
||||||
# Market Opportunity Analysis
|
# 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.
|
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.
|
||||||
|
|||||||
Reference in New Issue
Block a user