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

brunovdev-workflow

v1.0.2

Published

CLI para instalar prompts y copilot-instructions en proyectos actuales.

Readme

brunovdev-workflow

CLI para instalar tu estandar de prompts y reglas de Copilot en cualquier proyecto.

Version actual: 1.0.2

Instalacion y uso

Sin instalar globalmente:

npx brunovdev-workflow init

Sobrescribiendo archivos existentes:

npx brunovdev-workflow init --force

Que instala

En el directorio actual crea/actualiza:

  • .github/copilot-instructions.md
  • .github/prompts/01-arquitecto.prompt.md
  • .github/prompts/02-developer.prompt.md
  • .github/prompts/03-tester.prompt.md
  • .github/prompts/04-documentador.prompt.md
  • .github/prompts/05-devops.prompt.md

Uso recomendado con VSCode y Copilot

  1. Abri tu proyecto en VSCode.
  2. Ejecuta el init desde la raiz del proyecto:
npx brunovdev-workflow init
  1. Verifica que existan estos archivos:

    • .github/copilot-instructions.md
    • .github/prompts/01-arquitecto.prompt.md
    • .github/prompts/02-developer.prompt.md
    • .github/prompts/03-tester.prompt.md
    • .github/prompts/04-documentador.prompt.md
    • .github/prompts/05-devops.prompt.md
  2. En el chat de Copilot (modo agente), usa un prompt de arranque como:

Trabaja siguiendo .github/copilot-instructions.md y .github/prompts.
Inicia por el agente Arquitecto y haz las preguntas iniciales.
  1. Para ejecutar el flujo completo, puedes indicar:
Sigue el workflow Arquitecto -> Developer -> Tester -> Documentador -> DevOps,
respetando TDD red-green-refactor y handoffs temporales.

Que configurar en el chat del IDE

  • Usa siempre prompts cortos y directivos.
  • Referencia explicitamente la carpeta .github al iniciar una sesion nueva.
  • Si retomas una tarea, indica el ultimo handoff activo para evitar contexto innecesario.
  • Si cambias idioma de documentacion, dilo en el primer mensaje de la sesion.

FAQ

Templates vs .github en la raiz de este repositorio

Si, son dos cosas distintas y ambas tienen sentido:

  • templates/.github es el contenido que se publica dentro del paquete npm y que se copia al proyecto destino cuando ejecutas init.
  • .github en la raiz de este repositorio es tu configuracion de trabajo local para este proyecto en particular.

En este paquete, la fuente usada por el CLI es templates/.github. Por eso, si haces cambios en .github de la raiz y quieres que lleguen al paquete, debes reflejarlos tambien en templates/.github antes de publicar.

Publicar en npm

  1. Login:
npm login
  1. Publicar:
npm publish --access public

En PowerShell con politicas restrictivas, usa:

npm.cmd login
npm.cmd publish --access public

Comandos npm clasicos incluidos

npm run start

Muestra la ayuda del CLI.

npm run check

Chequeo rapido del binario.

npm test

Ejecuta tests con el runner nativo de Node.

npm run test:smoke

Ejecuta tests de humo del CLI.

npm run pack:dry

Simula el paquete npm que se va a publicar.

npm run verify

Ejecuta check + test + pack dry-run.

npm run release:patch
npm run release:minor
npm run release:major

Sube version siguiendo semver.

Requisitos

  • Node.js >= 18