$npx -y skills add higgsfield-ai/skills --skill higgsfield-marketplace-cardsGenerate marketplace product image cards through Higgsfield: compliant main image, secondary product images, and A+ style content modules. Use when the user asks for marketplace listing images, product detail cards, secondary product images, product infographics, lifestyle listin
| 1 | # Marketplace Cards |
| 2 | |
| 3 | Create marketplace-ready product visuals with `higgsfield marketplace-cards create`. |
| 4 | The CLI first calls the backend enhancer, where marketplace rules and templates are kept private, then creates `nano_banana_2` jobs and prints result URLs. |
| 5 | |
| 6 | ## Bootstrap |
| 7 | |
| 8 | 1. If `higgsfield` is not on `$PATH`, install it by running the official installer with Bash: `curl -fsSL https://raw.githubusercontent.com/higgsfield-ai/cli/main/install.sh | sh`. |
| 9 | 2. If `higgsfield account status` fails with authentication errors, ask the user to run `higgsfield auth login`. |
| 10 | |
| 11 | ## UX Rules |
| 12 | |
| 13 | 1. Respond in the user's language. |
| 14 | 2. Ask at most one concise confirmation question before running. |
| 15 | 3. Prefer a product image. If the user provides only text or a URL, proceed only when the product details are clear. |
| 16 | 4. Do not write final image-generation prompts yourself. Backend enhancement owns that. |
| 17 | 5. Final answer should contain only the ready image URLs and short labels. |
| 18 | |
| 19 | ## Scope Selection |
| 20 | |
| 21 | Use `--scope` when the user asks for a common bundle: |
| 22 | |
| 23 | | Scope | Creates | |
| 24 | |---|---| |
| 25 | | `main` | 1 marketplace main image | |
| 26 | | `product-images` | main image + 5 secondary images | |
| 27 | | `aplus` | main image + 7 A+ modules | |
| 28 | | `full-set` | main image + 5 secondary images + 7 A+ modules | |
| 29 | |
| 30 | Use repeated `--asset` only for custom subsets: |
| 31 | |
| 32 | - `main_image` |
| 33 | - `infographic` |
| 34 | - `multi_angle` |
| 35 | - `detail_shot` |
| 36 | - `lifestyle` |
| 37 | - `whats_in_box` |
| 38 | - `aplus_hero_banner` |
| 39 | - `aplus_pain_points` |
| 40 | - `aplus_features` |
| 41 | - `aplus_ingredients` |
| 42 | - `aplus_efficacy` |
| 43 | - `aplus_how_to_use` |
| 44 | - `aplus_endorsement` |
| 45 | |
| 46 | ## Command |
| 47 | |
| 48 | Build and run one `higgsfield marketplace-cards create` command from the user's request. |
| 49 | |
| 50 | For common bundles, use `--scope <main|product-images|aplus|full-set>`, `--prompt "<short product and listing intent>"`, optional repeated `--image <path-or-upload-id>`, and optional context flags: `--product_context`, `--brand_context`, `--category`, `--visual_style`. |
| 51 | |
| 52 | Examples to mirror when choosing arguments: |
| 53 | |
| 54 | - Product images: `higgsfield marketplace-cards create --scope product-images --prompt "sparkling peach lemonade can for marketplace listing" --image ./can.png --category "beverage"` |
| 55 | - Full set: `higgsfield marketplace-cards create --scope full-set --prompt "premium skincare serum, clean clinical marketplace visual system" --image ./serum.jpg --brand_context "minimal white and sage palette"` |
| 56 | - Custom subset: repeat `--asset`, for example `--asset main_image --asset infographic --asset lifestyle`. |
| 57 | - Existing completed main image job: use `--main-job <completed_main_job_id>` with the requested secondary or A+ `--asset` values. |
| 58 | |
| 59 | ## Delivery |
| 60 | |
| 61 | Print URLs with labels: |
| 62 | |
| 63 | ```text |
| 64 | Marketplace cards ready: |
| 65 | - Main image: https://... |
| 66 | - Infographic: https://... |
| 67 | - Lifestyle: https://... |
| 68 | ``` |
| 69 | |
| 70 | Avoid JSON, job IDs, internal model names, or enhanced prompt text unless the user explicitly asks. |