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

weavenames

v0.0.1

Published

Naming for builders. The actual implementation lives on PyPI: pip install weavenames

Readme

Weavenames

Naming for builders.

Weavenames generates project name candidates and verifies their availability across PyPI, npm, GitHub, and domain registries — in parallel — so you stop hand-checking 20 things per name.

uv tool install weavenames
export ANTHROPIC_API_KEY=sk-ant-...
weavenames "open-source memory layer for AI agents, Postgres-native"

Why this exists

Existing naming tools (Namelix, Namesnack, Naming.fyi) generate names but don't check developer registries. You can spend an afternoon hand-verifying PyPI, npm, GitHub, and domains for a single shortlist.

Weavenames does the whole pipeline:

  1. Generates ~200 candidates via Claude Haiku 4.5 with taste guardrails.
  2. Filters for length, pronounceability, profanity, and similarity to existing infra packages.
  3. Checks PyPI, npm, GitHub user/repo, RDAP domains (.com .dev .io .ai), and USPTO trademarks in parallel.
  4. Interprets raw availability — flags squatters, premium-priced domains, GitHub-reserved names, pending-delete states (RFC 8056).
  5. Ranks with pairwise LLM comparison (ELO over rounds — more stable than 0–10 scoring).
  6. Reports a markdown matrix with per-registry status glyphs and rationale.

Phase 1 capabilities

| Stage | Status | Notes | |---|---|---| | LLM generation | done | Claude Haiku 4.5, batches of 50, parallelized | | Heuristic filters | done | length / profanity / pronounceability / collisions / Levenshtein + n-gram similarity | | PyPI / npm | done | Direct registry GET | | GitHub user + repo | done | GITHUB_TOKEN lifts limits to 5K/hr | | RDAP domains | done | whodap via IANA bootstrap, per-TLD asyncio semaphore | | Squatter detection | done | Zero downloads + no GitHub link + 2yr inactive → soft_claimed | | GitHub reserved-name filter | done | Static list of platform-reserved usernames | | RDAP pending delete mapping | done | RFC 8056 statuses → available_soon | | Fastly premium-domain check | done | Skips silently if FASTLY_API_TOKEN not set | | USPTO TESS / TMSearch | done | Top 30, classes 9 (software) and 42 (SaaS) | | Pairwise LLM ranking | done | ELO with stability-based early exit | | Markdown + CSV report | done | Glyph matrix + auto-rationale | | Interactive taste profile | done | ~/.weavenames/profile.json, accept/reject prompt after each run |

Usage

weavenames "your project description here"

# Common flags
weavenames "..." --keywords memory,agent,postgres
weavenames "..." --tlds .com,.dev,.io --top 30
weavenames "..." --target 300 --rank-rounds 6
weavenames "..." --output report.md --csv shortlist.csv
weavenames "..." --no-trademark --no-fastly --no-prompt

Environment

| Variable | Required? | Notes | |---|---|---| | ANTHROPIC_API_KEY | Required | Generation + ranking | | GITHUB_TOKEN | Recommended | Without it, GitHub repo search is skipped and user check is rate-limited at 60/hr | | FASTLY_API_TOKEN | Optional | Enables premium / aftermarket domain detection (10K free / month) | | WEAVENAMES_PROFILE | Optional | Override default profile path (~/.weavenames/profile.json) |

Output legend

| Glyph | Meaning | |---|---| | ✅ | Free | | ❌ | Taken | | ⚠️ | Soft-claimed (squatter / abandoned) | | 🚫 | Reserved (e.g. GitHub platform name) | | 🕒 | Available soon (RDAP pending-delete / redemption) | | 💰 | Premium / aftermarket pricing | | ❓ | Probe error (transient) | | ➖ | Skipped (e.g. .io has no public RDAP server) |

Status

Pre-alpha — Phase 1. Phases 2 (Claude skill wrapper) and 3 (social handles, multi-language profanity, Cloudflare Registrar) are on the roadmap.

Development

uv sync --extra dev
uv run pytest
uvx ruff check .

License

MIT