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

@cobusgreyling/loop

v0.1.2

Published

Unified Loop Engineering CLI — one front door for init, audit, cost, sync, doctor, and status. Existing packages stay supported. npx @cobusgreyling/loop doctor .

Readme

@cobusgreyling/loop

Unified front door for Loop Engineering CLIs.

npx @cobusgreyling/loop init . --pattern daily-triage --tool grok
npx @cobusgreyling/loop doctor .

This package does not replace loop-init, loop-audit, or the other tools. It wraps them and adds doctor + status so week-one activation is one mental model.

| Command | Delegates to | Notes | |---------|--------------|--------| | loop init | @cobusgreyling/loop-init | Scaffold pattern + tool | | loop audit | @cobusgreyling/loop-audit | Loop Ready score | | loop cost | @cobusgreyling/loop-cost | Token estimates | | loop sync | @cobusgreyling/loop-sync | STATE ↔ LOOP drift | | loop doctor | audit + sync + files | New — top 3 actions, exit codes | | loop status | files + audit | New — run-log dashboard | | loop badge | loop-audit --badge | README badge | | loop context | @cobusgreyling/loop-context | Circuit breaker / memory | | loop worktree | @cobusgreyling/loop-worktree | Isolated fix attempts | | loop gate | @cobusgreyling/loop-gate | Path denylist | | loop mcp | @cobusgreyling/loop-mcp-server | MCP server | | loop sandbox | @cobusgreyling/loop-sandbox | Sandbox helper (if present) |

Week-one path

# 1. Scaffold (report-only)
npx @cobusgreyling/loop init . --pattern daily-triage --tool grok

# 2. One health check
npx @cobusgreyling/loop doctor .

# 3. Optional cost estimate
npx @cobusgreyling/loop cost -p daily-triage -l L1 -c 1d

# 4. Day-2 dashboard
npx @cobusgreyling/loop status .

Doctor exit codes

| Code | Meaning | |------|---------| | 0 | Healthy | | 1 | Warnings (gaps, mild drift, incomplete budget/run-log) | | 2 | Blocked (score < 40, critical drift, or not scaffolded) |

npx @cobusgreyling/loop doctor . --json
npx @cobusgreyling/loop status . --json

Compatibility (old doors stay open)

These continue to work forever (or until a future major with long deprecation):

npx @cobusgreyling/loop-init .
npx @cobusgreyling/loop-audit . --suggest
npx @cobusgreyling/loop-cost --pattern daily-triage
npx @cobusgreyling/loop-sync .

loop <cmd> is the same binary behavior for pass-through commands.

Monorepo develop

# Build sibling tools first (audit + sync used by doctor)
(cd ../readiness-core && npm ci && npm run build)
(cd ../loop-audit && npm ci && npm run build)
(cd ../loop-sync && npm ci && npm run build)
(cd ../loop-init && npm ci && npm run build)

cd ../loop
npm ci
npm test
node dist/cli.js doctor ../..
node dist/cli.js status ../..

Agent skill

See skills/install-loop in the monorepo — a short skill agents can follow to install and doctor a project.

License

MIT