From cecebb12fbfa7f8d799d42ac9123582679baf4c8 Mon Sep 17 00:00:00 2001 From: Noah Zweben MacBook Date: Thu, 20 Nov 2025 13:12:07 -0800 Subject: [PATCH] added readme --- README.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..065560f --- /dev/null +++ b/README.md @@ -0,0 +1,41 @@ +# Claude Code Plugins Marketplace + +A curated marketplace of high-quality plugins for Claude Code. + +## Structure + +- **`/plugins`** - Internal plugins developed and maintained by Anthropic +- **`/external_plugins`** - Third-party plugins from partners and the community + +## Installation + +Plugins can be installed directly from this marketplace via Claude Code's plugin system. + +## Contributing + +### Internal Plugins + +Internal plugins are developed by Anthropic team members. See `/plugins/example-plugin` for a reference implementation. + +### External Plugins + +Third-party partners can submit plugins for inclusion in the marketplace. External plugins must meet quality and security standards for approval. + +## Plugin Structure + +Each plugin follows a standard structure: + +``` +plugin-name/ +├── .claude-plugin/ +│ └── plugin.json # Plugin metadata (required) +├── .mcp.json # MCP server configuration (optional) +├── commands/ # Slash commands (optional) +├── agents/ # Agent definitions (optional) +├── skills/ # Skill definitions (optional) +└── README.md # Documentation +``` + +## Documentation + +For more information on developing Claude Code plugins, see the [official documentation](https://code.claude.com/docs/en/plugins).