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.17.9

Published

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

Readme

Kraki

CLI bridge that connects your coding machine to Kraki.

Preview: Kraki is still early-stage. Expect breaking changes while the core flows stabilize.

Kraki runs next to your coding agent, connects to a relay, and lets you watch and steer sessions from your phone or another device.

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

Install

# macOS / Linux
curl -fsSL https://app.kraki.chat/install.sh | bash

# Windows (PowerShell)
irm https://app.kraki.chat/install.ps1 | iex

# or with npm (all platforms)
npm i -g @kraki/tentacle
kraki

Or download the binary manually.

Requirements

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

Quick start

  1. Download and run the binary
  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://app.kraki.chat

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
  • Attachment storage — image bytes produced by the agent are stored content-addressed on disk and streamed to receivers in chunks, not embedded inline in messages
  • Kraki MCP server — a loopback HTTP server exposing tools the agent can call to surface images (kraki-show_image) and similar artifacts to user-facing devices

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.

Links

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