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-minions-toolbox

v1.4.0

Published

Scaffold new Minions ecosystem projects with established patterns

Readme

create-minions-toolbox

Scaffold new Minions ecosystem projects in seconds. Creates a full monorepo with TypeScript SDK, Python SDK, CLI, docs site, blog, and web app — all pre-configured with CI/CD, release automation, and Netlify deployment.


Quick Start

# Interactive mode
npx create-minions-toolbox

# Non-interactive mode
npx create-minions-toolbox --name minions-tasks \
  --description "Task management for AI agents" \
  --org mxn2020

What Gets Created

minions-tasks/
├── packages/
│   ├── core/           # TypeScript SDK (@minions-tasks/sdk)
│   ├── cli/            # CLI tool (@minions-tasks/cli)
│   └── python/         # Python SDK (minions-tasks on PyPI)
├── apps/
│   ├── web/            # React + Vite playground
│   ├── docs/           # Astro Starlight documentation
│   └── blog/           # Astro + MDX blog
├── .github/
│   ├── workflows/      # CI, publish, release-please
│   └── ISSUE_TEMPLATE/ # Bug report & feature request
├── package.json        # pnpm workspace root
├── MANUAL.md           # Manual setup steps (secrets, Netlify, DNS)
└── ...                 # All configs pre-wired

Options

| Flag | Description | Default | |------|-------------|---------| | --name <name> | Project name (must start with minions-) | (prompted) | | --description <desc> | Short project description | (prompted) | | --org <org> | GitHub org/user | mxn2020 | | --author <name> | Author name | Mehdi Nabhani | | --email <email> | Author email | [email protected] | | --license <license> | License type | MIT | | --github | Setup GitHub repo (requires gh CLI) | false | | --dry-run | Print what would be created | false |

GitHub Setup (Optional)

When you pass --github, the CLI will:

  1. Create a GitHub repository using gh CLI
  2. Push initial code to main
  3. Create a dev branch
  4. Set repo topics

Prerequisites: Install and authenticate GitHub CLI:

brew install gh
gh auth login

Manual Steps

After scaffolding, a MANUAL.md is generated in your project with:

  • GitHub repository secrets (NPM_TOKEN, PYPI_TOKEN)
  • Netlify site setup (3 sites: web, docs, blog)
  • DNS configuration (CNAME records)

6. Release Please

  • First release will be created automatically on merge to main
  • Verify release-please-config.json paths are correct
  • Important Configuration: For Release Please to work, you must enable "Allow GitHub Actions to create and approve pull requests" in your repository's actions settings (Settings > Actions > General > Workflow permissions).
  • Branch protection rules

Development

# Install dependencies
npm install

# Test by scaffolding a project
node src/index.js --name minions-test --description "Test project" --dry-run

License

MIT