From b34ff2bea32c541179568cfe5b52dd7c8e6cfa62 Mon Sep 17 00:00:00 2001 From: sunznx Date: Thu, 26 Mar 2026 10:36:52 +0800 Subject: [PATCH] feat: add Claude Code plugin marketplace support Add .claude-plugin/marketplace.json to enable plugin discovery and management through Claude Code's plugin system. Co-Authored-By: Claude Opus 4.6 --- .claude-plugin/marketplace.json | 16 ++++++++++++++++ 1 file changed, 16 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..cd259a4 --- /dev/null +++ b/.claude-plugin/marketplace.json @@ -0,0 +1,16 @@ +{ + "$schema": "https://json.schemastore.org/claude-code-marketplace.json", + "name": "opencli-skill", + "owner": { + "name": "joeseesun", + "url": "https://github.com/joeseesun" + }, + "plugins": [ + { + "name": "opencli", + "source": "./", + "description": "CLI tool that turns websites into CLI interfaces, reusing Chrome's login state. Supports Bilibili, Zhihu, Twitter/X, YouTube, Weibo, 小红书, V2EX, Reddit, HackerNews, 雪球, BOSS直聘 etc.", + "version": "1.0.0" + } + ] +}