- Home
- Marketplace
- Overview
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.
How It Works
Section titled “How It Works”- Add the marketplace to Claude Code — this registers it as a plugin source
- Install plugins from the marketplace — each plugin adds skills and commands to your Claude Code session
- Use the tools — plugins activate automatically based on context, or you invoke their commands directly
Available Plugins
Section titled “Available Plugins”| Plugin | Category | Description |
|---|---|---|
| f5xc-docs-tools | Productivity | MDX content validation and review tools for documentation repositories |
| f5xc-sales-engineer | Productivity | Sales Engineer persona framework — demo execution, presentation, Q&A, environment management |
Quick Start
Section titled “Quick Start”Add the marketplace and install the docs tools plugin:
/plugin marketplace add f5xc-salesdemos/marketplace/plugin install f5xc-docs-tools@f5xc-salesdemos-marketplaceSee Getting Started for a full walkthrough.
Architecture
Section titled “Architecture”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.