mirror of
https://github.com/wshobson/agents.git
synced 2026-03-18 09:37:15 +00:00
fix(conductor): add allowed-tools to commands and simplify marketplace entry
Based on research of official plugins: - Add allowed-tools array to all 5 commands (required field in working plugins) - Simplify marketplace.json entry to match official format (minimal fields, auto-discovery) - Remove explicit commands/agents/skills arrays (rely on auto-discovery like official plugins) Version: 1.0.6
This commit is contained in:
@@ -1949,41 +1949,15 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "conductor",
|
"name": "conductor",
|
||||||
"source": "./plugins/conductor",
|
"description": "Context-Driven Development plugin that transforms Claude Code into a project management tool with structured workflow: Context → Spec & Plan → Implement",
|
||||||
"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.6",
|
||||||
"version": "1.0.5",
|
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Seth Hobson",
|
"name": "Seth Hobson",
|
||||||
"url": "https://github.com/wshobson"
|
"email": "seth@major7apps.com"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/wshobson/agents",
|
"source": "./plugins/conductor",
|
||||||
"repository": "https://github.com/wshobson/agents",
|
|
||||||
"license": "MIT",
|
|
||||||
"keywords": [
|
|
||||||
"project-management",
|
|
||||||
"context-driven-development",
|
|
||||||
"tdd",
|
|
||||||
"planning",
|
|
||||||
"specifications",
|
|
||||||
"workflow",
|
|
||||||
"tracks",
|
|
||||||
"git-integration"
|
|
||||||
],
|
|
||||||
"category": "workflows",
|
"category": "workflows",
|
||||||
"strict": false,
|
"homepage": "https://github.com/wshobson/agents"
|
||||||
"commands": [
|
|
||||||
"./commands/setup.md",
|
|
||||||
"./commands/new-track.md",
|
|
||||||
"./commands/implement.md",
|
|
||||||
"./commands/status.md",
|
|
||||||
"./commands/revert.md"
|
|
||||||
],
|
|
||||||
"agents": ["./agents/conductor-validator.md"],
|
|
||||||
"skills": [
|
|
||||||
"./skills/context-driven-development",
|
|
||||||
"./skills/track-management",
|
|
||||||
"./skills/workflow-patterns"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
description: "Execute tasks from a track's implementation plan following TDD workflow"
|
description: "Execute tasks from a track's implementation plan following TDD workflow"
|
||||||
argument-hint: "[track-id] [--task X.Y] [--phase N]"
|
argument-hint: "[track-id] [--task X.Y] [--phase N]"
|
||||||
|
allowed-tools: ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "AskUserQuestion", "TodoWrite"]
|
||||||
---
|
---
|
||||||
|
|
||||||
# Implement Track
|
# Implement Track
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
description: "Create a new track with specification and phased implementation plan"
|
description: "Create a new track with specification and phased implementation plan"
|
||||||
argument-hint: "<feature|bug|chore|refactor> <name>"
|
argument-hint: "<feature|bug|chore|refactor> <name>"
|
||||||
|
allowed-tools: ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "AskUserQuestion"]
|
||||||
---
|
---
|
||||||
|
|
||||||
# New Track
|
# New Track
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
description: "Git-aware undo by logical work unit (track, phase, or task)"
|
description: "Git-aware undo by logical work unit (track, phase, or task)"
|
||||||
argument-hint: "[track-id | track-id:phase | track-id:task]"
|
argument-hint: "[track-id | track-id:phase | track-id:task]"
|
||||||
|
allowed-tools: ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "AskUserQuestion"]
|
||||||
---
|
---
|
||||||
|
|
||||||
# Revert Track
|
# Revert Track
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
description: "Initialize project with Conductor artifacts (product definition, tech stack, workflow, style guides)"
|
description: "Initialize project with Conductor artifacts (product definition, tech stack, workflow, style guides)"
|
||||||
argument-hint: "[--resume]"
|
argument-hint: "[--resume]"
|
||||||
|
allowed-tools: ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "AskUserQuestion"]
|
||||||
---
|
---
|
||||||
|
|
||||||
# Conductor Setup
|
# Conductor Setup
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
description: "Display project status, active tracks, and next actions"
|
description: "Display project status, active tracks, and next actions"
|
||||||
argument-hint: "[track-id] [--detailed]"
|
argument-hint: "[track-id] [--detailed]"
|
||||||
|
allowed-tools: ["Read", "Glob", "Grep", "Bash"]
|
||||||
---
|
---
|
||||||
|
|
||||||
# Conductor Status
|
# Conductor Status
|
||||||
|
|||||||
Reference in New Issue
Block a user