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

@getxsite/agent

v0.3.13

Published

Local agent for GetXsite.com — lets the studio drive your own claude / codex / shell / filesystem over a secure Supabase Realtime channel.

Readme

GetXsite Local Agent

Runs on your machine. Lets the GetXsite studio drive a real claude (or codex) process and run shell commands on your local box, while you use the studio's chat / file editor / preview / deploy UI in any browser.

The agent talks to the studio over a Supabase Realtime channel scoped to your user id — no inbound port required, works behind any firewall.

Install + run (one command)

GETXSITE_USER_ID=<your-uuid> npx -y @getxsite/agent

npx downloads the package, runs it, and leaves it cached. No global install required. Your user id is shown in the studio toolbar → Agent panel.

Alternative: install globally

npm install -g @getxsite/agent
getxsite-agent --user-id <your-uuid>

Run from a local checkout (for development)

If you're working on the agent itself, clone this repo and run:

cd agent
npm install
node bin/agent.mjs --user-id <your-uuid>

You should see:

[agent] Connected as your-machine on channel agent-<uuid>.

The studio will show Connected once it sees the agent's heartbeat. From there, the chat panel sends prompts to your local claude / codex and streams responses back into the browser.

What the agent can do

  • Run shell commands the studio asks for (e.g. claude -p "<prompt>").
  • Stream stdout/stderr back to the studio.
  • Be killed cleanly when the studio sends a kill signal.

What it can't do (yet)

  • Read/write files on your disk through the studio (next release).
  • Watch the project directory for changes and sync to the studio (next release).
  • Forward dev server ports (next release).

Security

  • The channel is agent-<your-uuid>. Your uuid is a random 128-bit value — it's the secret. Don't paste it into untrusted places.
  • The agent only executes commands originating on the studio side via that channel. There's no listening port on your machine.
  • All traffic flows through Supabase's TLS-encrypted Realtime infra.