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

@kraki/tentacle

v0.4.9

Published

Kraki agent bridge — the arm that connects your coding agent to the head

Readme

@kraki/tentacle

CLI bridge that connects your coding machine to Kraki.

Preview: @kraki/tentacle is still early-stage. Expect breaking changes while the core flows stabilize.

@kraki/tentacle runs next to your coding agent, connects to a Kraki relay, and lets you watch and steer sessions from another browser or device.

Right now the main supported agent flow is GitHub Copilot CLI.

Install

Run it once with npx:

npx @kraki/tentacle

Or install it globally:

npm i -g @kraki/tentacle
kraki

Requirements

  • GitHub Copilot CLI installed on the coding machine
  • gh auth login completed
  • A browser or phone to connect to the Kraki web app

Quick start

  1. Run npx @kraki/tentacle or kraki
  2. Follow the setup prompts in the terminal
  3. By default it connects to the hosted relay
  4. Scan the QR code or open the web app to connect your browser or phone

The hosted web app lives at:

  • https://kraki.corelli.cloud

What tentacle handles

Beyond bridging agent events, tentacle is responsible for several things that used to live on the relay:

  • Sequence numbers and timestamps — assigned locally by tentacle, not by the relay
  • Message buffering — tentacle buffers messages and handles replay when devices reconnect
  • Session lifecycle — session create, update, and close are managed here
  • Auto-approval — tools on a local allowed list are approved automatically without user interaction
  • Encryption — all outgoing messages are encrypted before leaving the machine

The relay is a thin forwarder. Tentacle and the frontend own the application logic.

Useful commands

kraki          # start the tentacle / setup flow
kraki status   # show daemon + relay status
kraki connect  # generate a fresh QR code / pairing link
kraki stop     # stop the local daemon

Use your own relay

Start a relay with @kraki/head:

npx @kraki/head

# or
npm i -g @kraki/head
kraki-relay

Then point tentacle setup at your own relay URL instead of the hosted default.

Package naming

  • @kraki/tentacle installs the kraki CLI
  • @kraki/head installs the kraki-relay CLI

Links

  • Main docs: https://github.com/corelli18512/kraki/blob/main/README.md
  • Security model: https://github.com/corelli18512/kraki/blob/main/SECURITY.md