電商平台賣家導入

B2B

賣家申請 → 法規遵循查核 → 商品目錄上傳 → 品質審查 → 上架啟動 → 監控。

6 個節點 · 5 條連接retail
humansystemagent
視覺化
賣家申請human

提供公司詳情、統一編號、銀行帳戶及商品類別。

sequential法規遵循與身份查核
法規遵循與身份查核system

驗證營業執照、稅籍登記及制裁名單篩查。

conditional商品目錄上傳
商品目錄上傳api

賣家透過 CSV 或 API 整合上傳商品資料。

sequentialAI 品質審查
AI 品質審查agent

AI 掃描商品清單是否有違禁品、圖片品質問題及描述準確性。

conditional上架啟動
上架啟動system

將已核准的商品發布至店面。

sequential首次銷售監控
首次銷售監控system

追蹤開始銷售的前 30 天:出貨率、退貨率及客戶回饋。

uc-marketplace-onboarding.osop.yaml
osop_version: "1.0"
id: "marketplace-onboarding"
name:"電商平台賣家導入"
description:"賣家申請 → 法規遵循查核 → 商品目錄上傳 → 品質審查 → 上架啟動 → 監控。"

nodes:
  - id: "seller_apply"
    type: "human"
    subtype: "input"
    name: "賣家申請"
    description: "提供公司詳情、統一編號、銀行帳戶及商品類別。"

  - id: "compliance_check"
    type: "system"
    name: "法規遵循與身份查核"
    description: "驗證營業執照、稅籍登記及制裁名單篩查。"

  - id: "catalog_upload"
    type: "api"
    subtype: "rest"
    name: "商品目錄上傳"
    description: "賣家透過 CSV 或 API 整合上傳商品資料。"
    timeout_sec: 259200

  - id: "quality_review"
    type: "agent"
    subtype: "llm"
    name: "AI 品質審查"
    description: "AI 掃描商品清單是否有違禁品、圖片品質問題及描述準確性。"

  - id: "listing_activation"
    type: "system"
    name: "上架啟動"
    description: "將已核准的商品發布至店面。"

  - id: "first_sale_monitor"
    type: "system"
    name: "首次銷售監控"
    description: "追蹤開始銷售的前 30 天:出貨率、退貨率及客戶回饋。"
    timeout_sec: 2592000

edges:
  - from: "seller_apply"
    to: "compliance_check"
    mode: "sequential"
  - from: "compliance_check"
    to: "catalog_upload"
    mode: "conditional"
    when: "compliance.passed == true"
  - from: "catalog_upload"
    to: "quality_review"
    mode: "sequential"
  - from: "quality_review"
    to: "listing_activation"
    mode: "conditional"
    when: "review.violations == 0"
  - from: "listing_activation"
    to: "first_sale_monitor"
    mode: "sequential"