- Home
- Marketplace
- Getting Started
Getting Started
This guide walks you through adding the f5xc-salesdemos marketplace to Claude Code and installing your first plugin.
Prerequisites
Section titled “Prerequisites”- Claude Code v1.0.33 or later (plugin marketplace support)
- A GitHub account with access to the f5xc-salesdemos organization
Installation
Section titled “Installation”-
Add the marketplace
In any Claude Code session, run:
/plugin marketplace add f5xc-salesdemos/marketplaceThis registers the marketplace as a plugin source. You only need to do this once.
-
Browse available plugins
List what the marketplace offers:
/plugin marketplace list f5xc-salesdemos-marketplace -
Install a plugin
Install the plugin you need:
/plugin install f5xc-docs-tools@f5xc-salesdemos-marketplace/plugin install f5xc-sales-engineer@f5xc-salesdemos-marketplace -
Use the plugin
Navigate to any f5xc-salesdemos content repository.
For docs tools, run the MDX review command:
/f5xc-docs-tools:review-mdxFor sales engineer, use trigger phrases like “prepare the demo”, “run the demo”, or “walk through the demo” — the plugin activates automatically.
Updating Plugins
Section titled “Updating Plugins”To update an installed plugin to the latest version:
/plugin update f5xc-docs-tools@f5xc-salesdemos-marketplace/plugin update f5xc-sales-engineer@f5xc-salesdemos-marketplaceUninstalling
Section titled “Uninstalling”Remove a plugin:
/plugin uninstall f5xc-docs-tools@f5xc-salesdemos-marketplace/plugin uninstall f5xc-sales-engineer@f5xc-salesdemos-marketplaceRemove the marketplace entirely:
/plugin marketplace remove f5xc-salesdemos-marketplaceTeam Configuration
Section titled “Team Configuration”To pre-configure the marketplace for your entire team, add it
to your project’s .claude/settings.json:
{ "extraKnownMarketplaces": [ "f5xc-salesdemos/marketplace" ], "enabledPlugins": [ "f5xc-docs-tools@f5xc-salesdemos-marketplace", "f5xc-sales-engineer@f5xc-salesdemos-marketplace" ]}This ensures every contributor has the same tooling available from their first Claude Code session in the repository.