Skip to content

Getting Started

This guide walks you through adding the f5xc-salesdemos marketplace to Claude Code and installing your first plugin.

  • Claude Code v1.0.33 or later (plugin marketplace support)
  • A GitHub account with access to the f5xc-salesdemos organization
  1. Add the marketplace

    In any Claude Code session, run:

    /plugin marketplace add f5xc-salesdemos/marketplace

    This registers the marketplace as a plugin source. You only need to do this once.

  2. Browse available plugins

    List what the marketplace offers:

    /plugin marketplace list f5xc-salesdemos-marketplace
  3. Install a plugin

    Install the plugin you need:

    /plugin install f5xc-docs-tools@f5xc-salesdemos-marketplace
    /plugin install f5xc-sales-engineer@f5xc-salesdemos-marketplace
  4. Use the plugin

    Navigate to any f5xc-salesdemos content repository.

    For docs tools, run the MDX review command:

    /f5xc-docs-tools:review-mdx

    For sales engineer, use trigger phrases like “prepare the demo”, “run the demo”, or “walk through the demo” — the plugin activates automatically.

To update an installed plugin to the latest version:

/plugin update f5xc-docs-tools@f5xc-salesdemos-marketplace
/plugin update f5xc-sales-engineer@f5xc-salesdemos-marketplace

Remove a plugin:

/plugin uninstall f5xc-docs-tools@f5xc-salesdemos-marketplace
/plugin uninstall f5xc-sales-engineer@f5xc-salesdemos-marketplace

Remove the marketplace entirely:

/plugin marketplace remove f5xc-salesdemos-marketplace

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.