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

@alissonpokry/maestro

v1.0.3

Published

Dynamic skill bundle manager for AI coding assistants

Downloads

479

Readme

Maestro

versão npm SemVer Licença: MIT

Gerenciador dinâmico de bundles de skills para assistentes de programação com IA.

English

O Maestro ajuda agentes a carregar as instruções certas para a tarefa atual. Em vez de manter regras de todas as linguagens, frameworks e fluxos de trabalho no prompt ativo, o Maestro roteia a solicitação para um bundle focado de skills e reduz o contexto usado pelo agente.

Versão

Versão atual do projeto: 1.0.3

O Que o Maestro Faz

  • Instala skills de comandos slash para Cursor, Claude, Antigravity/Gemini e Codex/Agents.
  • Salva um caminho ativo de skill-bundle-folder para o Maestro.
  • Escaneia pastas de bundles e cria um índice compacto de Known Bundles.
  • Roteia solicitações /maestro para o bundle e os arquivos de skill mais relevantes.
  • Fornece comandos de manutenção para trocar a pasta ativa, atualizar o índice e verificar a configuração atual.

Instalação

Execute o instalador com npm:

npx @alissonpokry/maestro init

O instalador pergunta:

  • Ação: instalação ou desinstalação.
  • Escopo: projeto local ou pasta global do usuário.
  • Ambiente de IA: Cursor, Claude, Antigravity/Gemini, Codex/Agents ou todos os ambientes suportados.

Para testes locais a partir deste repositório:

node bin/cli.js init

Para remover uma instalação:

npx @alissonpokry/maestro uninstall

Estrutura dos Bundles de Skills

O Maestro espera uma pasta cujos filhos diretos sejam bundles. Cada bundle pode conter uma ou mais skills, e cada skill é representada por um arquivo SKILL.md.

My-Skill-Bundles/
|
+-- Angular-pro/
|   +-- angular-architecture/
|   |   +-- SKILL.md
|   +-- angular-ui-patterns/
|       +-- SKILL.md
|
+-- Python-pro/
|   +-- python-testing/
|       +-- SKILL.md
|
+-- Seo-pro/
    +-- seo-audit/
        +-- SKILL.md

Na terminologia do Maestro:

  • skill-bundle-folder é a pasta que contém todos os bundles.
  • bundle é uma pasta filha direta, como Angular-pro.
  • skill é um arquivo SKILL.md específico dentro de um bundle.

Início Rápido

  1. Instale o Maestro:
npx @alissonpokry/maestro init
  1. Defina sua pasta de bundles no caminho de sua preferência:
/maestro-set C:\Users\user\Desktop\My-Skill-Bundles
  1. Execute uma tarefa pelo Maestro:
/maestro Build a login page in Angular.

O Maestro analisa a solicitação, seleciona o bundle mais relevante, lê apenas as instruções das skills correspondentes e continua a tarefa com esse contexto focado.

Comandos

| Comando | Finalidade | | --- | --- | | /maestro <task> | Roteia uma tarefa pelo bundle mais relevante. | | /maestro-set <folder-path> | Salva ou troca o skill-bundle-folder ativo. | | /maestro-fetch [folder-path] | Atualiza o índice de Known Bundles. | | /maestro-stats | Mostra a pasta ativa de bundles e os bundles indexados. |

Se seu agente expuser apenas /maestro, use estes aliases:

| Alias | Comando equivalente | | --- | --- | | /maestro switch <folder-path> | /maestro-set <folder-path> | | /maestro fetch [folder-path] | /maestro-fetch [folder-path] | | /maestro stats | /maestro-stats |

Ambientes Suportados

O Maestro pode instalar arquivos de comando e skill para:

  • Cursor
  • Claude
  • Antigravity/Gemini
  • Codex/Agents

Instalações locais colocam os arquivos do Maestro no projeto atual. Instalações globais colocam os arquivos nas pastas de usuário correspondentes de cada assistente.

Desenvolvimento no Repositório

Este pacote não tem dependências de runtime. O ponto de entrada da CLI é:

bin/cli.js

Comandos úteis para desenvolvimento local:

node bin/cli.js init
node bin/cli.js uninstall
node --check bin/cli.js

Licença

MIT