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

vshell

v1.0.4

Published

It is a CLI tool that will process input source files with an LLM to generate an output

Readme

VShell

VShell is a powerful command-line interface (CLI) tool that leverages a Large Language Model (LLM) to process input files and generate a README file that will explain the source code functionaility and how to use it. Just imagine if someone give you a source code, and you want to have an overall idea about what it does, then use my application, it will give you a picture of it.Besides, it integrates with the OpenAI Chat Completions API (Groq) to deliver enhanced functionality for your data processing needs.

Demo

https://github.com/user-attachments/assets/cd0679f1-82b6-4547-9291-a6374744fd70

Features

  • Accepts multiple input files as well as folders that has subfolders and files within as command-line arguments for streamlined batch processing.
  • Streams output directly to the terminal via stdout by adding -s/--stream flag.
  • Supports the option to save results to a specified output file instead of displaying them in the terminal.
  • Integrates seamlessly with OpenAI’s Chat Completions API (Groq) to process input data.
  • Logs detailed information about errors and debugging to stderr for easy troubleshooting.
  • Supports the use of a .env file to configure API keys and other setup values automatically.
  • Allows optional configuration of model parameters such as temperature for chat completion processing through a configuration file.

Installation

  • Step 1: Install package

    npm install vshell

  • Step 2: Create .env file and create GROQ_API_KEY

    GROQ_API_KEY=<your_api_key>

How to use

There are some examples included in the Code section of this package on npmjs. Or you can run it using one of your own files placed in the root directory, or any other directory you might make

To run VShell, use the following command syntax: vshell file_name(s) <options>

Options

  • -V, --version : Output the version number.
  • -d, --debug : Enable detailed debug output.
  • -u, --update : Update VShell to the latest version.
  • -m, --model : Specify the LLM model to use.
  • -T, --temperature : Set the temperature parameter for the model (Groq) (default: 0.2).
  • -o, --output : Specify an output file to save the results.
  • -h, --help : Display help for VShell commands.
  • -t, --token-usage : Speicfy specify the usage of token for prompt and response
  • -s, --stream: Stream the output to stdout in real time

TOML config

VShell supports reading a .toml configuration file in the user's home directory to use as pre-set options when provided

If you do not want to provide options when typing on command line, then create a .config.toml in the home directory, and provide options to use:

# temperature <number>: Set model temperature (0.1 to 2)
temperature = 0.5

# output: Specify output file to save result
output = output.md

# tokenUsage <boolean>: Get token usage information
tokenUsage = true

# debug <boolean>: Enable detailed debug message
debug = true

# stream <boolean>: Stream the output to console screen
stream = true

Example

To process README.md with a custom temperature setting and save the result to output.txt, use: vshell ./README.md -t 0.5 -o output.txt This version improves the clarity and professionalism of the README while retaining all the necessary details.