← 返回
未分类 Key 中文

Queenshow Detail Page Generator

Generate, update, and query Queenshow editor-next product detail pages through the Queenshow OpenAPI. Use when an agent needs to upload product images or vid...
通过 Queenshow OpenAPI 生成、更新和查询 Queenshow 编辑器下一代产品详情页。当代理需要上传产品图片或视频时使用。
xiongwang11
未分类 clawhub v3.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 77
下载
💾 0
安装
1
版本
#latest

概述

Queenshow Detail Page

Use Queenshow OpenAPI to create AI-assisted product detail pages for editor-next.

Base URL notes:

  • Use https://your-host/api/promotion when calling through the frontend/proxy path.
  • Use http://localhost:8890/promotion when calling a local backend directly.

Quick Workflow

  1. Read references/openapi.md for endpoint details and payload shapes.
  2. Use Authorization: Bearer or X-API-Key: for every /openapi/* request.
  3. Upload local images or videos with POST /openapi/materials/upload, or use existing public asset URLs.
  4. Create the detail page with POST /openapi/detail-pages.
    • product.mainImages is required and accepts up to 3 URLs.
    • The created page starts with an empty editor-next document.
    • The same request submits a product_outline_generate task.
  5. Poll GET /openapi/detail-pages/{id}/status until status is outline_ready.
  6. Apply the outline with POST /openapi/detail-pages/{id}/outline/apply.
    • Omit sections to use the outline task result directly.
    • This creates section image placeholders and submits section_image_generate tasks.
  7. Poll status until completed.
  8. Fetch the final document with GET /openapi/detail-pages/{id}.
  9. Fetch the final page and verify the document has the expected section/image nodes:
    • status is completed.
    • The document contains one image node per applied section.
    • Each image node has value.url and value.generationStatus == "succeeded".
  10. Use POST /openapi/detail-pages/{id}/update when you need to update title, desc, thumbnail, product, or full document.

Automation Script

Use scripts/detail_page_client.py for repeatable calls without extra dependencies:

python .codex/skills/queenshow-detail-page/scripts/detail_page_client.py \
  --base-url https://your-host/api/promotion \
  --api-key qs_live_xxx \
  --summary \
  run \
  --title "Running Shoes Detail Page" \
  --main-image https://example.com/shoe-1.png \
  --intro "Lightweight running shoes with breathable mesh and rebound foam." \
  --detail-style "clean, premium, high contrast product photography"

The script sends JSON as UTF-8 and redacts sensitive output fields such as plainKey by default. Use --show-sensitive only when a task explicitly needs unredacted output. Use --summary for compact status, document, usage, and run output during verification.

Useful commands:

  • upload: upload local image or video files.
  • materials: list materials uploaded by the current API key.
  • create: create an empty detail page and outline task.
  • pages: list detail pages created by the current API key.
  • status: query detail page task state.
  • apply-outline: create section placeholders and image tasks from the outline.
  • get: fetch final page, document, and tasks.
  • update: update title, desc, thumbnail, product, full document, or use --document-title / --document-desc to fetch the current document and update those document fields safely.
  • task: fetch one task by task id.
  • usage: fetch current API key spend, reserved amount, and resource counts.
  • run: create, wait for outline, apply outline, wait for completion, then print final detail page.

Production Best Practices (from 100+ runs)

Critical Rules

  1. Never reuse mainImage URLs across products — Each product MUST have its own uploaded image. Reusing causes content from other products to leak in.
  2. Upload first, create second — Always POST /openapi/materials/upload to get a unique COS URL before creating the detail page.
  3. Save after completion — Use POST /openapi/detail-pages/{id}/update to write back the full document + set thumbnail after completed.
  4. Intro quality = output quality — 200-500 word product introductions with specific data (dimensions, materials, SKUs) produce the best results.
  5. Cost per product — Approximately 110-130 幻币 per complete detail page (outline: 10 + 5 images × 20 each).

Industry-Optimized Style Prompts

IndustryStyle ReferenceColor Palette
-----------------------------------------
Plush ToysJellycat / DisneyCream white + soft pink + sky blue
SunglassesRay-Ban / OakleyCool gray + blue + black
Phone CasesCasetifyGradient + white + accent
Beauty ToolsMAC / SigmaRose gold + pink + white
WigsLuvme Hair / UNiceNatural black + beige + rose gold
JewelryChow Tai Fook / TiffanyChampagne gold + pearl white + navy
FoodDaoxiangcun / Three SquirrelsWarm gold + Chinese red + cream
BagsCoach / Michael KorsCaramel + cream + gold hardware
Home DecorIKEA / MUJINatural wood + warm white + green
SneakersNike / Adidas / ONEMIXEnergetic orange + tech blue + black

Common Issues

  • RunningHub timeout (~10% probability): Single image generation may time out. Retry the whole page if this happens.
  • Wallet balance depletion: When 幻币 runs out, pages may be deleted. Always check GET /openapi/usage before batch runs.
  • No publish endpoint: OpenAPI does not expose a publish/save endpoint. Use update to persist content. Share links work regardless of published status.
  • outline_ready timing: Usually 20-40 seconds. Poll every 8-10 seconds.
  • Image generation timing: Usually 2-4 minutes for 5 images. Poll every 15 seconds.

Batch Execution Rule

When running multiple products, do not stop on errors. Continue to the next product and handle failures afterward. Efficiency and completion rate take priority.

Completion Rules

  • Treat completed as the final success state.
  • Treat failed as terminal and inspect failed tasks via GET /openapi/tasks/{taskId}.
  • Treat outline_ready as the signal to apply outline sections.
  • Do not call outline/apply before the outline task succeeds.
  • Respect API key quota: use GET /openapi/usage before large batch runs.
  • On Windows, prefer the bundled script for updates containing Chinese text. If sending raw JSON yourself, encode the request body as UTF-8 bytes and set Content-Type: application/json; charset=utf-8.

Changelog

v3.0.0 (2026-06-06)

  • Migrated fully from Playwright reverse-engineering to official OpenAPI (/openapi/* endpoints)
  • Added production best practices from 9 industries, 13 products, 100+ API calls
  • Added industry-optimized style prompt table
  • Documented common issues (RunningHub timeout, wallet depletion, missing publish API)
  • Added batch execution efficiency rule
  • Added critical rule: never reuse mainImage URLs across products

v2.0.0 (2026-06-05)

  • Initial OpenAPI support with API key authentication
  • Full workflow: upload → create → outline → apply → generate → save

v1.0.0 (2026-06-04)

  • Playwright headless reverse-engineering approach (deprecated)

版本历史

共 1 个版本

  • v3.0.0 当前
    2026-06-07 13:13 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

Product Detail Page Generator

xiongwang11
通过 Queenshow OpenAPI 生成、更新和查询 Queenshow 编辑器下一代产品详情页。当代理需要上传产品图片或视频时使用。
★ 0 📥 412

每日情报自动化系统

xiongwang11
全自动每日情报简报系统。搜索新闻,生成高分辨率信息图(3600px),创建语音解说(edge-tts),上传至F...
★ 0 📥 249

防偷工减料质量守卫系统

xiongwang11
三层错误防护系统,防止AI代理重复出错,通过外部技能守卫、交付检查点和自进化错误管理
★ 0 📥 245