From bf5df7dfb6e2652c41863626e1b64cc855c17f8c Mon Sep 17 00:00:00 2001 From: Kieran Klaassen Date: Thu, 9 Oct 2025 14:07:26 -0700 Subject: [PATCH] Simplify plugin.json to match Claude Code official spec MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove custom fields (every-env, dependencies, settings, configuration) and simplify repository format. This ensures the plugin only uses officially supported fields from the Claude Code plugins reference. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../.claude-plugin/plugin.json | 68 ++----------------- 1 file changed, 6 insertions(+), 62 deletions(-) diff --git a/plugins/compounding-engineering/.claude-plugin/plugin.json b/plugins/compounding-engineering/.claude-plugin/plugin.json index 4b51c5a..894f203 100644 --- a/plugins/compounding-engineering/.claude-plugin/plugin.json +++ b/plugins/compounding-engineering/.claude-plugin/plugin.json @@ -4,76 +4,20 @@ "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", + "email": "kieran@every.to", "url": "https://github.com/kieranklaassen" }, - "homepage": "https://github.com/EveryInc/compounding-engineering", - "repository": { - "type": "git", - "url": "https://github.com/EveryInc/compounding-engineering.git" - }, + "homepage": "https://every.to/source-code/my-ai-had-already-fixed-the-code-before-i-saw-it", + "repository": "https://every.to/source-code/my-ai-had-already-fixed-the-code-before-i-saw-it", + "license": "MIT", "keywords": [ "ai-powered", "compounding-engineering", "workflow-automation", "code-review", "quality", - "knowledge-management", - "agents" + "knowledge-management" ], - "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" - ] - } + "commands": "./commands/" }