produce-product is a Codex skill for turning product images into multiple Seedance-ready editable video tasks for short-form commerce content.
This skill is designed for workflows that need:
- multiple
15s9:16variants - English prompts
- no voiceover, no subtitles, and no on-screen text
- realistic TikTok-style daily-use scenes
- optional product analysis with
GLM-4.6V-FlashX - base64 conversion and batch submission to a local Seedance mock gateway
Given a project folder, the skill can:
- Analyze
products/images and generateZAI_full_analysis_report.md - Generate multiple
seedance_tasks_V*.jsontask files - Convert
referenceFilesinto base64 objects - Submit tasks to the local Seedance mock server
- Monitor states such as
pending,acked,configuring,generating, andcompleted
produce-product/
├── SKILL.md
├── README.md
├── README.zh-CN.md
├── agents/
│ └── openai.yaml
├── scripts/
│ ├── analyze_products_glm.py
│ ├── generate_tasks.py
│ ├── convert_to_base64_fixed.py
│ ├── submit_tasks.py
│ └── start-chrome.sh
├── Seedance2-Chrome-Extensions/
│ ├── mock-server.js
│ └── ...
└── install.sh
Expected input project structure:
/path/to/project/
├── products/
│ ├── *.jpg|*.jpeg|*.png
│ └── ZAI_full_analysis_report.md
├── keyframes/
└── raw/
cd /Users/shane/.codex/skills/produce-product
bash install.shcd /Users/shane/.codex/skills/produce-product/Seedance2-Chrome-Extensions
node mock-server.jscd /Users/shane/.codex/skills/produce-product
bash scripts/start-chrome.shcd /Users/shane/.codex/skills/produce-product
ZHIPU_API_KEY=your_key python3 scripts/analyze_products_glm.py /path/to/projectcd /Users/shane/.codex/skills/produce-product
python3 scripts/generate_tasks.py /path/to/project 5cd /Users/shane/.codex/skills/produce-product
python3 scripts/convert_to_base64_fixed.py /path/to/projectcd /Users/shane/.codex/skills/produce-product
python3 scripts/submit_tasks.py /path/to/project- Keep the prompt body in English.
- Allow image reference tags such as
(@image.jpg). - Keep each version in one physical setting.
- Allow only natural same-scene angle changes.
- Preserve
modelConfigwithaspectRatio: 9:16andduration: 15s. - Prefer lifestyle, creator-style, daily-use scenes over polished studio ads.
- Full Codex-facing operational instructions live in SKILL.md.
- This
README.mdis primarily for GitHub visitors and collaborators.