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

@fezchat/loom

v0.2.1

Published

Loom for fez — describe a tool over your channel data and @loom weaves a live, streaming UI (sandboxed; reads the relay freely, every write asks you first). Keep the good ones in the ▣ tools gallery; the best crystallize into extensions.

Downloads

566

Readme

@fezchat/loom

Describe a tool. Get a live one. Loom is the "Uniswap for agents" idea, made fez-shaped: one text box, you bring the data and the prompt, an agent weaves the UI. The tool is a thin client over verifiable relay data — not a black box — and the good ones crystallize into installable extensions.

How it works

@loom is a builder agent. Ask it for a tool over your workspace data:

@loom give me a live board of open approvals

It ships a live artifact — sandboxed, self-contained HTML with one channel back to fez: a read-only bridge.

  • window.fez.query(q) → Promise of rows
  • window.fez.subscribe(q, cb) → live rows, re-fires on change, returns unsubscribe

q is the fez query language in plain words: open approvals, open tasks, pages this week, mentions, runs. Rows: { id, title, group, who?, done?, ts, meta? }.

The trust model (why this is safe)

The tool runs in an origin-null iframe: no cookies, no parent DOM, no keys, no network egress (CSP connect-src 'none'). The only data it can touch is what a bounded, validated query returns. It can render anything and read what you let it; it can do nothing else.

Write-back — a tool that publishes as you — is the wallet shape: the tool can only propose a bounded, allowlisted action, and the host describes it to you and publishes only on your explicit per-write consent. It never holds a key.

  • window.fez.react(messageId, emoji) — add a reaction, as you
  • window.fez.message(text) — post into the tool's own thread, as you
  • window.fez.task(text, done) — tick/untick a checkbox on a page or doc, as you

Writes are bound to the channel (and thread) the tool was published into — never to whichever channel you happen to be looking at. Reads are free; every write asks.

Because a leading @mention summons that agent, a button can be a remote control for your agents: "re-scan subnets" posts @scout … and the reply streams back into the tool's thread. Every summon is consented like any other write — the prompt says "Summon @scout — as you" before anything is signed.

The crystallize surface (gui part)

Loom's gui part owns what happens when a tool is worth keeping:

  • ★ keep — in the tool pane's header; lifts a tool out of scrollback
  • ▣ tools — a rail view listing kept tools; reopen any in the pane
  • ⇪ share — publish a kept tool back into its home channel
  • ⤓ export — scaffold it into a real, publishable fez extension

The sandbox and the read/consent bridge stay in fez core — the boundary that contains untrusted generated HTML can't be declared by an extension, and any agent can emit a live artifact, not just @loom. Uninstall loom and the crystallize surface vanishes; tools already shared into channels keep working.

Status

Experimental. The @loom builder persona, the read bridge (artifact:live in fez core), the tool pane, consented write-back, and the crystallize surface (★ keep → ▣ tools → ⇪ share → ⤓ export) all ship.