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

@udx/dev-kit

v0.20.0

Published

Context-driven engineering toolkit for AI agents and developers

Readme

dev.kit

https://udx.dev/kit

dev.kit turns repositories into self-explaining repo contracts for humans, scripts, and CI/CD.

It helps teams and repositories:

  1. understand how the repo actually works
  2. keep repo standards, manifests, refs, and dependency contracts traceable
  3. regenerate reliable context from repo signals instead of tribal knowledge

The model is:

  • repo-first
  • gap-aware
  • regeneration-friendly
  • standard-driven
  • manifest-driven

Install

npm install -g @udx/dev-kit
curl -fsSL https://raw.githubusercontent.com/udx/dev.kit/latest/bin/scripts/install.sh | bash

Quick start

# make sure your dev.kit install is current first
cd my-repo

dev.kit      # inspect environment and repo context status
dev.kit repo # generate or refresh .rabbit/context.yaml

Optional capability refresh:

dev.kit env

Operating loop

dev.kit uses staged repo-driven context generation:

dev.kit
  → inspect environment
  → summarize repo-local context status
  → warn when existing context is stale
  → point to the next safe step

dev.kit env
  → detect tools, auth, and resolution capabilities

dev.kit repo
  → resolve repo standards, manifests, refs, dependency contracts, and gaps
  → ensure a minimal repo-owned structure when needed
  → generate .rabbit/context.yaml

Each step produces metadata that guides the next safe repo repair or regeneration step.

.rabbit/context.yaml

dev.kit repo generates .rabbit/context.yaml as the repo operational contract.

It may include:

  • generator metadata
  • manifests
  • refs
  • workflows
  • commands
  • dependencies
  • dependency repo contracts
  • coverage gaps
  • repair hints

The repo should remain usable even when dev.kit is unavailable.

Committed repo-local context should stay useful for maintenance and automation.

Agent instruction files

Agent instruction files such as AGENTS.md or CLAUDE.md are optional repo-owned policy surfaces.

dev.kit can point maintainers toward the kind of guidance those files should contain. A repo may keep that guidance in docs and, if preferred, normalize it into AGENTS.md as a maintained repo-owned surface.

Use those files for consumer behavior rules and team-specific operating guidance. Keep .rabbit/context.yaml focused on generated repo facts.

Repo surfaces

This repo is intentionally split by responsibility:

  • src/configs/ configures dev.kit detection, gap rules, context sections, and other module inputs
  • scripts, workflows, and YAML manifests are the programmatic execution layer
  • docs/ documents dev.kit behavior, repo-context boundaries, workflow, and outputs
  • docs/references/ is a small knowledgebase for developers and agents when gaps or contract surfaces need interpretation
  • tests/ validates command flow, generated context, and user-facing outputs

Empty repos

dev.kit repo is safe to run on nearly empty repos.

It can establish a minimal default structure so the repo becomes regeneration-friendly immediately:

  • README.md
  • .github/dependabot.yml
  • .github/workflows/
  • .rabbit/
  • docs/

That gives the repo clear places for context coverage, workflow traceability, docs, and future repair loops without inventing app-specific structure.

Refs and traceability

dev.kit resolves refs using:

  1. manifest metadata/header refs
  2. repo-local usage
  3. dependency-repo usage and workflow relationships

If refs cannot be resolved:

  • gaps are emitted
  • repair hints are suggested
  • unresolved state is preserved instead of guessed

Example:

dev.kit repo

Then read:

  • README.md
  • docs/
  • .rabbit/context.yaml

Commands

| Command | Purpose | | ---------------------- | -------------------------------------------------- | | dev.kit | Inspect repo context status and suggest next steps | | dev.kit env | Detect tools, auth, and resolution capabilities | | dev.kit env --config | Configure capability restrictions | | dev.kit repo | Generate .rabbit/context.yaml | | dev.kit repo --force | Re-resolve repo and dependency context |

All commands support --json.

Recommended tooling repos

dev.kit repo also points to a small set of supporting UDX repos when you need shared worker, workflow, or repo-contract tooling:

Principles

  • automate what can be verified
  • expose unresolved gaps instead of guessing
  • prefer refs over duplicated docs
  • stay app-agnostic and language-agnostic
  • keep repo-owned contracts compact and markdown-friendly
  • degrade gracefully when tooling, auth, or external context is unavailable
  • optimize for operational clarity over automation complexity

Docs

Testing

bash tests/suite.sh --only core
bash tests/worker-smoke.sh
bash tests/real-repos.sh --check /path/to/repo1 /path/to/repo2