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

@panorama-ai/gateway

v2.24.132

Published

Gateway service for connecting a team to CLI capabilities on this machine.

Readme

Panorama Gateway

Gateway service for connecting a team to CLI capabilities on this machine.

Usage

Pair the gateway with a team using a pairing code:

PANORAMA_ENV=dev pnpm --filter @panorama-ai/gateway dev -- pair <PAIRING_CODE>

Or pass Supabase credentials directly:

SUPABASE_URL="https://your-project.supabase.co" \
SUPABASE_ANON_KEY="your-anon-key" \
pnpm --filter @panorama-ai/gateway dev -- pair <PAIRING_CODE>

Start the gateway and begin listening for jobs (foreground in dev, background for built CLI):

pnpm --filter @panorama-ai/gateway dev -- start

Force the gateway into the background (built binary only):

pnpm --filter @panorama-ai/gateway build
pnpm --filter @panorama-ai/gateway start -- --daemon

Run in the foreground (built binary):

pnpm --filter @panorama-ai/gateway start -- --foreground

Stop the gateway:

pnpm --filter @panorama-ai/gateway dev -- stop

Check gateway status:

pnpm --filter @panorama-ai/gateway dev -- status

Tail logs:

pnpm --filter @panorama-ai/gateway dev -- logs --lines 200

Optional flags:

  • --device-name "My MacBook"
  • --verbose, -v (show technical details like paths, IDs, and PIDs)
  • --supabase-url "https://..."
  • --anon-key "..."
  • --env local|dev|test|stage|prod
  • --env-file /path/to/.env
  • --foreground (run in the foreground)
  • --daemon (force background for built CLI)
  • --config-dir /path/to/dir
  • --config-path /path/to/gateway.json
  • --log-path /path/to/gateway.log
  • --pid-path /path/to/gateway.pid
  • --claude-cli /path/to/claude
  • --codex-cli /path/to/codex
  • --gemini-cli /path/to/gemini
  • --claude-home /path/to/claude-home
  • --no-follow (show logs without follow)

The gateway stores credentials in ~/.panorama/gateway/gateway.json by default. Override with --config-path or PANORAMA_GATEWAY_CONFIG_PATH.

Environment

The gateway expects these values (CLI flags override environment variables):

  • SUPABASE_URL (or PANORAMA_SUPABASE_URL)
  • SUPABASE_ANON_KEY (or PANORAMA_SUPABASE_ANON_KEY / SUPABASE_PUBLISHABLE_KEY)

When --env or PANORAMA_ENV is provided, the gateway loads .env.<env> from the repo root (falls back to .env for local). You can always point to a specific env file with --env-file.

Job Handling

The initial implementation processes diagnostic jobs by running claude --version on this machine and storing the output in the job result.

CLI Provider Notes

See packages/gateway/CLI_PROVIDERS.md for current findings on Claude Code, Codex CLI, and Gemini CLI usage patterns.