hellyeah-cli
v0.4.3
Published
One command from URL to live ad campaign
Maintainers
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 --goSetup
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 onlyInstalled skill names in Claude Code/Codex:
hellyeah-wizardhellyeah-analyze-adhellyeah-launch-campaignhellyeah-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_KEYunless 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 finishOption B — step-by-step wizard:
hellyeah setup # choose SPrompts for:
META_APP_ID— your Meta developer App IDMETA_APP_SECRET— your Meta App secretMETA_PAGE_ID— your Facebook Page IDMETA_ACCESS_TOKEN— optional: paste an existing token to skiphellyeah authMETA_AD_ACCOUNT_ID— optional: your ad account ID
If you explicitly want standalone mode:
hellyeah setup --mode standaloneThat mode additionally asks for:
OPENAI_API_KEYANTHROPIC_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 setupUsage
# 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 30Requirements
- Node.js 18–22
- Meta Business account + App with
ads_managementpermission - 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_KEYorANTHROPIC_API_KEY
