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

@neuvybe/ctx

v0.3.0

Published

ctx — a reusable agent-context platform. Shares durable project guidance while keeping per-clone session state private, with an optional whole-folder local mode.

Readme

@neuvybe/ctx

ctx gives coding agents durable, project-specific context that survives compaction. New scaffolds use layout v2: a small core of evidence-tracked project facts, a hierarchical index, and an ignored local continuation file. The glossary add-on is selected by default; other add-ons stay opt-in.

Team mode is the default. Durable context is available to review and commit, while .ctx/local/CONTINUE.md stays ignored. --mode local keeps the entire scaffold private through the repository's common .git/info/exclude. ctx never stages or commits files.

Install

npm install -g @neuvybe/ctx
ctx --version

The postinstall step fetches the matching binary from the package version's GitHub release. If that download is unavailable, install with:

go install github.com/neuvybe/ctx/cmd/ctx@latest

Initialize

# Team-mode v2 core plus glossary
ctx init /path/to/repo

# Core only
ctx init /path/to/repo --without glossary

# Whole-folder private
ctx init /path/to/repo --mode local

# Add focused context at creation
ctx init /path/to/repo --with operating,contracts

# Inspect or extend an existing v2 scaffold
ctx add --list
ctx add /path/to/repo review

glossary remains an add-on so projects can omit it with --without glossary, but new scaffolds select it by default. --with and --without are repeatable and comma-friendly. The other available add-ons are operating, contracts, extending, and review.

For new initialization, --folder accepts one top-level name containing only letters, digits, ., _, or -. Repeat a custom --folder with later commands. On a fresh clone with committed team context, rerun ctx init to hydrate only the ignored continuation file.

Health and readiness

  • ctx doctor checks structure, layout compatibility, managed markers, and Git boundaries.
  • ctx status summarizes draft / verified / not-applicable metadata, flags listed sources changed since verification, and gives non-failing size guidance; it cannot verify truth or source sufficiency.
  • ctx update refreshes compatible named managed blocks without touching local continuation state.

Existing schema-v1 and config-less legacy scaffolds stay on their frozen v1 layout/update path; ctx does not silently relocate their root CONTINUE.md, change unnamed markers, or expose private context.

See the project README, layout v2 guide, fill workflow, team-mode migration, and layout-v2 migration.