Files
claude-engineering-plugin/plugins/compounding-engineering/.claude-plugin/plugin.json
Kieran Klaassen e2043aa591 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>
2025-10-09 13:59:21 -07:00

80 lines
1.7 KiB
JSON

{
"name": "compounding-engineering",
"version": "1.0.0",
"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.",
"author": {
"name": "Kieran Klaassen",
"url": "https://github.com/kieranklaassen"
},
"homepage": "https://github.com/EveryInc/compounding-engineering",
"repository": {
"type": "git",
"url": "https://github.com/EveryInc/compounding-engineering.git"
},
"keywords": [
"ai-powered",
"compounding-engineering",
"workflow-automation",
"code-review",
"quality",
"knowledge-management",
"agents"
],
"license": "MIT",
"every-env": {
"compatible": true,
"min_version": "1.0.0"
},
"dependencies": {
"claude-code": ">=1.0.0"
},
"agents": "./agents/",
"commands": "./commands/",
"settings": {
"permissions": {
"bash_commands": [
"ast-grep",
"bin/brakeman",
"bin/dev",
"bin/rails",
"bin/rubocop",
"bundle",
"find",
"gem",
"gh",
"git",
"grep",
"mkdir",
"node",
"npm",
"psql",
"rake",
"rg",
"rm",
"ruby",
"yarn"
],
"web_fetch_domains": [
"docs.anthropic.com",
"discuss.rubyonrails.org",
"edgeguides.rubyonrails.org",
"github.com",
"localhost"
]
}
},
"configuration": {
"default_agent": "claude",
"project_type": "rails",
"signals": [
"package.json",
"Gemfile",
"bin/rails",
"config/application.rb",
"app/controllers",
"app/models",
"app/views"
]
}
}