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

@ellipsis-dev/sdk

v0.30.0

Published

TypeScript SDK for the Ellipsis agents platform: /v1 REST types + client, the session stream WebSocket client, and the session transcript store.

Readme

@ellipsis-dev/sdk

TypeScript SDK for the Ellipsis agents platform. Three subpath exports, all dependency-free at runtime:

  • @ellipsis-dev/sdk — generated /v1 REST types + EllipsisClient, a thin typed client over an injected fetchJson.
  • @ellipsis-dev/sdk/stream — the session stream WebSocket client (streamSession): protocol negotiation, heartbeat liveness, reconnect-with-backoff, and lossless resume via the after_seq record cursor. Transport is an injected openSocket, so the same machinery runs in a browser, a terminal, or a server.
  • @ellipsis-dev/sdk/storeSessionTranscriptStore (subscribe/getSnapshot, shaped for React's useSyncExternalStore but framework-free) plus the pure shaping helpers that turn raw session records into renderable transcript items and chat turns.

Types are generated, never hand-written

  • schema/frames.schema.json — JSON Schema of the WebSocket frames, produced from the server's frame models.
  • schema/openapi.v1.json — the OpenAPI document for the SDK's REST surface.

pnpm gen derives src/generated/ from those documents (json-schema-to-typescript + openapi-typescript). CI regenerates and diffs, and the server's own test suite pins the committed schema documents to its models, so types cannot drift from the deployed API in either direction.

test/fixtures/golden_stream.json is a frame sequence recorded from the real server stream loop (ids and timestamps normalized); the store's tests replay it, so client behavior is validated against real emissions, not hand-written examples.

Protocol

The stream protocol (frame taxonomy, delivery classes, resume/close-code contract) is documented at https://www.ellipsis.dev/docs. The compatibility rule clients must follow: ignore unknown frame types and unknown source/record_type/kind values — additive server changes are not a protocol break.

Shared chat work sections

Web and CLI renderers can use splitLedger(groupRecordsToChatTurns(records)) and entryBody(entry, { live, now, liveText, liveSummary }) from @ellipsis-dev/sdk/store. now is epoch milliseconds. The returned items are the collapsed view: one isWorkFold(item) section for progress, thinking and tools, with final replies, sleep and cancellation notices kept visible. Wake milestones stay inside the work section. members.get(item.key) contains that section's rows; nested tool folds use the same map and isToolFold. Renderers own expansion state and can recursively display the members.

The work key stays stable as records stream in and after replay. The live label advances from Waking session to Starting agent to Working as the platform and native turn events arrive. While the agent works, the heading from store.getSnapshot().liveSummary replaces Working when available. Pass the summary only to the entry being answered (loading: true, add a loading indicator in the renderer). The returned seconds uses platform turn start and completion timestamps, even before the first content item arrives. It is null before a turn starts; omit the clock then. entry.progress.phase identifies each message's activity independently of the latest message or session status. The settled label is Worked for 4m 43s. Only the work header is loading; partial text stays inside it. Codex message phases identify final answers; for records without phases, the final message of a settled turn stays outside the fold. No DOM, React, or terminal dependencies are required.