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

tell-ai

v0.3.2

Published

One-shot terminal assistant

Readme

tell-ai

One-shot terminal assistant.

What It Includes

  • tell — terminal CLI for one prompt at a time

Usage

npm install -g tell-ai

Run a prompt:

tell "explain this directory"
tell d "run ls -la"
tell -m d "run ls -la"
tell -m --help

Command execution is interactive by default:

tell d "run ls -la"       # asks before executing
tell -y d "run ls -la"    # executes without confirmation
tell --no-exec d "run ls" # never executes requested commands

-y/--yes is intended for disposable or sandboxed environments. The CLI blocks known high-risk command patterns, but this is a heuristic guard, not a security boundary. Do not use automatic execution in production, critical hosts, or trusted workstations unless it is contained by a real sandbox such as a container or VM.

Persistent context across sessions:

tell -c "remember that this project uses PostgreSQL"
tell -c "now add a users table migration"   # remembers the previous message

Context is stored per working directory and model under ~/.ai/tell_context. Without -c, each invocation starts fresh.

Multi-step chain mode — the assistant can run a command, see its output, and continue with follow-up commands until it reaches a final answer:

tell --chain "find out why the build is failing and fix it"

Include piped input with a prompt:

npm run build 2>&1 | tell -i "what should I fix first?"
git diff | tell --input "review this change"

Tell logs conversations under ~/.ai/tell_history.

API Keys

API keys go in ~/.config/<vendor>.token, for example:

~/.config/openai.token
~/.config/anthropic.token
~/.config/google.token
~/.config/xai.token
~/.config/fireworks.token

Security Tests

Run the prompt-injection and command-execution safety checks with:

npm run test:security

License

MIT2