From fedad418940a3a72435a88e447d1243a9ef6e585 Mon Sep 17 00:00:00 2001 From: Tiffany Phan Date: Tue, 9 Jun 2026 10:50:55 -0700 Subject: [PATCH 1/2] fix: add marketplace.json so the repo can be added with /plugin marketplace add Claude Code requires `.claude-plugin/marketplace.json` to register a repo as a plugin marketplace; `plugin.json` alone causes: Error: Marketplace file not found at .../.claude-plugin/marketplace.json This adds a minimal single-plugin marketplace pointing at the repo root, and updates the README install steps to match what actually works (`/plugin marketplace add` then `/plugin install`). Co-Authored-By: Claude Opus 4.7 --- .claude-plugin/marketplace.json | 15 +++++++++++++++ README.md | 9 ++++++--- 2 files changed, 21 insertions(+), 3 deletions(-) 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..12d290d --- /dev/null +++ b/.claude-plugin/marketplace.json @@ -0,0 +1,15 @@ +{ + "name": "launchdarkly-ai-tooling", + "owner": { + "name": "LaunchDarkly", + "email": "support@launchdarkly.com", + "url": "https://launchdarkly.com" + }, + "plugins": [ + { + "name": "launchdarkly", + "description": "LaunchDarkly agent skills and MCP servers for feature flag management, AgentControl, and metrics", + "source": "." + } + ] +} diff --git a/README.md b/README.md index bb0ab38..add15c2 100644 --- a/README.md +++ b/README.md @@ -52,10 +52,13 @@ Agent Skills are modular, text-based playbooks that teach an agent how to perfor This repo is a [Claude Code plugin](https://code.claude.com/docs/en/create-plugins). Installing it gives you all the skills above plus the LaunchDarkly MCP server. -1. Open Claude Code and run `/plugin install`. -2. Search for **LaunchDarkly**, or install directly from the repo URL: +1. Add this repo as a plugin marketplace in Claude Code: ``` - https://github.com/launchdarkly/ai-tooling + /plugin marketplace add launchdarkly/ai-tooling + ``` +2. Install the plugin: + ``` + /plugin install launchdarkly@launchdarkly-ai-tooling ``` 3. Authenticate the LaunchDarkly MCP server when prompted with your [API access token](https://docs.launchdarkly.com/home/account/api). From 5c239ac70e9062b9fadffbe21ed2b698508e2f0c Mon Sep 17 00:00:00 2001 From: Tiffany Phan Date: Mon, 15 Jun 2026 16:27:42 -0700 Subject: [PATCH 2/2] ci: re-trigger checks after #79 lands