- Home
- Cloud Plugin Marketplace
- Getting Started
Getting Started
This guide walks through installing and using plugins from the Cloud marketplace.
Prerequisites
Section titled “Prerequisites”1. Install Claude Code
Section titled “1. Install Claude Code”Claude Code is Anthropic’s official CLI for AI-powered software engineering.
npm install -g @anthropic-ai/claude-codeOr visit claude.com/claude-code for installation instructions.
2. Install Claude in Chrome extension
Section titled “2. Install Claude in Chrome extension”For browser automation plugins (like f5xc-console), install the Claude in Chrome extension:
Adding the marketplace
Section titled “Adding the marketplace”Add this marketplace to your Claude Code installation:
Interactive:
/plugin marketplace add robinmordasiewicz/f5xc-marketplaceCLI:
claude plugin marketplace add robinmordasiewicz/f5xc-marketplaceVerify the marketplace is added:
/plugin marketplace listInstalling plugins
Section titled “Installing plugins”Browse available plugins
Section titled “Browse available plugins”/pluginThis shows all plugins from configured marketplaces.
Install a specific plugin
Section titled “Install a specific plugin”From marketplace:
/plugin install f5xc-consoleDirect from GitHub:
/plugin install robinmordasiewicz/f5xc-consoleVerify installation
Section titled “Verify installation”/plugin listUsing plugins
Section titled “Using plugins”f5xc-console plugin
Section titled “f5xc-console plugin”The f5xc-console plugin provides browser automation for the console.
Log in to the console
Section titled “Log in to the console”/xc:console login https://your-tenant.console.ves.volterra.ioThis initiates Azure SSO authentication and logs you into the console.
Navigate to a workspace
Section titled “Navigate to a workspace”/xc:console nav "Web App & API Protection"Crawl navigation metadata
Section titled “Crawl navigation metadata”/xc:console crawl https://your-tenant.console.ves.volterra.ioExtracts navigation structure for intelligent command routing.
Create resources
Section titled “Create resources”/xc:console create http-lbGuides you through creating an HTTP Load Balancer.
Best practices
Section titled “Best practices”Authentication
Section titled “Authentication”Session management
Section titled “Session management”The browser automation maintains session state. For long-running operations:
- Verify you are logged in before starting
- Handle session timeouts gracefully
- Run
/xc:console loginto re-authenticate if needed
Error handling
Section titled “Error handling”If a command fails:
- Check the browser console for errors
- Verify network connectivity
- Ensure you have proper permissions in the console namespace
Next steps
Section titled “Next steps”- Explore Plugin Documentation
- Check the Roadmap for upcoming features
- Learn how to Contribute