From 329659b4d7181153126503f1db00be292584f56b Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Fri, 7 Aug 2026 17:20:44 +0200 Subject: [PATCH] feat(manifest): add Agent Plugins 1.0.0 portable manifest Agent Plugins clients read plugin.json at the package root; Claude Code reads .claude-plugin/plugin.json and nothing else. The portable schema is closed, so the Claude-only keys stay where they are. Root plugin.json is the source of truth for the shared metadata. Values are copied from .claude-plugin/plugin.json, so nothing changes for Claude Code. Keep them in sync with skill-repo-skill's sync-plugin-manifest.sh. Standard: https://agent-plugins.org/specification Signed-off-by: Sebastian Mendel --- plugin.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 plugin.json diff --git a/plugin.json b/plugin.json new file mode 100644 index 0000000..26cfe94 --- /dev/null +++ b/plugin.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json", + "name": "github-release", + "version": "0.8.8", + "description": "Safe, automated GitHub releases with supply chain security. Prevents dangerous gh release commands, orchestrates version bumps, signed tags, and CI-driven releases across ecosystems (TYPO3, PHP, Node.js, Go, Python, Rust, skill repos).", + "author": { + "name": "Netresearch DTT GmbH", + "url": "https://www.netresearch.de" + }, + "repository": "https://github.com/netresearch/github-release-skill", + "license": "(MIT AND CC-BY-SA-4.0)" +}