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

termpilot

v0.2.2

Published

AI-powered CLI assistant

Readme

🛡️ TermPilot

TermPilot is an AI-powered command-line assistant that transforms natural language into secure shell commands and explains existing commands with safety guidance. It’s designed to help developers and sysadmins work faster and more confidently! 🚀


✨ Features

  • 🗣️ Natural Language to CLI: Convert English prompts into one-line shell commands.
  • 🕵️‍♂️ Explain Mode: Analyze and explain any shell command, highlighting risks and suggesting improvements.
  • 🔒 Interactive Safety: Confirm non-destructive commands with y/N; type the command exactly to authorize destructive operations.
  • 🖥️ Local Context Aware: Detect OS, shell, Node.js version, current directory, and Git branch.
  • 🔑 Secure Config Persistence: Safely store your OpenAI API key in ~/.termpilot.json.

🎥 Demo

TermPilot Demo


🛠️ Prerequisites

  1. Node.js v18.0.0 or higher
  2. An OpenAI API key (get one at: https://platform.openai.com/account/api-keys) 🔑

🚀 Installation & Setup

  1. Clone the repo

    git clone https://github.com/your-username/termpilot.git
    cd termpilot
  2. Install dependencies

    npm install
  3. Build

    npm run build
  4. Link globally

    • Development: npm link
    • Or one-time: npm install -g .

🔑 Configuration: OpenAI API Key

  • First Run: TermPilot prompts for your API key and saves it to ~/.termpilot.json.

  • Environment Variable: Add to your shell config to skip prompts:

    export OPENAI_API_KEY="sk-..."

💡 Usage

1️⃣ Generate & Execute Commands

termpilot run "<natural language task>"

Example:

termpilot run "list files in the current directory"
  • Non-destructive: Confirm with y or n.
  • Destructive: Type the full command to confirm. 🚨

2️⃣ Explain Commands

termpilot explain "<shell command>"

Example:

termpilot explain "rm -rf ./build"
  • Provides human-readable explanation, potential risks, and safety tips. 🛡️

⚙️ Configuration Options

  • Model Selection: Set default LLM:

    export OPENAI_MODEL="gpt-3.5-turbo"

🧪 Testing

  • Manual:

    termpilot run "print the current working directory"
    termpilot run "delete all .tmp files interactively"
    termpilot explain "find . -type f -size +100M"
  • Automated (Vitest):

    npm test

🤝 Contributing

  1. Fork the repo 🌱
  2. Create a branch (git checkout -b feature/xyz)
  3. Commit your changes (git commit -m "feat: add xyz feature")
  4. Push and open a PR 🚀

Please adhere to existing style and add tests for new code.


📄 License

MIT License © Gaurav Mahidhariya