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

fenix-claude-plugin

v0.1.3

Published

Fenix patent automation plugin for Claude Code — MCP connector plus patent drafting, office-action, and project skills.

Readme

Fenix plugin for Claude

Patent automation for Claude Code / Cowork. Bundles:

  • The Fenix MCP connectorhttps://claude.fenix.ai/api/plugin (read + draft tools: get_project, save_project, print_patent, install_fenix_skills, and more).
  • The patent skillsfenix-application, fenix-office-action, fenix-project — shipped as a static snapshot so they work immediately, with a /fenix-install command to refresh the firm-customized, latest versions from the server.

One key, nothing else

You provide a single API key. The server infers your firm — client and database — from that key, so you never configure a database or client name.

Install (no git required)

The marketplace is served over plain HTTPS and the plugin is distributed via npm, so end users never touch git:

  1. Add the marketplace and install the plugin:
    claude plugin marketplace add https://claude.fenix.ai/marketplace.json
    claude plugin install fenix@fenix
  2. Set your key (see /fenix-setup for guided steps):
    • macOS/Linux: export FENIX_API_KEY="<your key>" in ~/.zshrc / ~/.bashrc
    • Windows: setx FENIX_API_KEY "<your key>" Restart Claude Code so the connector picks up the key.
  3. (Optional) /fenix-install — refresh the skills to your firm's latest customized versions.

Local/dev install (from a clone of this repo, no npm needed): claude plugin marketplace add <path-to-Project-Management> then claude plugin install fenix@fenix — this uses the repo-root .claude-plugin/marketplace.json (relative source).

Publishing a new version (maintainers)

The plugin ships to users as the npm package fenix-claude-plugin, referenced by the HTTPS marketplace at https://claude.fenix.ai/marketplace.json (served by back-end/pages/api/marketplace.ts).

  1. Regenerate the bundled snapshot: cd back-end && npm run gen:snapshot.
  2. Bump the version in three places (keep them identical):
    • fenix-plugin/package.jsonversion
    • fenix-plugin/.claude-plugin/plugin.jsonversion
    • back-end/pages/api/marketplace.tsPLUGIN_VERSION
  3. Publish: cd fenix-plugin && npm publish (unscoped public package — no scope/org needed).
  4. Deploy the back-end so /marketplace.json and the /api/plugin connector are live.

Verify the npm contents before publishing with npm pack --dry-run.

Commands

  • /fenix-setup — guided API-key configuration.
  • /fenix-install — pull the latest, firm-customized skills from the server.

How the skills stay in sync

The bundled skills/ snapshot is generated from the same base files the server serves (back-end/skills/…) — it is never hand-edited. Editing a base file and regenerating updates both the server's dynamic install and this static snapshot, so the two never drift. See back-end/skills/README.md for the source of truth and the regeneration script.