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

clowl-protocol

v0.2.0

Published

CLowl - A structured communication language for AI agent-to-agent messaging

Readme

CLowl TypeScript Library

A structured communication language for AI agent-to-agent messaging. Zero runtime dependencies, full TypeScript types.

Install

npm install clowl

Quick Start

import { createReq, createDone, generateCid, generateTid } from "clowl";

const cid = generateCid();
const tid = generateTid();

// Create a request
const req = createReq("oscar", "radar", cid, "search", { q: "MCP vs A2A" }, { tid });
console.log(req.toHuman());
// [2026-02-27 12:00:00 UTC] [t-abc123] oscar > radar: REQUEST search - {"q":"MCP vs A2A"}

// Create a completion
const done = createDone("radar", "oscar", cid, "search", { results: 8 }, { tid, pid: req.mid });
console.log(done.toHuman());

Features

  • All 10 CLowl v0.2 performatives: REQ, INF, ACK, ERR, DLGT, DONE, CNCL, QRY, PROG, CAPS
  • Message creation, validation, and serialization
  • Human-readable English translation
  • Conversation state machine (9 states, 11 events)
  • UUIDv7-style time-ordered message IDs
  • Trace ID propagation
  • JSON Schema validation
  • Zero runtime dependencies
  • Full TypeScript types (no any)

API

Message Creation

import {
  createReq,   // Request
  createAck,   // Acknowledge
  createDone,  // Complete
  createErr,   // Error
  createDlgt,  // Delegate
  createProg,  // Progress
  createCaps,  // Capabilities
  createCncl,  // Cancel
  createInf,   // Inform
  createQry,   // Query
} from "clowl";

State Machine

import { ConversationTracker } from "clowl";

const tracker = new ConversationTracker("conv-001");
tracker.apply("SEND_REQ");   // IDLE -> REQUESTED
tracker.apply("RECV_ACK");   // REQUESTED -> ACKNOWLEDGED
tracker.apply("RECV_DONE");  // ACKNOWLEDGED -> COMPLETED
console.log(tracker.isTerminal); // true

Translator

import { translateToHuman, translateTrace, parseJsonl } from "clowl";

// Single message
const human = translateToHuman(messageData);

// Full trace timeline
const messages = parseJsonl(logFileContent);
const timeline = translateTrace(messages, "t-abc123");

Schema Validation

import { validateSchema } from "clowl";

const result = validateSchema(unknownData);
if (!result.valid) {
  console.error(result.errors);
}

License

MIT - Oscar Sterling Agency

Full spec: clowl.dev