Install
openclaw skills install yufluentcn-b2b-assistB2B 外贸询盘回复与 RFQ 报价助手,经 Yufluent 云端 Harness 执行。 支持 FOB/CIF 报价单、MOQ 谈判、交期回复、公司简介等专业外贸场景。 Use for 询盘回复、RFQ、FOB/CIF 报价、外贸报价、B2B inquiry.
openclaw skills install yufluentcn-b2b-assist外贸 B2B 询盘回复与 RFQ 报价 专用技能。ClawHub / OpenClaw 云端模式 — Harness b2b_inquiry 在 Yufluent 服务端执行;本机只需 TOKENAPI_KEY(tk-*)与 requests。
还没注册?前往 https://claw.changzhiai.com/login 免费获取密钥。
OpenClaw 对话与技能调用共用同一 tk-*。接入见 https://claw.changzhiai.com/app/openclaw。
| 层 | 走哪里 | 干什么 |
|---|---|---|
| OpenClaw 对话 | Yufluent /v1/chat/completions(同一 tk-*) | 收集询盘原文与报价要素、调 run.py、提交人工审核 |
| 询盘回复正式输出 | POST /v1/skills/b2b-assist/run(同一 tk-*) | Harness → 专业询盘回复或报价单 |
Agent 硬性规则:
python scripts/run.py ...(或 POST /v1/skills/b2b-assist/run)获取输出。TOKENAPI_KEY,不要要求用户另配厂商 LLM Key。--lang,默认 en(外贸通用英语)。--message(必填):买家询盘原文或 .txt 文件路径--product:产品名称--moq:最小起订量--fob-price / --cif-price:FOB/CIF 报价--lead-time:交期(如 30 days)--payment-terms:付款方式(如 T/T 30% deposit)--company-profile:公司简介(可选)--inquiry-type:rfq / general(默认 rfq)python scripts/run.py \
--message "Please quote 500 units FOB Shenzhen" \
--product "Bluetooth Speaker" \
--moq 500 \
--fob-price "USD 12.50" \
--lead-time "30 days" \
--payment-terms "T/T 30% deposit, 70% before shipment" \
--lang en
POST {TOKENAPI_BASE_URL}/skills/b2b-assist/run| 变量 | 必填 | 说明 |
|---|---|---|
TOKENAPI_KEY | 是 | tk-*,Yufluent 控制台 获取 |
TOKENAPI_BASE_URL | 否 | 默认 http://localhost:8080/v1 |
RFQ 报价回复
python scripts/run.py \
--message "We are interested in your Bluetooth speakers. Please quote 500 units with FOB Shenzhen price." \
--product "Portable Bluetooth Speaker X1" \
--moq 500 \
--fob-price "USD 12.50" \
--lead-time "25-30 days" \
--payment-terms "T/T 30% deposit, 70% before shipment" \
--lang en
一般询盘回复(无报价)
python scripts/run.py \
--message "Do you offer OEM service for wireless earbuds?" \
--product "TWS Wireless Earbuds" \
--inquiry-type general \
--company-profile "10-year OEM manufacturer, ISO 9001 certified" \
--lang en
从文件读取询盘
python scripts/run.py \
--message ./inquiry.txt \
--product "LED Strip Light" \
--moq 1000 \
--fob-price "USD 3.00" \
--lang en
| 版本 | 日期 | 变更 |
|---|---|---|
| v1.1.0 | 2026-06-14 | SKILL.md added quickstart registration guide; 401/402 error messages now in Chinese with register links |
| v1.0.0 | 2026-06-13 | 规范 SKILL.md:补充 Agent 规则、Instructions、触发词、示例、合规、版本记录 |
| v0.1.0 | — | 初始 B2B 询盘回复技能 |