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

@tiagojacinto/create-agent-stack

v1.5.0

Published

Progressively scaffold verified, agent-ready TypeScript projects.

Readme

create-agent-stack

create-agent-stack progressively scaffolds verified, agent-ready TypeScript projects. The preset ladder supports Minimum, Low, Medium, High, and Maximum, plus individual feature selection.

Development

  • bun install — install repository dependencies.
  • bun run dev — run the interactive CLI from source.
  • bun run check — run every local and acceptance check.

Current usage

  1. Build with bun run build.
  2. Run node dist/cli.js create my-project --preset <level>, where <level> is minimum, low, medium, high, or maximum. Omit --preset to choose individual features interactively.
  3. To add capabilities to an existing project, run node dist/cli.js merge path/to/project --preset minimum (or omit --preset to choose features interactively).
  4. Enter the project directory, install dependencies with its selected package manager, and run its check script.

The published commands are pnpm dlx @tiagojacinto/create-agent-stack create my-project and pnpm dlx @tiagojacinto/create-agent-stack merge path/to/project.

When --preset is omitted, the CLI first lets you choose pnpm or Bun, then asks about each top-level optional feature: formatting, linting, ESLint, Ultracite, unit testing, agent context, GitHub Actions, secret scanning, dependency auditing, and mutation testing. Selecting Vitest reveals property-based testing, selecting Oxlint reveals Anti-slop, and selecting Anti-slop reveals Anti-slop Effect. Type y to include a feature. TypeScript, Node.js, the selected package manager, and the core scripts are always included. Selecting a feature also selects its dependencies; for example, secret scanning includes GitHub Actions and Anti-slop includes Oxlint.

If Ultracite is selected without a linter, the CLI asks which backend to add after the feature questions. Oxlint is the default. If Oxlint or ESLint was already selected, that choice becomes Ultracite's backend without another question. Selecting both generates both configurations. Oxlint and Ultracite use one composed oxlint.config.ts file. Anti-slop without Ultracite vendors the plugin under tools/oxlint/anti-slop/. If Ultracite and Anti-slop Effect are selected together, the CLI warns that the Effect extension is unsupported and asks for confirmation before continuing.

Every preset generates .agent-stack/shipping-gates.json, a cumulative release policy for coding agents. Minimum establishes the build, formatting, linting, type-checking, test, secret-scanning, dependency-audit, narrow-scope, and compute-budget floor. Medium is the default recommendation for production projects. High adds the available property-based and mutation-testing tooling; Maximum records the additional independent-review and high-assurance gates. The generated README directs agents to review this policy before declaring code shippable. The policy is currently declarative: see ROADMAP.md for the implementation status and planned enforcement work.

The generated project records and uses the package manager selected during interactive scaffolding. Preset scaffolding currently uses pnpm.

Merge reconciles supported artifacts semantically: package scripts and dependencies by name, JSON configuration by key and array entry, linter imports and extensions, workflow triggers/jobs/steps, and Markdown inside agent-stack managed blocks. User-owned values are preserved; incompatible JSON values report the exact key and prevent all writes. Repeating the same merge is idempotent.

Automatic releases

Release Please turns Conventional Commits on main into a release pull request. Merging that pull request updates package.json and CHANGELOG.md, creates the GitHub release and tag, then publishes @tiagojacinto/create-agent-stack to npm after bun run check passes.

Commit prefixes determine the version:

  • fix: creates a patch release.
  • feat: creates a minor release.
  • feat!: or a BREAKING CHANGE: footer creates a major release.

Run the one-time setup wizard:

./scripts/setup-releases.sh

It connects the GitHub repository, guides the required Actions permissions, captures the npm token as a hidden value, writes it only to the GitHub secret NPM_TOKEN, and verifies release readiness. It never triggers a release itself.

The release workflow is .github/workflows/release.yml. A failed verification or publication step blocks the corresponding release stage and can be reproduced locally with bun run check.