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

@intentface/latch-channels

v0.11.0

Published

Latch channels — bring a Latch agent to chat platforms (Slack first). A generic run→render-event projection plus per-platform adapters, reusing the core runtime, storage and durability (no separate state store).

Readme

@intentface/latch-channels

Bring a Latch agent to the places people talk — Slack, Telegram, WhatsApp. Reuses the core runtime, storage and durability (no separate state store); identity (platform user → Principal) and channel → agent binding stay in user-land, per Latch's isolation model.

What it does

  • Generic core (.) — the platform-agnostic half:
    • consumeRun(response) → AsyncIterable<RenderEvent> folded from the runtime's SSE Response; pendingApprovals / pendingQuestion read what a paused turn is waiting on from persisted history. Adding a platform is "translate RenderEvents", never "re-parse the AI stream."
    • createTurnKernel(config, surface) — everything a direct-message surface does between "a webhook arrived" and "the platform API was called", written once: dedupe, the identity gate (with stash + post-link replay), thread epochs (/new), commands, questionnaires, media folding (files inline, voice transcribed), the answer posted once at finish (split past the cap; a typing hint meanwhile), approvals and button taps back into the run. A Surface is pure protocol: send text / link / approval / question, edit or retire a card, download a file.
    • AuthResult, the lta: / ltq: button-payload codecs, splitText.
  • Telegram (./telegram) and WhatsApp (./whatsapp) — a webhook parser plus a Surface each, over the kernel. telegramChannel(config) / whatsappChannel(config) verify the webhook, ACK fast, and run the turn in the background (waitUntil).
  • Slack (./slack) — slackChannel(config): one agent's dedicated app; native message streaming with tool calls as task cards, initiator-owned threads, signed actor-bound approval buttons, atomic admission (claimOnce). One live run per chat comes from core's storage invariant on the shipped adapters; on a custom adapter without it, wire the optional claimTurn / releaseTurn lease — every adapter (kernel and Slack) honours it. Plus the per-agent app manifest generator, a minimal Web API client and hand-rolled Block Kit (no Chat SDK runtime dependency). Slack keeps its own engine because its surface is threads, not DMs.

Usage

import { telegramChannel } from "@intentface/latch-channels/telegram";

const channel = telegramChannel<Principal>({
  agent, botRef, botToken, webhookSecret,
  runtime: { handleChat, applyApproval, applyToolResult, compactChat, loadHistory },
  authorizeUser, seen, stashPending, askState, thread, waitUntil,
});
return channel.handleRequest(request); // one webhook route per bot

A new DM platform: implement Surface<User, Ref> and a parser from your webhook body to Inbound<User, Ref>, then createTurnKernel(config, surface).handleInbound(event).