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

mokout

v0.1.3

Published

Quick scaffolding for agentic AI projects — uv/npm, Claude-ready CLAUDE.md, and modern tooling in one command.

Readme

mokout-cli

Quick scaffolding for agentic AI projects. One command sets up version control, a package manager, and a Claude-ready CLAUDE.md — a lean, essentials-only starter so you can build instead of configure.

npx mokout init

What it does

mokout init scaffolds the current directory with only the essentials:

  • git init — version-controlled from the first commit
  • Package manageruv (Python, with pytest, ruff, pyrefly dev deps) or bun (JavaScript, with @biomejs/biome dev dep)
  • CLAUDE.md — a workflow doctrine for coding agents, auto-tailored with a Project Setup section (your actual lint/test commands) and a Definition of Done
  • AGENTS.md → symlinked to CLAUDE.md, so any agent reads one source of truth
  • .claude/settings.json — a permission allowlist for the project's safe commands, so Claude Code runs them without prompting
  • tasks/ — structured todo.md + lessons.md, referenced by the doctrine
  • Lint + format configruff (folded into pyproject.toml) or Biome (biome.json)
  • .gitignore + .env.example

That's it — no justfile, hooks, or CI cruft. It is idempotent and safe: existing files are never overwritten. The CLAUDE.md doctrine lives in a managed block that mokout updates in place on re-run — any content you add around it is preserved. Run it in a fresh directory or an existing project.

Output

Python (mokout init --python) — 10 files:

pyproject.toml          # uv project + [tool.ruff] + pytest/ruff dev deps
.python-version
uv.lock
.gitignore
.env.example
CLAUDE.md
AGENTS.md → CLAUDE.md
.claude/settings.json
tasks/todo.md
tasks/lessons.md

JavaScript (mokout init --js) — 9 files:

package.json
biome.json
.gitignore
.env.example
CLAUDE.md
AGENTS.md → CLAUDE.md
.claude/settings.json
tasks/todo.md
tasks/lessons.md

Usage

mokout init              # interactive — asks Python or JavaScript
mokout init --python     # Python project
mokout init --js         # JavaScript project
mokout init --dry-run    # print what would be created, write nothing

Add just the agent files to an existing project

Already have a project and only want it agent-ready? add agents drops in CLAUDE.md, the AGENTS.md symlink, and tasks/ — no package manager, git, or tooling changes:

mokout add agents            # add CLAUDE.md + AGENTS.md + tasks/ here
mokout add agents --dry-run  # preview

Idempotent: re-running refreshes the doctrine's managed block in CLAUDE.md and leaves everything else (including your own notes) untouched.

Install

No install needed — npx mokout init runs the latest version. To install globally:

npm install -g mokout

Requirements

  • Node ≥ 18 (for npx)
  • uv on PATH for Python projects; bun for JavaScript

License

MIT