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

@eufelipe/agent-skills

v0.1.1

Published

CLI para instalar skills padronizadas em ferramentas de agentes de IA

Readme

@eufelipe/agent-skills

CLI para instalar skills padronizadas em ferramentas de agentes de IA.

"Instale uma vez, use em qualquer agente."

A primeira skill é a atlas-brain: ela ensina o agente (Claude Code) a salvar notas no seu vault Obsidian seguindo as convenções do vault — transformando o vault em uma fonte de verdade que pode ser consumida por outras estruturas (Atlas, OpenClaw, Hermes, etc.).

Quickstart

npx @eufelipe/agent-skills install atlas-brain

O wizard pergunta o caminho do seu vault Obsidian, valida (precisa de .obsidian/ ou CONVENTIONS.md) e instala a skill em ~/.claude/skills/atlas-brain/SKILL.md.

Depois, em qualquer projeto com Claude Code:

/atlas-brain

ou simplesmente peça: "Salva no segundo cérebro: [conteúdo]" — o agente cria uma nota bem-formada em inbox/ do vault, com frontmatter (created_by, created_at, type, domain) e naming kebab-case.

Comandos

| Comando | Descrição | |---------|-----------| | install <skill> | Instala uma skill (wizard interativo ou flags) | | list | Lista skills disponíveis | | info <skill> | Detalhes de uma skill | | doctor | Diagnostica o setup (skill instalada, vault válido) |

Flags do install

| Flag | Descrição | |------|-----------| | -t, --target <target> | Target da instalação (default: claude-code) | | -v, --vault <path> | Caminho do vault Obsidian (pula o prompt) | | --project | Instala em <projeto>/.claude/skills/ em vez de global | | --force | Sobrescreve arquivo existente sem confirmar |

Exemplo não-interativo:

npx @eufelipe/agent-skills install atlas-brain --vault "~/Documents/Obsidian Vault" --force

Como funciona

  1. Cada skill é um template (Mustache) + metadata (skill.yaml).
  2. O install renderiza o template com a sua configuração (ex.: caminho do vault) e grava no formato nativo do target — para Claude Code, um SKILL.md no padrão Agent Skills.
  3. O agente passa a ter as regras de escrita (onde criar, frontmatter, naming) com o caminho do seu vault embutido. Sem MCP, sem plugin, sem API key — o Claude Code escreve direto no filesystem.

O processamento posterior das notas (classificação, dedupe, movimentação de inbox/ para as pastas finais) é responsabilidade do seu pipeline (ex.: Atlas) — o agente só deposita no inbox/.

Requisitos

  • Node.js >= 18
  • Um vault Obsidian (diretório com .obsidian/ ou CONVENTIONS.md)

Desenvolvimento

npm install
npm run qa        # lint + type-check + testes + cobertura
npm run cli -- list

Roadmap

  • v0.1 — skill atlas-brain para Claude Code (SKILL.md nativo) ✅
  • v1.1 — target cursor (.cursor/rules/*.mdc) via registry de adapters
  • v2 — mais skills (github-flow, etc.), update automático de skills instaladas

Licença

ISC