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

@unformal/cli

v0.4.1

Published

CLI for Unformal — create and manage AI-powered conversational forms

Readme

@unformal/cli

CLI for Unformal — create and manage AI-powered conversational forms. Replace static forms with AI conversations that adapt to each respondent and extract structured data.

Install

npm i -g @unformal/cli
# or run directly with npx
npx @unformal/cli <command>

Authenticate

Option A: agent-ready signup (no browser)

Create an account straight from the terminal. The key comes back immediately; a 6-digit code hits your inbox to activate it.

unformal signup --email [email protected]
# -> API key printed, inactive until verified
unformal verify --email [email protected] --code 123456
# -> key is now active
unformal init --key unf_...

Intended for AI agents: two API calls, one human action (reading six digits). No password, no OAuth dance.

Option B: existing key

If you already have an API key (from unformal.ai/studio/settings or a previous signup), just run:

unformal init --key unf_YOUR_KEY

Or export UNFORMAL_API_KEY=unf_... in your shell.

Commands

Auth (no API key required)

# New account
unformal signup --email [email protected]       # Create account, get inactive key + email code
unformal verify --email [email protected] --code 123456    # Activate key
unformal resend-verification --email [email protected]     # New code if the first expired

# Existing account, key lost or never saved
unformal login --email [email protected]                   # Email a 6-digit login code
unformal login --email [email protected] --code 123456 --save    # Verify + save fresh API key

Create and manage Pulses

unformal create --intention "Qualify leads for our enterprise plan" --mode interview
unformal list
unformal get PULSE_ID
unformal update PULSE_ID --max-questions 10

Read responses

unformal conversations PULSE_ID            # Summary table of all conversations
unformal conversation CONV_ID              # Full transcript + structured answers + echo
unformal export PULSE_ID --format json --output all.json   # Bulk dump
unformal export PULSE_ID --format csv --output all.csv

Aggregate insights

unformal resonance PULSE_ID                # Themes, NPS, per-question stats, quotes, open-ended highlights
unformal analytics PULSE_ID                # Completion rate, duration, field coverage, sentiment

Account

unformal usage                             # Credit balance + totals

Every command supports --json for piping structured output to another agent.

API

Everything the CLI does is available on the HTTP API. See unformal.ai/SKILL.md for the full reference including curl examples, response shapes, and the list of ui_hint types.

License

MIT