Fix plugin.json structure to match Claude Code spec
- Changed agents and commands to path strings (not objects) - Removed non-spec components field - Updated marketplace.json description (removed hooks reference) This fixes agent and command discovery issues. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -11,7 +11,7 @@
|
|||||||
"plugins": [
|
"plugins": [
|
||||||
{
|
{
|
||||||
"name": "compounding-engineering",
|
"name": "compounding-engineering",
|
||||||
"description": "AI-powered development tools that get smarter with every use. Make each unit of engineering work easier than the last. Includes 15 specialized agents, 6 commands, and automated hooks.",
|
"description": "AI-powered development tools that get smarter with every use. Make each unit of engineering work easier than the last. Includes 15 specialized agents and 6 commands.",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Kieran Klaassen",
|
"name": "Kieran Klaassen",
|
||||||
|
|||||||
@@ -28,110 +28,8 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"claude-code": ">=1.0.0"
|
"claude-code": ">=1.0.0"
|
||||||
},
|
},
|
||||||
"components": {
|
"agents": "./agents/",
|
||||||
"agents": 15,
|
"commands": "./commands/",
|
||||||
"commands": 6,
|
|
||||||
"hooks": 0
|
|
||||||
},
|
|
||||||
"agents": {
|
|
||||||
"reviewers": [
|
|
||||||
{
|
|
||||||
"name": "kieran-rails-reviewer",
|
|
||||||
"description": "Super senior Rails reviewer with exceptionally high bar for code quality",
|
|
||||||
"use_cases": ["code-review", "refactoring", "architecture"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "dhh-rails-reviewer",
|
|
||||||
"description": "Rails reviewer following DHH's principles and conventions",
|
|
||||||
"use_cases": ["rails-conventions", "simplicity", "architecture"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "code-simplicity-reviewer",
|
|
||||||
"description": "Reviews code for simplicity and maintainability",
|
|
||||||
"use_cases": ["refactoring", "complexity", "maintainability"]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"quality": [
|
|
||||||
{
|
|
||||||
"name": "security-sentinel",
|
|
||||||
"description": "Security-focused code reviewer",
|
|
||||||
"use_cases": ["security", "vulnerabilities", "best-practices"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "performance-oracle",
|
|
||||||
"description": "Performance optimization and N+1 query detection",
|
|
||||||
"use_cases": ["performance", "optimization", "database"]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"architecture": [
|
|
||||||
{
|
|
||||||
"name": "architecture-strategist",
|
|
||||||
"description": "High-level architecture review and design",
|
|
||||||
"use_cases": ["architecture", "design", "patterns"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "pattern-recognition-specialist",
|
|
||||||
"description": "Identifies and suggests design patterns",
|
|
||||||
"use_cases": ["patterns", "refactoring", "design"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "data-integrity-guardian",
|
|
||||||
"description": "Database schema and data integrity reviewer",
|
|
||||||
"use_cases": ["database", "migrations", "integrity"]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"workflow": [
|
|
||||||
{
|
|
||||||
"name": "pr-comment-resolver",
|
|
||||||
"description": "Resolves PR comments and feedback",
|
|
||||||
"use_cases": ["pull-requests", "code-review", "collaboration"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "git-history-analyzer",
|
|
||||||
"description": "Analyzes git history and commit patterns",
|
|
||||||
"use_cases": ["git", "history", "analysis"]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"research": [
|
|
||||||
{
|
|
||||||
"name": "repo-research-analyst",
|
|
||||||
"description": "Deep repository research and analysis",
|
|
||||||
"use_cases": ["research", "codebase", "documentation"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "best-practices-researcher",
|
|
||||||
"description": "Researches and applies best practices",
|
|
||||||
"use_cases": ["best-practices", "research", "standards"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "framework-docs-researcher",
|
|
||||||
"description": "Searches framework documentation",
|
|
||||||
"use_cases": ["documentation", "rails", "frameworks"]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"specialized": [
|
|
||||||
{
|
|
||||||
"name": "every-style-editor",
|
|
||||||
"description": "Enforces Every writing style guide",
|
|
||||||
"use_cases": ["copy", "writing", "style-guide"]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "feedback-codifier",
|
|
||||||
"description": "Converts feedback into actionable tasks",
|
|
||||||
"use_cases": ["feedback", "tasks", "planning"]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"commands": {
|
|
||||||
"workflow": [
|
|
||||||
"triage",
|
|
||||||
"work",
|
|
||||||
"generate_command",
|
|
||||||
"plan",
|
|
||||||
"review",
|
|
||||||
"resolve_todo_parallel"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"permissions": {
|
"permissions": {
|
||||||
"bash_commands": [
|
"bash_commands": [
|
||||||
|
|||||||
Reference in New Issue
Block a user