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

unvibe-code

v1.0.0

Published

Advanced AI-powered file assistant with support for multiple AI providers, error handling, memory system, and terminal command execution.

Readme

AI File Assistant with Enhanced Provider Support

Overview

Advanced AI-powered file assistant with support for multiple AI providers, error handling, memory system, and terminal command execution.

Supported AI Providers

🦙 Ollama (Local - No API Key Required)

  • Model: llama2-uncensored:7b
  • URL: http://localhost:11434/api/chat
  • Requirements: Ollama must be running locally

✨ Gemini (Google)

  • Model: gemini-2.5-pro
  • Requirements: Google AI API key
  • Get your key: https://ai.google.dev/

🌟 Mistral (Cloud)

  • Model: mistral-tiny
  • Requirements: Mistral API key
  • Get your key: https://console.mistral.ai/

🤖 OpenAI (ChatGPT)

  • Model: gpt-4
  • Requirements: OpenAI API key
  • Get your key: https://platform.openai.com/api-keys

🧠 Claude (Anthropic)

  • Model: claude-3-5-sonnet-20241022
  • Requirements: Anthropic API key
  • Get your key: https://console.anthropic.com/

Features

Fixed Directory Creation Logic - Files like .html are now created as files, not directories ✅ API Key Configuration - Secure API key input for cloud providers ✅ Multiple AI Providers - Support for 5 different AI services ✅ Error Retry Logic - Automatic retry with different approaches ✅ Auto Error Checking - Automatic syntax validation after file operations ✅ Terminal Command Execution - AI-powered terminal command generation ✅ Memory System - Comprehensive logging and history tracking ✅ File Operations - Create, edit, rewrite, delete, review files ✅ AI Code Review - Intelligent code analysis and improvements

Usage

node index.js
  1. Select your AI provider
  2. Enter API key if required (masked input)
  3. Choose interaction mode:
    • Agent Mode: AI plans and executes complex tasks
    • Chat Mode: Conversational interaction
    • Command Mode: Direct command execution

API Key Security

  • API keys are entered securely (masked input)
  • Keys are stored only in memory during session
  • No API keys are saved to disk
  • Each provider is configured independently

Examples

# Create files (now works correctly!)
"create calculator.html"  # ✅ Creates HTML file (not directory)
"make style.css"         # ✅ Creates CSS file
"create assets/"         # ✅ Creates directory

# AI-powered operations
"review and improve calculator.html"
"check calculator.html for errors"
"run the project"
"build the application"