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

@audividi/cli

v0.2.1

Published

AudiVidi CLI — pull your transcripts, summaries and audio from the terminal.

Readme

@audividi/cli

Pull your AudiVidi transcripts, summaries, and audio from the terminal. Read-only.

Install

npm install -g @audividi/cli

Sign in

Create an API key in AudiVidi → Settings → Developers (starts with av_, shown once), then:

audividi login av_your_key_here

The key is stored in ~/.config/audividi/credentials.json (mode 0600; XDG_CONFIG_HOME honored). Or set AUDIVIDI_API_KEY in your environment.

Commands

audividi login <av_key>     Sign in
audividi logout             Remove the stored key
audividi me                 Show the signed-in account
audividi files [-p N] [-s N]   List recent transcripts
audividi recent [--days N]  Transcripts from the last N days (default 7)
audividi today              Transcripts from today
audividi search <keyword> [--from YYYY-MM-DD] [--to YYYY-MM-DD] [--max N]
audividi file <id>          Full record (JSON)
audividi transcript <id> [--format txt|srt|vtt|json|md] [-o file] [--json]
audividi summary <id> [-o file.md]
audividi audio <id>         24h audio download URL (when stored)
audividi ask "<question>" [--ids a,b] [--weak] [--json]   Ask your indexed library; prints answer + sources
audividi version

Global flags: --json (machine-readable output), --api <url> or AUDIVIDI_API_URL (override base URL; default https://audividi.ai), -o, --out <file> (write to a file).

Example

audividi search "Q2 budget" --from 2026-04-01 --to 2026-06-30 --json
audividi transcript 1a2b3c --format srt -o ~/Downloads/meeting.srt

Notes

  • Requires Node 20+.
  • Read-only — the CLI cannot record, edit, or delete; the API key carries read scope only.
  • files/search cover the transcripts stored on the server. Enable Library Sync in AudiVidi Settings to make your full local library reachable.

Develop

npm install && npm test && npm run build