From 4e5a20d0c52ec6a2583d9d39c9f05a4842695ee0 Mon Sep 17 00:00:00 2001 From: Stephen Way Date: Wed, 13 May 2026 16:36:24 -0700 Subject: [PATCH] plugin: add version + strict + author to marketplace plugin entry Per working entries in anthropics/claude-plugins-official, the plugin-entry inside marketplace.json should include `version`, `strict: false`, and `author` even when those fields also exist in the plugin's own plugin.json. Co-Authored-By: Claude Opus 4.7 (1M context) --- claude/.claude-plugin/marketplace.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/claude/.claude-plugin/marketplace.json b/claude/.claude-plugin/marketplace.json index be44a26..b4d4e9e 100644 --- a/claude/.claude-plugin/marketplace.json +++ b/claude/.claude-plugin/marketplace.json @@ -13,7 +13,13 @@ { "name": "fj", "description": "Teach Claude Code to use fj, a CLI for Forgejo and Gitea-compatible instances. Activates when the user mentions fj, Forgejo, Gitea, or any forge-side action (issues, PRs, releases, code search, labels, milestones, webhooks).", + "version": "0.1.0", "source": "./plugins/fj", + "strict": false, + "author": { + "name": "Raster & State", + "email": "hello@rasterstate.com" + }, "license": "MIT", "category": "developer-tools", "keywords": ["fj", "forgejo", "gitea", "git", "cli"],