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

awesome-enhancer

v0.4.0

Published

CLI tool to automatically enhance awesome lists with metadata and improved descriptions

Readme

awesome-enhancer

CLI tool to automatically enhance awesome lists with metadata and improved descriptions

Features

  • 📊 Metadata Extraction - Automatically add GitHub/GitLab stats (stars, forks, language)
  • 📝 Auto-describe - Generate or improve descriptions via web scraping
  • 🛡️ Stale Detection - Detect archived, disabled, and deleted GitHub/GitLab repositories
  • 🔀 Redirect Detection - Detect repository transfers and renames
  • 🌐 URL Support - Enhance lists directly from GitHub or GitLab repository URLs
  • 🤖 AI-Agent Friendly - MCP server and HTTP API for programmatic access
  • 🖥️ Interactive TUI - Guided prompts for option selection
  • Fast - Built with Bun, cached API calls

Installation

# Global
npm install -g awesome-enhancer

# Or via Bun
bun install -g awesome-enhancer

CLI Usage

# Interactive mode (with prompts)
awesome-enhancer

# With flags
awesome-enhancer README.md --add-metadata --dry-run
awesome-enhancer https://github.com/user/awesome-list --add-metadata --output enhanced.md

Options

| Flag | Description | | ----------------------- | ---------------------------------------------------------- | | --add-metadata | Add GitHub/GitLab stars, forks, language badges | | --update-descriptions | Improve descriptions via web scraping | | --detect-stale | Detect archived, disabled, and deleted GitHub/GitLab repos | | --detect-redirects | Detect repository transfers and renames | | --output <file> | Output file path | | --dry-run | Preview without writing | | --skip-lint | Skip awesome-lint checks | | --github-token | GitHub API token for higher rate limits | | --gitlab-token | GitLab API token for higher rate limits |

AI-Agent Integration

MCP Server (for Claude, etc.)

# Start MCP server
awesome-enhancer-mcp

Available tools:

  • enhance_local_file - Enhance local markdown files
  • enhance_github_url - Enhance GitHub URLs
  • enhance_with_json_output - Get results as JSON

HTTP API Server

# Start HTTP server on port 9867
awesome-enhancer-server
# Or run directly
npm run dev:server

Endpoints:

| Method | Path | Description | | ------ | ----------------- | ----------------------- | | GET | / | API info | | GET | /health | Health check | | POST | /enhance | Auto-detect source type | | POST | /enhance/local | Enhance local file | | POST | /enhance/github | Enhance GitHub URL | | POST | /enhance/gitlab | Enhance GitLab URL |

Example:

curl -X POST http://localhost:9867/enhance/local \
  -H "Content-Type: application/json" \
  -d '{"file_path": "README.md", "add_metadata": true, "dry_run": true}'

Claude Desktop Integration

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "awesome-enhancer": {
      "command": "npx",
      "args": ["awesome-enhancer-mcp"]
    }
  }
}

Example

Before:

- [axios](https://github.com/axios/axios) - Promise based HTTP client
- [axios/axios-mock-adapter](https://github.com/axios/axios-mock-adapter) - Mock library

After (with --add-metadata --detect-stale):

- [axios](https://github.com/axios/axios) (⭐ 110k) - Promise based HTTP client for browser and Node.js ![TypeScript](https://img.shields.io/github/languages/top/axios/axios)
- [axios/axios-mock-adapter](https://github.com/axios/axios-mock-adapter) - Mock library ![Status](https://img.shields.io/badge/status-archived-red?style=flat-square)
- [gitlab-org/gitlab](https://gitlab.com/gitlab-org/gitlab) (⭐ 10k) - GitLab - Ruby on Rails based Git hosting, CI/CD, and more ![Ruby](https://img.shields.io/gitlab/languages/top/gitlab-org/gitlab)

Configuration

Set GITHUB_TOKEN or GITLAB_TOKEN env vars for higher rate limits.

License

  • Code: AGPL-3.0 (see LICENSE)
  • Content: CC0 1.0 recommended for awesome lists