Skip to content

Overview

A Claude Code plugin marketplace is a curated collection of plugins that extend Claude Code with new skills, commands, and agents. Marketplaces let teams share tooling so every developer gets the same capabilities without manual setup.

The f5xc-salesdemos Marketplace provides plugins built for the f5xc-salesdemos documentation platform — an ecosystem of 20+ repositories that publish Astro/Starlight sites to GitHub Pages using a shared build pipeline.

  1. Add the marketplace to Claude Code — this registers it as a plugin source
  2. Install plugins from the marketplace — each plugin adds skills and commands to your Claude Code session
  3. Use the tools — plugins activate automatically based on context, or you invoke their commands directly
PluginCategoryDescription
f5xc-docs-toolsProductivityMDX content validation and review tools for documentation repositories
f5xc-sales-engineerProductivitySales Engineer persona framework — demo execution, presentation, Q&A, environment management

Add the marketplace and install the docs tools plugin:

/plugin marketplace add f5xc-salesdemos/marketplace
/plugin install f5xc-docs-tools@f5xc-salesdemos-marketplace

See Getting Started for a full walkthrough.

A marketplace is a Git repository that contains one or more plugins. Each plugin packages skills, commands, and agents into a single installable unit.

Marketplace (marketplace.json)
└── Plugin (plugin.json)
├── Skills (SKILL.md)
│ └── References (data files)
├── Commands (.md)
└── Agents (.md)
  • Marketplace — the registry. Lists available plugins with metadata for discovery and installation.
  • Plugin — the installable unit. Contains one or more skills, commands, or agents.
  • Skill — contextual knowledge that Claude activates automatically based on the task at hand.
  • Command — a slash command the user invokes directly (e.g., /review-mdx).
  • Agent — a specialized sub-agent that handles complex, multi-step tasks autonomously.