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

@pandi-coding-agent/pandi-docs

v0.1.10

Published

Extensión de Pi que convierte Markdown en artifacts HTML autocontenidos con estilo pandi (/docs + tool markdown_to_html).

Readme

@pandi-coding-agent/pandi-docs

Convierte un archivo Markdown en un único artifact HTML con CSS y tokens embebidos, sin build step, con temas claro y oscuro integrados vía el skill pandi-artifact-style (layout Claude-design, paleta Panda Syntax). Usalo cuando necesites entregar un informe o reporte como un .html único, listo para abrir desde disco o enviar por mail. Si el Markdown contiene Mermaid, el archivo carga el runtime desde un CDN: requiere red y el diagrama puede quedar limitado por una CSP restrictiva o por el modo offline.

/docs README.md --kicker "Informe"
# → Se escribió README.html

Instalación

Desde npm:

pi install npm:@pandi-coding-agent/pandi-docs

Desde este repositorio:

pi install ./extensions/pandi-docs            # global (tu usuario)
pi install -l ./extensions/pandi-docs         # local al proyecto
pi --no-extensions -e ./extensions/pandi-docs # prueba puntual, sin cargar nada más

Referencia

| Superficie | Firma | Notas | | ----------------------- | ---------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | Comando /docs | /docs <in.md> [more.md…] [-o\|--out out.html] [--kicker "Text"] [--tokens tokens.css] [--css style.css] [-h\|--help] | Por defecto la salida usa la misma ruta de entrada con .md reemplazado por .html; -o/--out solo es válido con una única entrada. | | Tool markdown_to_html | path, opcional out, kicker, tokens, css | Contraparte invocable por el modelo de /docs (los agentes no pueden tipear comandos con slash). | | CLI | node extensions/pandi-docs/scripts/markdown-to-html.mjs in.md -o out.html --kicker "Informe" | El mismo conversor, usable fuera de una sesión de pi. | | Motor de mirrors | node extensions/pandi-docs/scripts/sync-doc-mirrors.mjs --config mirrors.json [--root dir] [--check] | Mirrors md ↔ html guiados por manifiesto para cualquier repo: escribe solo si cambia, recuerda redeploy de artifacts y poda huérfanos. Guiado por el skill sync-doc-mirrors. |

Las tres primeras superficies comparten una sola implementación (scripts/markdown-to-html.mjs); /docs y markdown_to_html agregan resolución de rutas (~, cwd) y feedback de escritura. El motor de mirrors compone el mismo conversor con un manifiesto de mirrors ({source, out?, kicker?, tokens?, css?, artifact?} en cada entrada).

Look propio por proyecto: --tokens/tokens reemplaza solo la paleta de colores (conserva el layout pandi); --css/css reemplaza la hoja de estilos completa.

Los detalles sobre soporte de mermaid, alertas de GitHub → callouts etiquetados y reglas de título/kicker están en el skill pandi-artifact-style.

Detalles

El conversor lee los tokens pandi desde skills/pandi-artifact-style/reference/pandi-tokens.css en tiempo de ejecución y los embebe en el archivo final, así que el paquete sigue siendo autocontenido respecto del CSS y los tokens incluso instalado de forma standalone. En el repo, esa copia del skill vendoreado es un espejo GENERADO de .pi/skills/pandi-artifact-style/ (npm run sync:skills:vendor) — editá la fuente .pi, no la copia. Mermaid es la excepción de runtime descrita arriba: su script se obtiene desde el CDN y no se embebe.

Relacionado

Para obtener el bundle completo de extensiones y skills, instalá la raíz del repositorio en su lugar.