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

cisco-support

v1.0.3

Published

CLI for querying Cisco Support APIs — bugs, cases, EoX, PSIRT, product, software, serial, and RMA

Readme

cisco-support

npm License: MIT Skills.sh Buy Me A Coffee

CLI for querying Cisco Support APIs — bugs, cases, end-of-life, security advisories, product info, software suggestions, serial coverage/warranty, and RMA tracking.

Prerequisites

You need API credentials from Cisco API Console:

  1. Sign in with your Cisco CCO account
  2. Register an application
  3. Enable the APIs you need (Bug, Case, EoX, PSIRT, Product, Software, Serial, RMA)
  4. Note your Client ID and Client Secret

Installation

npm install -g cisco-support

Quick Start

# Configure credentials
cisco-support config add --client-id <your-id> --client-secret <your-secret>

# Or with Secret Server
cisco-support config add --client-id '<ss:22001:client-id>' --client-secret '<ss:22001:client-secret>'

# Verify
cisco-support doctor

# Start querying
cisco-support bug search --keyword "memory leak"
cisco-support psirt latest --count 5
cisco-support eox --pid WS-C3850-24T

Commands

Bug Search & Lookup

cisco-support bug get CSCvx12345
cisco-support bug get CSCvx12345,CSCvx67890
cisco-support bug search --keyword "crash"
cisco-support bug search --pid CSR1000V --release 17.3
cisco-support bug search --keyword "voice" --severity 1,2 --status open
cisco-support bug search --keyword "onemedia" --progressive

Support Cases

cisco-support case get 123456789
cisco-support case search --contract 12345
cisco-support case search --user userID123

End-of-Life (EoX)

cisco-support eox --pid WS-C3850-24T
cisco-support eox --serial FJC12345678
cisco-support eox --software "15.0(2)SE"
cisco-support eox --date-range 2026-01-01 2026-06-30

Security Advisories (PSIRT)

cisco-support psirt latest --count 10
cisco-support psirt get cisco-sa-20260101-example
cisco-support psirt --cve CVE-2026-1234
cisco-support psirt --severity critical
cisco-support psirt --year 2026

Product Information

cisco-support product --serial FJC12345678
cisco-support product --pid WS-C3850-24T

Software Suggestions

cisco-support software suggest --pid WS-C3850-24T
cisco-support software releases --pid WS-C3850-24T
cisco-support software compare --pid WS-C3850-24T --from 16.9 --to 17.3

Serial Coverage & Warranty

cisco-support serial coverage FJC12345678
cisco-support serial warranty FJC12345678

RMA Tracking

cisco-support rma get 12345678
cisco-support rma --serial FJC12345678

Configuration & Health

cisco-support config show
cisco-support config test
cisco-support config enable-api bug,psirt
cisco-support doctor

Output Formats

All commands support --format table|json|toon|csv:

cisco-support bug search --keyword "crash" --format json
cisco-support eox --pid WS-C3850-24T --format csv > eox-report.csv

Environment Variables

| Variable | Description | |---|---| | CISCO_CLIENT_ID | Cisco API client ID (overrides config) | | CISCO_CLIENT_SECRET | Cisco API client secret (overrides config) |

Related Tools

| Tool | Purpose | |---|---| | cisco-axl | CUCM configuration via AXL | | cisco-dime | CUCM log collection via DIME | | cisco-ise | ISE endpoint & session management | | cisco-uc-engineer | UC troubleshooting orchestration |

Funding

Buy Me A Coffee

License

MIT