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

@synchronex/marketing-skills

v0.5.0

Published

Synchronex marketing agent skills for local branded media generation

Readme

Synchronex Marketing Skills

Local agent skills for generating branded marketing assets from a connected Tractic brand kit.

Install

npx @synchronex/marketing-skills install

The installer copies the skill folders into:

  • ~/.claude/skills/ for Claude Code
  • ~/.agents/skills/ for the open Agent Skills location used by Codex and Gemini
  • ~/.gemini/skills/ for Gemini CLI

Gemini gives ~/.agents/skills/ precedence when the same skill name exists in both locations, so the duplicate Gemini install is intentionally redundant.

Recipes

marketing-quote-card

Generates a quote or testimonial graphic.

node ./scripts/render.mjs --quote "The quote" --author "Author Name"
node ./scripts/render.mjs --quote "The quote" --author "Author Name" --aspect portrait

Outputs quote-card-{timestamp}.png.

marketing-carousel-slide

Generates one 1080x1350 PNG per slide.

node ./scripts/render.mjs --slides "[{\"headline\":\"Slide title\",\"body\":\"Slide body\"}]"

Outputs carousel-slide-{N}-{timestamp}.png.

marketing-stat-callout

Generates a big-number callout graphic.

node ./scripts/render.mjs --big-number "42" --unit "%" --label "More qualified leads"

Outputs stat-callout-{timestamp}.png.

marketing-captioned-reel

Generates a vertical 1080x1920 captioned MP4 with local ffmpeg.

node ./scripts/render.mjs --caption "Launch faster with one local bridge" --headline "Product update"
node ./scripts/render.mjs --mode with-voice --voice neutral --caption "Launch faster with one local bridge"

No-voice mode does not call an AI API. With-voice mode uses OpenAI TTS through the bridge key file or OPENAI_API_KEY.

marketing-branded-video

Generates a branded MP4 announcement in vertical, LinkedIn portrait, or horizontal format.

node ./scripts/render.mjs --headline "Track every property" --subtitle "NOI and cash flow in one place"
node ./scripts/render.mjs --headline "Track every property" --aspect horizontal

marketing-audiogram

Generates a square or vertical audiogram MP4 from a still image and OpenAI TTS narration.

node ./scripts/render.mjs --script "A short narration" --voice neutral --image ./image.png

Default TTS model: gpt-4o-mini-tts.

marketing-narrated-explainer

Generates a narrated explainer MP4 from a script and branded still frame.

node ./scripts/render.mjs --script "Step one. Step two." --headline "How it works" --voice warm-male-educator

marketing-hero-image

Generates a PNG image with OpenAI or Gemini.

node ./scripts/render.mjs --prompt "A photorealistic rental dashboard in a modern office" --platform instagram-feed --provider openai

OpenAI image calls use gpt-image-2, low|medium|high|auto quality, and request sizes rounded down to multiples of 16.

marketing-photo-with-overlay

Generates an AI image and applies a brand overlay.

node ./scripts/render.mjs --prompt "A property operations team reviewing analytics" --headline "Portfolio clarity" --platform linkedin-square

Brand Kit

When run through the Synchronex/Tractic local agent bridge, BRIDGE_BRAND_KIT_PATH points to a JSON file:

{
  "primaryColor": "#059669",
  "secondaryColor": "#1f2937",
  "logoSvg": "<svg>...</svg>",
  "logoPng": "data:image/png;base64,...",
  "fonts": {
    "headline": "Inter Bold",
    "body": "Inter Medium"
  },
  "tagline": "Your tagline here"
}

Outputs are written to BRIDGE_OUTPUT_DIR. For local development, they fall back to ./output/.

AI Keys And ffmpeg

When run through the local agent bridge, recipes that need provider keys read BRIDGE_AI_KEYS_PATH. For local development, set OPENAI_API_KEY and/or GEMINI_API_KEY.

Video and audio recipes require ffmpeg on PATH, or FFMPEG_PATH pointing to the ffmpeg executable.

Notes

The SKILL.md files intentionally avoid provider-specific directives. They document ordinary shell commands so Claude Code, Codex CLI, and Gemini CLI can each invoke the same scripts.