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

@seventysixty/codefacility-bridge

v1.7.6

Published

CodeFacility local bridge — verifies AI CLI installations and proxies CLI chat

Downloads

1,944

Readme

@codefacility/bridge

Local bridge that lets the CodeFacility web app verify AI CLI tools installed on your machine.

Why it exists

Browsers cannot run shell commands. This bridge runs as a tiny local HTTP server on 127.0.0.1:7325 — reachable only from your machine — and checks whether CLIs like claude, codex, and gemini are installed and authenticated.

Usage

npx @seventysixty/codefacility-bridge

Run this once in any terminal. Keep it running while you use CodeFacility. Stop it with Ctrl+C.

Security

  • Loopback only — binds to 127.0.0.1, never 0.0.0.0. External machines cannot connect.
  • Origin allowlist — only accepts HTTP requests from codefacility.vercel.app and localhost dev servers.
  • No arbitrary execution — the provider list and CLI commands are hardcoded. No user input is ever used to construct a shell command.
  • execFile not exec — no shell is spawned; shell injection is not possible.
  • No dependencies — uses only Node.js built-in modules.
  • No writes, no outbound calls — reads credential files and environment variables only.

API

GET /health

{ "status": "ok", "version": "1.0.0" }

POST /cli-verify

// Request
{ "provider": "anthropic" }

// Response
{ "installed": true, "authenticated": true, "version": "1.0.5" }
{ "installed": true, "authenticated": false }
{ "installed": false, "authenticated": false }

Supported provider IDs: anthropic, openai, google, mistral, xai

How authentication is detected

The bridge checks two things (no API calls are made):

  1. Credential files — known config/credential file locations for each CLI
  2. Environment variables — e.g. ANTHROPIC_API_KEY, OPENAI_API_KEY

| Provider | CLI | Credential paths checked | |----------|-----|--------------------------| | Anthropic | claude | ~/.claude/.credentials.json | | OpenAI | codex | ~/.codex/config.json, OPENAI_API_KEY | | Google | gemini | ~/.gemini/credentials.json, GOOGLE_API_KEY | | Mistral | mistral | ~/.mistral/credentials.json, MISTRAL_API_KEY | | xAI | xai | ~/.xai/credentials.json, XAI_API_KEY |