From 7b85e33d9ca63f3a1e930c6fe5c558cb89c6851a Mon Sep 17 00:00:00 2001 From: Defame1297 Date: Sun, 5 Jul 2026 19:05:55 +0000 Subject: [PATCH] fix(gitea): register gitea-orchestrate agent in plugin manifest plugins/gitea/agents/gitea-orchestrate.md and .agent.md were fully written but the plugin manifest never declared an "agents" key, so the plugin loader had no path to discover/register the agent (unlike plugins/git and plugins/kyberforge, which both declare "agents": "agents/"). Bump the patch version in both manifests per plugin-author's UPDATE flow convention, since consumers cache plugin metadata by version. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01VwtxcDXuLZxYzWnT2FaoZU --- plugins/gitea/.claude-plugin/plugin.json | 2 +- plugins/gitea/plugin.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/gitea/.claude-plugin/plugin.json b/plugins/gitea/.claude-plugin/plugin.json index 467b2be..a805fdf 100644 --- a/plugins/gitea/.claude-plugin/plugin.json +++ b/plugins/gitea/.claude-plugin/plugin.json @@ -15,5 +15,5 @@ ], "license": "MIT", "name": "gitea", - "version": "1.3.0" + "version": "1.3.1" } diff --git a/plugins/gitea/plugin.json b/plugins/gitea/plugin.json index 8ba0879..89fed4c 100644 --- a/plugins/gitea/plugin.json +++ b/plugins/gitea/plugin.json @@ -1,4 +1,5 @@ { + "agents": "agents/", "author": { "email": "defame1297@rkdr.net", "name": "Defame1297" @@ -19,5 +20,5 @@ "skills": [ "skills/" ], - "version": "1.3.0" + "version": "1.3.1" }