npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@robinmordasiewicz/f5xc-console

v0.10.1

Published

Chrome browser automation for F5 Distributed Cloud console - navigate, crawl, and automate XC GUI operations

Readme

f5xc-console

Chrome browser automation for F5 Distributed Cloud console - navigate, crawl, and automate XC GUI operations.

Overview

This Claude Code plugin provides browser automation capabilities for the F5 Distributed Cloud (XC) web console. It uses the Claude in Chrome extension to interact with the console GUI, enabling automated navigation, form filling, and data extraction.

Features

  • Azure SSO Authentication - Automatic detection and handling of session expiry
  • Deterministic Navigation - Pre-crawled element refs for reliable automation
  • Form Automation - Fill HTTP Load Balancer, Origin Pool, and WAF forms
  • Console Crawling - Extract and refresh navigation metadata
  • Real-time Feedback - Watch automation in your browser

Installation

Prerequisites

  1. Claude in Chrome Extension

  2. F5 XC Tenant Access

    • Azure AD credentials with tenant access
    • Valid tenant URL (e.g., https://yourname.console.ves.volterra.io)

Install Plugin

# Clone repository
git clone https://github.com/robinmordasiewicz/f5xc-console.git

# Install as Claude Code plugin
claude plugin install ./f5xc-console

# Or use directly
claude --plugin-dir /path/to/f5xc-console

Usage

Commands

| Command | Description | Example | |---------|-------------|---------| | /xc:console login <url> | Authenticate to tenant | /xc:console login https://nferreira.staging.volterra.us | | /xc:console crawl <url> | Refresh navigation metadata | /xc:console crawl https://nferreira.staging.volterra.us | | /xc:console nav <target> | Navigate to workspace/page | /xc:console nav waap | | /xc:console create <type> | Start resource creation | /xc:console create http-lb | | /xc:console status | Show connection status | /xc:console status |

Quick Start

# Start Claude Code with Chrome integration
claude --chrome

# Login to your tenant
/xc:console login https://yourname.console.ves.volterra.io

# Navigate to HTTP Load Balancers
/xc:console nav http-lb

# Create a new load balancer
/xc:console create http-lb

Navigation Targets

  • home - Console home page
  • waap - Web App & API Protection
  • mcn - Multi-Cloud Network Connect
  • mac - Multi-Cloud App Connect
  • dns - DNS Management
  • http-lb - HTTP Load Balancers
  • origin-pools - Origin Pools
  • waf - App Firewall policies

Plugin Structure

f5xc-console/
├── .claude-plugin/
│   └── plugin.json          # Plugin manifest
├── skills/
│   └── xc-console/
│       ├── SKILL.md         # Skill definition
│       ├── console-navigation-metadata.json
│       ├── workflows/       # Task automation patterns
│       └── scripts/         # Crawl utilities
├── commands/
│   └── console.md           # Command definition
├── README.md
├── LICENSE
└── CHANGELOG.md

Related Plugins

This plugin is part of the F5 XC automation ecosystem:

| Plugin | Commands | Purpose | |--------|----------|---------| | f5xc-console | /xc:console | Browser/console automation | | f5xc-cli | /xc:cli | CLI operations (f5xcctl) | | f5xc-terraform | /xc:tf | Infrastructure as Code | | f5xc-docs | /xc:docs | Documentation lookups | | f5xc-api | /xc:api | Direct API interaction |

Development

Refreshing Metadata

The console crawl extracts element refs for deterministic automation:

/xc:console crawl https://yourname.console.ves.volterra.io

This updates console-navigation-metadata.json with current element refs.

Adding New Workflows

  1. Create workflow file in skills/xc-console/workflows/
  2. Follow existing patterns (see http-loadbalancer-create-basic.md)
  3. Test with /xc:console create <type>

License

MIT License - see LICENSE for details.

Author

Robin Mordasiewicz - GitHub