Plugin marketplaces

Plugins live in marketplaces. As of 2026, the ecosystem is young but growing fast.

Official marketplaces

Community marketplaces

How to vet a plugin before installing

  1. Check the source. Is the repo active? Multiple contributors? Real issues and PRs?
  2. Read the code. Especially the MCP servers and hooks. They run with your permissions.
  3. Review declared permissions. A plugin that claims to do X but requests shell access is suspicious.
  4. Look at the install count + issues. 0 installs = fresh. High install + open unresolved issues = bad sign.
  5. Check the license. MIT/Apache are fine; no-license = legally unclear.

Installing

From the marketplace:

/plugin install <name>@<marketplace>

From GitHub directly (Claude Code):

/plugin install github:user/repo

Publishing your own

The high-level steps:

  1. Create a directory matching the plugin structure (manifest, servers, skills, hooks).
  2. Write a manifest file declaring what's included.
  3. Push to GitHub.
  4. (Optional) Submit to the official marketplace for review.

Conventions:

Plugin hygiene