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

openbuff

v2.0.5

Published

Openbuff CLI - AI Coding Assistant with NVIDIA NIM

Downloads

1,054

Readme

Openbuff - AI Coding Assistant with NVIDIA NIM

Openbuff is a powerful CLI tool that writes code for you, powered by NVIDIA NIM (NVIDIA Inference Microservices).

Key Features

  • NVIDIA NIM Integration: Leverages NVIDIA's inference microservices for fast, efficient AI-powered code generation
  • Understands your whole codebase: Deep code context awareness
  • Creates and edits multiple files based on your natural language requests
  • Runs tests, type checkers, and linters to ensure code quality
  • Powerful iterative approach: Keep working until it reaches your goals

Installation

To install Openbuff, run:

npm install -g openbuff

(Use sudo if you get a permission error.)

Usage

After installation, start Openbuff by running:

openbuff [project-directory]

If no project directory is specified, Openbuff will use the current directory.

Prerequisites

Openbuff uses NVIDIA NIM for inference. You'll need:

  1. An NVIDIA API key (get one at https://build.nvidia.com)
  2. Set your NVIDIA API key as an environment variable:
    export NVIDIA_API_KEY=your_nvidia_api_key_here

Configuration

Openbuff can be configured via environment variables:

| Variable | Description | |----------|-------------| | NVIDIA_API_KEY | Your NVIDIA NIM API key | | OPENBUFF_MODEL | Model to use (default: nvidia/llama-3.1-nemotron-70b-instruct) | | HTTPS_PROXY | Proxy server URL (if behind a corporate firewall) |

Publishing to npm

To publish this package to npm:

cd openbuff/release

# Set your npm token
npm config set //registry.npmjs.org/:_authToken=YOUR_NPM_TOKEN

# Publish
npm publish --access public

Or use the included publish script:

NPM_TOKEN=your_token node publish.js

Knowledge Files

To unlock the full benefits of modern LLMs, we recommend storing knowledge alongside your code. Add a knowledge.md file anywhere in your project to provide helpful context, guidance, and tips for the LLM as it performs tasks for you.

Tips

  1. Type '/help' or just '/' to see available commands
  2. Create a knowledge.md file to collect specific advice for your codebase
  3. Type undo or redo to revert or reapply file changes
  4. Press Esc or Ctrl+C while generating to stop it

Troubleshooting

Permission Errors

If you are getting permission errors during installation, try using sudo:

sudo npm install -g openbuff

Corporate Proxy / Firewall

If you see Failed to download openbuff: Request timeout, you may be behind a corporate proxy. Set HTTPS_PROXY:

export HTTPS_PROXY=http://your-proxy-server:port
openbuff

Feedback

Please email your feedback to [email protected]. Thank you for using Openbuff!