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

@softcollie/watch-for-me-skill

v0.2.3

Published

Skill de Claude Code que analiza un vídeo sin reproducirlo: desde una ruta o URL (Instagram/YouTube/TikTok) extrae fotogramas clave, contact sheets y opcional transcripción, y sintetiza el contenido para poder preguntar sobre el vídeo. Multiplataforma; ge

Downloads

580

Readme

watch-for-me · skill de Claude Code

Que Claude mire el vídeo por ti, sin reproducirlo. A partir de una ruta local o una URL (Instagram, YouTube, TikTok, Twitter/X…) extrae los fotogramas clave (muestreo periódico

  • detección de cortes de escena), genera contact sheets y, opcionalmente, transcribe el audio. Después Claude lee los fotogramas y la transcripción, escribe una SINTESIS.md y queda disponible para responder preguntas sobre el vídeo (reabriendo fotogramas concretos para ser preciso).

Funciona porque la herramienta de lectura de archivos de Claude Code renderiza imágenes: no hace falta un modelo de visión aparte ni claves de API.

Instalación

Como plugin del marketplace (recomendado)

/plugin marketplace add SoftCollie/skills
/plugin install watch-for-me@softcollie

Como paquete npm

npx @softcollie/watch-for-me-skill

Copia la skill en ~/.claude/skills/watch-for-me. Reinicia Claude Code y úsala con /watch-for-me.

Uso

Dentro de Claude Code:

/watch-for-me https://www.instagram.com/reel/XXXX/
/watch-for-me /ruta/a/charla.mp4
/watch-for-me https://youtu.be/XXXX  (y pídele que transcriba el audio)

O simplemente pídeselo en lenguaje natural: "mírame este vídeo: ".

Instagram: funciona automáticamente, sin login ni cookies ni acción tuya. IG bloquea el acceso anónimo, así que para URLs de Instagram la skill lanza un navegador headless interno (Playwright/Chromium) que resuelve el vídeo por ti. La primera vez descarga ~120 MB de Chromium. Es la parte más frágil (depende de un sitio descargador); si algún día falla, pásale el .mp4 ya descargado.

Dependencias (automáticas, multiplataforma)

La skill gestiona sus dependencias:

| Dependencia | Para qué | Cómo se resuelve | |-------------|----------|------------------| | ffmpeg | extraer fotogramas y contact sheets | usa el del sistema; si falta, instala imageio-ffmpeg (binario portable vía pip, sin admin) | | yt-dlp | descargar URLs (YouTube/TikTok/X…) | se instala vía pip si la fuente es una URL | | playwright + Chromium | resolver Instagram sin login | se instala solo (pip + playwright install chromium, ~120 MB) la 1ª vez que pasas una URL de IG | | faster-whisper | transcribir audio (opcional) | se instala vía pip sólo al pedir --audio |

Lo que no pueda instalar solo (p.ej. ffmpeg del sistema en un entorno sin pip), lo informa con el comando exacto para tu SO (Windows / Linux / macOS).

Qué genera

Junto al vídeo, una carpeta <nombre>_analisis/:

  • sheets/contact_NN.jpg — rejillas de miniaturas en orden cronológico (visión global).
  • frames/fNNN__<timestamp>.jpg — fotogramas a resolución completa; el nombre lleva el timestamp y _CORTE marca un cambio de escena.
  • frames_index.csv — índice de fotogramas (idx, segundos, hms, tipo, fichero).
  • transcripcion.txt — transcripción con timestamps (si se pidió --audio).
  • SINTESIS.md — la síntesis que escribe Claude.

Licencia

MIT