From 207b22de658ee343561159f576fd8c6f0e97c7ae Mon Sep 17 00:00:00 2001 From: Stephen Benjamin Date: Mon, 27 Oct 2025 12:48:31 -0400 Subject: [PATCH] Add missing plugin.json files to fix claudelint errors Added plugin metadata files for code-review and commit-commands plugins to comply with Claude plugin structure requirements. These files were identified as missing by the [claudelint](https://github.com/stbenjam/claudelint) tool, which validates plugin structure and format according to the Claude Code plugin conventions. --- plugins/code-review/.claude-plugin/plugin.json | 10 ++++++++++ plugins/commit-commands/.claude-plugin/plugin.json | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 plugins/code-review/.claude-plugin/plugin.json create mode 100644 plugins/commit-commands/.claude-plugin/plugin.json diff --git a/plugins/code-review/.claude-plugin/plugin.json b/plugins/code-review/.claude-plugin/plugin.json new file mode 100644 index 00000000..dd45018d --- /dev/null +++ b/plugins/code-review/.claude-plugin/plugin.json @@ -0,0 +1,10 @@ +{ + "name": "code-review", + "description": "Automated code review for pull requests using multiple specialized agents with confidence-based scoring", + "version": "1.0.0", + "author": { + "name": "Boris Cherny", + "email": "boris@anthropic.com" + } +} + diff --git a/plugins/commit-commands/.claude-plugin/plugin.json b/plugins/commit-commands/.claude-plugin/plugin.json new file mode 100644 index 00000000..8c7bde5d --- /dev/null +++ b/plugins/commit-commands/.claude-plugin/plugin.json @@ -0,0 +1,10 @@ +{ + "name": "commit-commands", + "description": "Streamline your git workflow with simple commands for committing, pushing, and creating pull requests", + "version": "1.0.0", + "author": { + "name": "Anthropic", + "email": "support@anthropic.com" + } +} +