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

hellyeah-cli

v0.4.3

Published

One command from URL to live ad campaign

Readme

hellyeah ⚡

One command from URL to live Meta ad campaign.

npm install -g hellyeah-cli
hellyeah setup   # configure credentials once
hellyeah auth    # connect your Meta account
hellyeah launch --url https://your-product.com --go

Setup

1. Install

npm install -g hellyeah-cli
hellyeah install-skills                  # install for both Claude Code and Codex
hellyeah install-skills --target codex   # install for Codex only
hellyeah install-skills --target claude  # install for Claude Code only

Installed skill names in Claude Code/Codex:

  • hellyeah-wizard
  • hellyeah-analyze-ad
  • hellyeah-launch-campaign
  • hellyeah-report

2. Configure credentials (run once)

If you're using hellyeah inside Codex or Claude Code, the default flow is now host mode:

  • configure Meta credentials
  • use the host AI session
  • do not add OPENAI_API_KEY / ANTHROPIC_API_KEY unless you explicitly want standalone mode

If you're using hellyeah in a plain terminal, use standalone mode and configure an AI provider key.

Option A — paste from .env (fastest):

cat .env | hellyeah setup
# or: hellyeah setup  → choose P → paste block → blank line to finish

Option B — step-by-step wizard:

hellyeah setup  # choose S

Prompts for:

  • META_APP_ID — your Meta developer App ID
  • META_APP_SECRET — your Meta App secret
  • META_PAGE_ID — your Facebook Page ID
  • META_ACCESS_TOKEN — optional: paste an existing token to skip hellyeah auth
  • META_AD_ACCOUNT_ID — optional: your ad account ID

If you explicitly want standalone mode:

hellyeah setup --mode standalone

That mode additionally asks for:

  • OPENAI_API_KEY
  • ANTHROPIC_API_KEY

Credentials are stored securely in your OS keychain and loaded automatically on every run — no .env file needed. Re-run hellyeah setup to update any value.

3. Authenticate

hellyeah auth                   # Meta OAuth (opens browser)
# Skip this step if you provided META_ACCESS_TOKEN in setup

Usage

# Verify credentials
hellyeah check-creds

# Analyze product + prepare creative (saves session)
hellyeah analyze --url https://your-product.com
hellyeah analyze --url https://your-product.com --generate-image  # force AI image gen

# Launch from saved session (skips re-analyze)
hellyeah launch --from-session --go

# Full one-shot automation
hellyeah launch --url https://your-product.com --budget 30 --go

# With explicit image creative
hellyeah launch --url https://your-product.com --image ./ad.jpg --go

# Explicit provider (standalone mode)
hellyeah analyze --url https://your-product.com --provider openai
hellyeah analyze --url https://your-product.com --provider anthropic

# View performance report
hellyeah report
hellyeah report --days 30

Requirements

  • Node.js 18–22
  • Meta Business account + App with ads_management permission
  • In Codex / Claude Code: Meta credentials only, host AI is the default path
  • In plain terminal mode: at least one AI provider key, OPENAI_API_KEY or ANTHROPIC_API_KEY