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

terse-cli

v0.1.56

Published

CLI for scaffolding, testing, and deploying [Terse](https://useterse.ai) workflows.

Readme

terse-cli

CLI for scaffolding, testing, and deploying Terse workflows.

Terse is a code-first AI workflow platform. You write workflows in TypeScript, generate a typed SDK from your connected integrations, and deploy serverlessly. Full docs at docs.useterse.ai.

Terse is currently in private beta. Email [email protected] to request access.

Install

npm install -g terse-cli

Quickstart

terse init my-project
cd my-project
terse test
terse deploy

terse init scaffolds the project, installs dependencies, runs terse login, walks you through integrations, and runs terse generate to produce a typed SDK from your workspace.

See the full quickstart for a guided walkthrough.

Commands

| Command | What it does | |---|---| | terse init [name] | Scaffold a new project. Runs login, integrations review, and terse generate. | | terse attach | Link an existing repo to Terse in self-hosted mode. | | terse generate | Refresh src/terse.generated.ts with helpers for your connected integrations. | | terse integrate | Connect, disconnect, or refresh integrations from the terminal. | | terse test [job] | Run a workflow locally against a real or sample trigger event. | | terse deploy | Package and deploy all workflows. Removed workflows are deleted remotely. | | terse replay <run-id> | Re-run a past run's trigger event against your local code. | | terse history [job] | List past runs or fetch full chat events for a single run. | | terse dashboard | Open the Terse web app. | | terse login / terse logout | Manage CLI credentials. | | terse docs | Open the docs site. |

Full flag reference for every command: docs.useterse.ai/reference/cli.

Self-hosted layouts

If your app keeps workflow definitions outside the default entry file (src/terse.jobs.ts), pass --entry-file to terse test and terse deploy:

terse test --entry-file src/server.ts
terse deploy --entry-file src/server.ts

See self-hosting for the full setup.

Local development

This package lives in a pnpm workspace alongside terse-sdk and terse-types. From the repo root:

pnpm install
pnpm run dev
pnpm run install-global