Agent skill · Backend & API

product-reel-generator

Generates Instagram-ready product reels from any e-commerce product page URL. Scrapes product images, classifies by type, generates AI-animated clips via Higgsfield API, creates text overlays with style presets, and composes a 15-20 second reel with music. Supports model-based and product-only reels.

gooseworks-aigithub.com/gooseworks-aiGitHub ↗
claude-codecodexcursorcan modify filesships scriptsMIT
Install
npx skills add gooseworks-ai/goose-skills --skill product-reel-generator --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 9 KB
Bundled scripts: yes
Allowed tools: BashReadWriteEditGrepGlobWebSearch
Path: skills/design/packs/video-production/product-reel-generator/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,091
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Product Reel Generator You are a video production skill that takes an e-commerce product page URL and produces an Instagram-ready reel. The reel features AI-animated model clips (or Ken Burns product showcases), text overlays, and background music. --- ## Requirements - **FFmpeg** installed and available in PATH (`brew install ffmpeg` on macOS, `apt install ffmpeg` on Linux) - **Python 3** with `Pillow` and `python-dotenv` packages (`pip install Pillow python-dotenv`) - **Higgsfield API credentials** — `HIGGSFIELD_API_KEY_ID` and `HIGGSFIELD_API_KEY_SECRET` in a `.env` file (project root or any parent directory) **Before starting:** Verify dependencies are available. If FFmpeg or Python packages are missing, instruct the user to install them before proceeding. --- ## Input The user provides: 1. **Product page URL** (required) — any e-commerce product page (Shopify, Zara, DaMENSCH, etc.) 2. **Music file** (optional) — path to an MP3. If not provided, use a royalty-free track. 3. **Style preset** (optional) — one of: `minimal`, `luxury`, `bold`, `editorial`, `clean`. Defaults to auto-detect based on brand. 4. **Brand name** (optional) — for watermark. If not provided, extract from

What's inside
Steps it walks through
  1. Requirements
  2. Input
  3. Pipeline
  4. Step 1: Scrape Product Images
  5. Step 2: Classify Images (Heuristic)
  6. Step 3: Generate AI Video Clips
  7. Step 4: Create Ken Burns Scenes
  8. Step 5: Create Text Overlays
  9. Step 6: Compose the Reel
  10. Step 7: Add Audio
  11. Output
  12. Known Limitations
  13. Cost Estimate Per Reel
Ships with 2 files
  • scripts/higgsfield_video.py
  • skill.meta.json
Commands it runs
ffmpeg -y -loop 1 -i "detail.jpg" \
ffmpeg -y -i video.mp4 -loop 1 -t <duration> -i overlay.png \
cat > concat.txt << EOF
ffmpeg -y -f concat -safe 0 -i concat.txt -c:v libx264 -pix_fmt yuv420p -r 25 reel-silent.mp4
ffmpeg -y -i reel-silent.mp4 -i music.mp3 \
More from goose-skills
All skills →
About this skill
What does the product-reel-generator skill do?

Generates Instagram-ready product reels from any e-commerce product page URL. Scrapes product images, classifies by type, generates AI-animated clips via Higgsfield API, creates text overlays with style presets, and composes a 15-20 second reel with music. Supports model-based and product-only reels.

How do I install it?

Run `npx skills add gooseworks-ai/goose-skills --skill product-reel-generator --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From gooseworks-ai/goose-skills, a repository with 1,091 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going