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

create-adsk

v0.3.5

Published

Adopt the Agentic Development Starter Kit as a versioned profile (skills + Cursor wiring).

Readme

Agentic Development Starter Kit

create-adsk

npm downloads Socket Badge

Adopt agent skills, Cursor commands, and team profiles — versioned in your repo. Not a skills marketplace.

(create-adsk applies an ADSK profile: skills via the skills CLI plus optional Cursor commands/rules.)

Quick Start

Interactive

npx create-adsk

Follow the prompts. You pick a profile (kit depth), optionally select packs (product-value-loop, engineering-methods), then the CLI installs skills, syncs Cursor commands when the profile includes them, and writes .adsk/config.json.

Profile skills are first-party ADSK (include evals/). Packs install upstream skills as those authors ship them — often without an ADSK-style evals/ folder. Details: docs/using-adsk.md.

| Profile | You get | | ------------- | ---------------------------------------------------------------------- | | core | Spec-driven workflow + Cursor commands | | delivery | Core + DevOps strategy + release automation | | maintainer | Delivery + skill/README/PR authoring + supply-chain gate + stock rules | | skills-only | All first-party skills; no .cursor/ writes |

Source: profiles.json. Contract: docs/product/create-adsk.md.

Non-interactive

npx create-adsk --profile delivery --yes

| Flag | Meaning | | ----------------------- | ----------------------------------------------------------------------------------------------------- | | --profile <id> | Choose a profile without prompting | | --yes / -y | Skip prompts (core if --profile is omitted; packs off unless --packs / --with-optional-packs) | | --packs <ids> | Comma-separated pack IDs (e.g. engineering-methods) | | --with-optional-packs | Include all packs |

See npx create-adsk --help for the full option list.

Commands

npx create-adsk          # init (interactive; default)
npx create-adsk update   # refresh from .adsk/config.json
npx create-adsk status   # profile + drift (exit 1 if drift)

Other useful flags: --dry-run, --scope project|global, --force-rules, --target <dir>. Pack docs: docs/engineering-methods.md, docs/product-value-loop.md.

Two tools

| Tool | Owns | | --------------------- | ---------------------------------------------------- | | npx skills | Skill folders in .agents/skills/ | | npx create-adsk | ADSK profile (skills + Cursor + .adsk/config.json) |

Local kit path (optional)

Developing against a checkout instead of the published package:

npx --yes /path/to/agentic-development-starter-kit/packages/create-adsk

(npx --yes skips the npx install prompt for that path — not the same as create-adsk --yes.)

Develop in this monorepo

# from kit root
./scripts/prepare-create-adsk-snapshot.sh
cd packages/create-adsk && npm install && npm test && npm run build
node dist/cli.js --help

Releases (kit vs npm)

Kit GitHub releases (v*) and this npm package are independent.

| You want… | Do this | | ------------------------------ | -------------------------------------------------------------------- | | Land code on GitHub | PR → green tier1 → merge to main | | Kit changelog / GitHub Release | Merge the release-please PR when ready | | New npx create-adsk on npm | Bump package.json version on main, then tag create-adsk-vX.Y.Z |

Full workflow: docs/RELEASE.md. Publishing uses Trusted Publishing via .github/workflows/publish-create-adsk.yml.