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

@ytauto/ytauto

v0.1.5

Published

BMAD-style skills for YouTube idea, story, quality, image planning, transcript, and TTS workflows.

Readme

YTAuto

CLI installer for YTAuto agent skills.

YTAuto installs a BMAD-style skill pack for YouTube workflows: guided brainstorming, citation enrichment, story writing, quality checks, image planning, transcript creation, and edge-tts preparation.

Install

npx @ytauto/ytauto install

This downloads the CLI and installs the default setup into the current directory:

  • Codex skills in .agents/skills
  • Cursor rule in .cursor/rules/ytauto-skills.mdc
  • Working folders: online_idea, brainstorm_idea, story, transcript, tts

To install the CLI globally:

npm install -g @ytauto/ytauto

The setup selector supports Space-based multi-select:

  • Space: select or unselect
  • Enter: confirm
  • a: select all
  • n: select none
  • q: cancel

CLI

Install into the current project:

ytauto install

Install without prompts:

ytauto install --all --target /path/to/project --force

List included skills:

ytauto list

Skills

  • idea_fetch_online
  • brainstorm
  • story_creation
  • story_edit
  • quality_gate
  • image_plan
  • transcript_creation
  • tts_creation
  • guide

Logical Flow

Use one shared run_id through the pipeline so every step can reuse upstream artifacts naturally.

  1. brainstorm
  2. idea_fetch_online
  3. story_creation
  4. story_edit (optional revision loop)
  5. quality_gate (recommended before transcript)
  6. image_plan (optional visual sourcing)
  7. transcript_creation
  8. tts_creation (edge-tts, Microsoft Neural Voice)
  9. quality_gate (final readiness check)

Each generated artifact should include:

  • run_id
  • step_id
  • upstream_refs
  • handoff_ready
  • handoff_notes

Final outcome is considered successful when:

  • TTS output package exists (.mp3 + .json, or actionable runtime-missing package)
  • latest quality decision is ready
  • no blocking handoff_ready=false artifacts remain in the active run

Output Directories

The installer also creates these working directories in the target project:

  • ./online_idea
  • ./brainstorm_idea
  • ./story
  • ./transcript
  • ./tts

idea_fetch_online writes one consolidated reference artifact in ./online_idea:

  • {timestamp}.md

Local Test

From this repository:

node bin/ytauto.mjs list
node bin/ytauto.mjs install --all --target /tmp/ytauto-test --force

Publishing

Use npm Trusted Publisher with these settings:

  • Publisher: GitHub Actions
  • Organization or user: Yuwon03
  • Repository: YT_Auto
  • Workflow filename: publish.yml
  • Environment name: leave blank

Then publish from GitHub Actions by creating a GitHub release or manually running the Publish to npm workflow.

The npm package name for this CLI is @ytauto/ytauto.