From bd87573c0446532e887a89bc4590c28ddb0db5c9 Mon Sep 17 00:00:00 2001 From: Andrey Markelov Date: Thu, 3 Sep 2026 14:36:03 -0700 Subject: [PATCH] Add marketplace manifest for Claude Code plugin distribution Enables zero-clone installation via Claude Code marketplace: /plugin marketplace add Dropbox/dbxcli /plugin install dbxcli@dbxcli The manifest points to the packaged plugin in dist/claude/dbxcli-plugin, allowing users to install without manual repository cloning. --- marketplace.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 marketplace.json diff --git a/marketplace.json b/marketplace.json new file mode 100644 index 0000000..1f07b40 --- /dev/null +++ b/marketplace.json @@ -0,0 +1,14 @@ +{ + "name": "dbxcli", + "displayName": "Dropbox dbxcli", + "description": "Official Dropbox CLI plugin for Claude Code", + "version": "1.0.0", + "plugins": [ + { + "name": "dbxcli", + "path": "dist/claude/dbxcli-plugin", + "version": "0.1.0", + "description": "Safely operate Dropbox through locally installed dbxcli CLI" + } + ] +} \ No newline at end of file