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

uncle-stans

v1.5.0

Published

Multi-provider AI coding CLI — Claude, GPT-4o, Gemini, DeepSeek, Ollama and more

Readme

UncleStans

Multi-provider AI coding CLI — Claude, GPT-4o, Gemini, DeepSeek, Ollama and more.

Inspired by Claude Code. Built with TypeScript and Bun.

Requirements

  • Bun v1.2.0 or later

Installation

npm install -g uncle-stans
# or
bun install -g uncle-stans

Quick Start

# Interactive REPL
uncle-stans

# Single prompt (CI mode)
uncle-stans --print "explain this codebase" --yes

# Use a specific model
uncle-stans --model gpt-4o
uncle-stans --model gemini-3.1-pro
uncle-stans --model llama3.3  # local via Ollama

Provider Setup

UncleStans resolves providers in this order:

  1. Replit AI Integrations — automatic when running on Replit (no key needed)
  2. BYOK — set any of these environment variables:
    ANTHROPIC_API_KEY=sk-ant-...
    OPENAI_API_KEY=sk-...
    GOOGLE_API_KEY=AIza...
    DEEPSEEK_API_KEY=...
  3. Ollama — runs locally at http://localhost:11434, zero cost

18 Tools

| Tool | Permission | |---|---| | FileReadTool | auto | | FileWriteTool | ask | | FileEditTool | ask | | BashTool | ask | | GlobTool | auto | | GrepTool | auto | | WebFetchTool | auto | | WebSearchTool | auto | | AgentTool | ask | | TodoWriteTool | auto | | MemorySaveTool | auto | | MemorySearchTool | auto | | MemoryListTool | auto | | MemoryDeleteTool | ask | | SkillTool | auto | | SkillListTool | auto | | SendMessageTool | auto | | NotebookEditTool | ask |

Slash Commands

| Command | Description | |---|---| | /help | Show all commands | | /model [name] | Show or switch active model | | /status | Provider and model info | | /cost | Session cost summary | | /clear | Clear conversation history | | /memory | List saved memories | | /skills | List available skills | | /agents | List, inspect, or kill sub-agents | | /commit | Review staged changes and commit | | /review [PR#] | Structured PR review | | /save [name] | Save current session | | /load [name] | Load a saved session | | /compact | Compress conversation history | | /config [k v] | Read or write config | | /permissions | Read or write permission rules | | /mcp | Manage MCP server configuration | | /init | Generate UNCLE.md for current project | | /vim | Toggle vim keybinding mode |

Memory

UncleStans remembers context across sessions using SQLite (via Bun's built-in bun:sqlite). Memories are scoped per-user and per-project.

# Stored at:
~/.uncleStans/memory/     # user scope (all projects)
.uncle-stans/memory/      # project scope (current repo)

Skills

Create reusable prompt workflows as Markdown files:

---
name: deploy
description: Deploy to production
execution: inline
args: [environment]
---
Run the deployment pipeline for {{environment}}...
# Store at:
~/.uncleStans/skills/     # global
.uncle-stans/skills/      # project-local

Configuration

# Context file (place in any project root)
UNCLE.md

# Config
~/.uncleStans/config.json

# Permissions
~/.uncleStans/permissions.json

Environment Variables

| Variable | Default | Description | |---|---|---| | UNCLE_STANS_DEFAULT_MODEL | claude-sonnet-4-5 | Active model | | UNCLE_STANS_PERMISSION_MODE | ask | auto, ask, or deny | | FIRECRAWL_API_KEY | — | Web search via Firecrawl | | OLLAMA_BASE_URL | http://localhost:11434 | Local Ollama endpoint |

License

MIT