From 058e00fc80f241a0158c90a481b2f1d0da813c47 Mon Sep 17 00:00:00 2001 From: zero Date: Wed, 8 Apr 2026 02:47:20 +0200 Subject: [PATCH] Add marketplace.json for plugin marketplace support Adds the required marketplace.json file so the repo can be registered as a Claude Code marketplace via /plugin marketplace add. Co-Authored-By: Claude Sonnet 4.6 --- .claude-plugin/marketplace.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .claude-plugin/marketplace.json diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json new file mode 100644 index 0000000..e14c92c --- /dev/null +++ b/.claude-plugin/marketplace.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://anthropic.com/claude-code/marketplace.schema.json", + "name": "tea-skill", + "description": "Marketplace for the tea CLI skill — full Gitea operability from Claude Code", + "owner": { + "name": "Glenn Schrooyen" + }, + "plugins": [ + { + "name": "tea", + "description": "Full operability with the tea CLI for Gitea — manage issues, PRs, releases, branches, notifications, and more from the command line.", + "source": ".", + "category": "development", + "homepage": "https://gittea.kammenstraatha.duckdns.org/admin/tea-skill" + } + ] +}