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

blink

v1.1.41

Published

Blink is a tool for building and deploying AI agents.

Readme

discord NPM Version Documentation

Blink is a self-hosted platform for running AI agents that your team can talk to in Slack, GitHub, and a web UI. It includes Scout, an agent built for coding tasks and codebase research, which you can customize with new tools and prompts. You can also build entirely new agents in TypeScript with the Blink SDK.

Blink Demo

Get Started

Requirements

  • Node.js 22+ or Bun
  • Docker (the server needs it to deploy agents)

Install and run the Blink server

npm install -g blink-server
blink-server

Open the Blink web UI in your browser and create your first agent. Alternatively, you may run the server with Docker.

Use Cases

  • Understanding complex codebases - ask questions about how a repo works, how parts connect, or where to start when the code is unfamiliar.

  • Coding partner in Slack - discuss ideas, open GitHub issues, or handle small coding tasks directly in Slack without breaking the conversation.

  • Customer support in shared channels - let your customers ask technical questions in shared Slack channels and get answers backed by citations from your codebase and documentation.

  • And more - Blink lets you build custom agents for any use case.

Why Blink?

  • Retain control of your data and infrastructure. Blink runs on your own servers, and agents can use any LLM provider: be it Amazon Bedrock, Google Vertex, or a self-hosted model.
  • Centralize your conversations. Compared to Claude Code, all conversations are stored in a single database.
  • Centralize access. Blink lets you define access controls to your agents in a single place.
  • Write code instead of configuring MCP and Skills. With Blink you use TypeScript to build agents and add tools to them.

Features

  • Pre-built, fully-functional Scout agent, which you can customize for your own use
  • Web UI where you can chat with agents
  • Blink SDK - a set of libraries for building agents compatible with the Blink platform
  • Blink CLI - a command-line tool for developing agents locally
  • Observability - use the web UI to view logs and traces
  • Docker-based deployment - agents are deployed as Docker containers
  • User and organization management - invite your team to use and collaborate on agents

What's a Blink agent?

Agents are HTTP servers that respond to events. The Blink Server deploys them as Docker containers, routes messages from Slack/GitHub/web UI, and manages conversation state - your agent just defines how to respond.

import { convertToModelMessages, streamText } from "ai";
import * as blink from "blink";

const agent = new blink.Agent();

agent.on("chat", async ({ messages }) => {
  return streamText({
    model: "anthropic/claude-opus-4.6",
    messages: convertToModelMessages(messages),
    system: "You are a helpful assistant.",
  });
});

agent.serve();

The on("chat") handler processes incoming messages. For tool calls, the server automatically loops back to your agent until the response is complete.

For a closer look at Blink agents, visit blink.coder.com/docs.

Current State of the Project

We've been using Blink at Coder for a few months now. We built in-house agents that:

  • help our customers in Slack with questions related to the Coder product by analyzing the coder/coder repository
  • automatically diagnose flaky tests in our CI pipeline, create issues, and assign relevant engineers to fix them
  • answer questions from our sales team by aggregating data from our CRM and sales tools

and more.

That being said, Blink is still in early access. You may encounter bugs and missing features. If you do, please file an issue.

License

Server code is licensed under AGPLv3. Agent SDKs are licensed under MIT.