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

@available-core/cli

v0.1.3

Published

Available Core developer CLI — build and dev-run custom apps.

Readme

@available-core/cli (avc)

The Available Core developer CLI — build and dev-run custom apps (sandboxed UI panels that mount inside your workspace, e.g. the ticket sidebar) and help-center themes (custom colors, fonts, and CSS for your public help center).

Runs anywhere Node.js 20+ runs: macOS, Linux, Windows.

Install

npm install -g @available-core/cli
# or run without installing:
npx @available-core/cli apps dev ./my-app

Commands

avc apps new [dir] --name "My App"      Scaffold a starter app bundle
avc apps dev [dir] [--port 4567] [--https]
                                        Serve a bundle locally for ?avc_apps=
avc apps create --name "My App" [--description d]
                                        Create the app record
avc apps list                           List this brand's apps
avc apps upload <dir> --app <id>        Upload a new draft version
avc apps publish --app <id> --version <id>
                                        Publish a version live
avc themes new [dir] --name "My Theme"  Scaffold a help-center theme
avc themes dev [dir] [--port] [--https] Serve a theme locally for ?avc_theme=
avc themes create --name "My Theme" [--description d]
                                        Create the theme record
avc themes list                         List this brand's themes
avc themes upload <dir> --theme <id>    Upload a new draft theme version
avc themes publish --theme <id> --version <id>
                                        Publish a theme version
avc themes activate --version <id> | --default
                                        Apply a theme (or revert to default)
avc mcp                                 Proxy the workspace MCP server over stdio
avc mcp config                          Print an MCP client config snippet
avc login --host <url> --token <avc_…>  Save host + API key

Use as an MCP server

avc mcp exposes your workspace's MCP tools to any MCP client (Claude Desktop, Cursor, Claude Code) over stdio, using the key from avc login — so the key stays out of the client config. Run avc mcp config for the snippet to paste. Clients that speak remote HTTP MCP can point straight at …/api/mcp instead.

avc apps new and avc apps dev work offline. The rest talk to your workspace and need auth.

Auth

Provide your workspace host + a personal API key (created under your profile → API keys). Resolution order: flags → environment → saved config.

avc login --host https://core.available.dk --token avc_xxxxxxxxxxxxxxxxxxxxxx
# or per-command:
export AVC_HOST=https://core.available.dk
export AVC_TOKEN=avc_xxxxxxxxxxxxxxxxxxxxxx

Write commands (create, upload, publish) require an admin role.

Local dev against real data

avc apps new ./my-app --name "Order Lookup"
avc apps dev ./my-app          # http://localhost:4567

Then open a ticket in your workspace with ?avc_apps=1 (admin only). Edit a file and the panel live-reloads. Use --https if your browser blocks framing http://localhost.

Documentation

Full docs: the Custom apps and Help-center themes sections of your workspace help center.