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

@orchestrit/mini-me

v0.2.0

Published

Orchestr.it Mini-me agents CLI (installer bootstrap)

Readme

@orchestrit/mini-me

Orchestr.it Mini-me is a small bootstrap CLI that installs a workflow-driven backend agent (and its workflow module) into an existing repository.

Instead of relying on free-form prompting, Mini-me encodes repeatable backend engineering outcomes as explicit workflows (a step-by-step playbook) executed under a strict runner contract.

Quick start

From the root of the project you want to install into:

npx @orchestrit/mini-me install

The installer shows a checklist so you can choose one or multiple targets:

  • Copilot
  • Cursor

That’s it. You should now have target-specific files plus .mini-me/ in your repo.

Architecture (high level)

Mini-me is split into three layers:

  • Agent wrapper (tooling integration):
    • Copilot entrypoints under .github/agents/ (this package ships .github/agents/mini-me-backend.agent.md).
    • Cursor rule wrapper under .cursor/rules/ (this package ships .cursor/rules/mini-me-backend.mdc).
  • Persona + menu (what the agent is allowed to do): persona lives in .mini-me/agents/ (backend persona: .mini-me/agents/backend.md).
  • Workflow system (how tasks are executed): runner contract in .mini-me/core/, workflows in .mini-me/workflows/, shared variables in .mini-me/config.yaml.

The wrapper stays thin; the persona stays stable; workflows evolve over time as your standards change.

What gets installed

Running the installer will create/update these paths in your target project:

  • .github/agents/mini-me-*.agent.md
    • GitHub Copilot “agent” entrypoints (Markdown-based) that activate the Mini-me personas.
  • .cursor/rules/mini-me-*.mdc
    • Cursor rule wrappers that activate the same Mini-me backend persona/menu workflow.
  • .mini-me/
    • The Mini-me module folder (agents, core, workflows, config).

Notes:

  • The installer overwrites the target project’s .mini-me/ folder (it uses a recursive copy with force: true).
  • Agent files are copied individually into .github/agents/.

Prerequisites

  • Node.js 18+ (recommended: latest LTS)
  • A project/repository where you want to install Mini-me

What’s inside .mini-me/

  • .mini-me/config.yaml
    • A small config file used for workflow variables (name, languages, output folder, etc.).
  • .mini-me/agents/
    • Persona definitions. The backend persona is .mini-me/agents/backend.md.
  • .mini-me/workflows/
    • Workflow documents the persona can run.
    • This package currently includes:
      • .mini-me/workflows/create-fastify/
      • .mini-me/workflows/add-endpoint-from-docs/

Usage

After install (Copilot usage)

Once installed into your target repo, you can drive Mini-me from GitHub Copilot Chat using the provided agent.

  1. Open Copilot Chat in VS Code.
  2. Select the Mini-me Backend agent (installed as an agent entry under .github/agents/mini-me-backend.agent.md).
  3. Run *menu to verify the agent is active and to display the available commands.

The command menu is defined by the backend persona in .mini-me/agents/backend.md.

After install (Cursor usage)

Once installed into your target repo with Cursor selected:

  1. Open Cursor chat in your project.
  2. Activate the mini-me-backend rule/profile from .cursor/rules/mini-me-backend.mdc.
  3. Run *menu to verify the agent is active and to display available commands.

The command menu remains defined by .mini-me/agents/backend.md.

Commands

*create-fastify

Runs the “Create a fastify backend service” workflow from .mini-me/workflows/create-fastify/workflow.md.

Creates a Fastify backend service scaffold based on the provided configuration.

*add-endpoint-from-docs

Runs the “Add endpoint from docs” workflow from .mini-me/workflows/add-endpoint-from-docs/workflow.md.

Creates a Fastify backend endpoint based on API documentation files located in the docs/api/ folder.

You can find an example of the api docs to use in samples/docs/api/.

Re-run install (idempotent):

npx @orchestrit/mini-me install

Install specific target(s) non-interactively:

npx @orchestrit/mini-me install --target copilot
npx @orchestrit/mini-me install --target cursor
npx @orchestrit/mini-me install --target copilot,cursor

Uninstall

If you want to remove Mini-me from a project, delete the installed files/folders:

  • .github/agents/mini-me-*.agent.md
  • .mini-me/

Development

Run the CLI directly from this repo:

node ./cli.js install

Greetings

This project was inspired by and built upon the ideas from BMAD-METHOD.

Thanks BMAD for this workflow (https://github.com/bmad-code-org/BMAD-METHOD)

License

MIT