← Back to Skills Marketplace
xiongwang11

Queenshow Detail Page Generator

by XiongWang11 · GitHub ↗ · v3.0.0 · MIT-0
cross-platform ⚠ suspicious
34
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install queenshow-detail-page
Description
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...
README (SKILL.md)

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 \x3CapiKey> or X-API-Key: \x3CapiKey> 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

Industry Style Reference Color Palette
Plush Toys Jellycat / Disney Cream white + soft pink + sky blue
Sunglasses Ray-Ban / Oakley Cool gray + blue + black
Phone Cases Casetify Gradient + white + accent
Beauty Tools MAC / Sigma Rose gold + pink + white
Wigs Luvme Hair / UNice Natural black + beige + rose gold
Jewelry Chow Tai Fook / Tiffany Champagne gold + pearl white + navy
Food Daoxiangcun / Three Squirrels Warm gold + Chinese red + cream
Bags Coach / Michael Kors Caramel + cream + gold hardware
Home Decor IKEA / MUJI Natural wood + warm white + green
Sneakers Nike / Adidas / ONEMIX Energetic 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)
Usage Guidance
Install only if you are comfortable sending selected product media and detail-page content to Queenshow. Prefer environment variables, stdin, or a secret file over command-line API keys, and use a least-privilege API key that can be rotated if exposed.
Capability Tags
cryptorequires-walletrequires-sensitive-credentials
Capability Assessment
Purpose & Capability
The described behavior, creating or updating detail pages and uploading related product media/content to Queenshow, fits the apparent purpose of a detail-page client.
Instruction Scope
The workflow sends local images, videos, and product content to an external service, but the available evidence indicates the privacy and confidentiality implications are not clearly emphasized.
Install Mechanism
No evidence was supplied of hidden installation, automatic startup, or unrelated package behavior.
Credentials
Network access, local media reads, and a Queenshow API key are proportionate for this integration, but they involve business content and should be user-directed.
Persistence & Privilege
The client reportedly accepts the API key as a command-line argument, which can expose a credential that can create, update, upload, and query production content.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install queenshow-detail-page
  3. After installation, invoke the skill by name or use /queenshow-detail-page
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v3.0.0
v3.0.0: Full OpenAPI migration. Added production best practices from 9 industries/13 products/100+ runs. Industry style prompt table. Critical rules (no mainImage reuse, save after complete). Common issues documented. Batch execution efficiency rule.
Metadata
Slug queenshow-detail-page
Version 3.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 34 downloads so far.

How do I install Queenshow Detail Page Generator?

Run "/install queenshow-detail-page" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Queenshow Detail Page Generator free?

Yes, Queenshow Detail Page Generator is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Queenshow Detail Page Generator support?

Queenshow Detail Page Generator is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Queenshow Detail Page Generator?

It is built and maintained by XiongWang11 (@xiongwang11); the current version is v3.0.0.

💬 Comments