← 返回 Skills 市场
23
总下载
1
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install yufluentcn-b2b-assist
功能描述
B2B 外贸询盘回复与 RFQ 报价助手,经 Yufluent 云端 Harness 执行。 支持 FOB/CIF 报价单、MOQ 谈判、交期回复、公司简介等专业外贸场景。 Use for 询盘回复、RFQ、FOB/CIF 报价、外贸报价、B2B inquiry.
使用说明 (SKILL.md)
B2B 询盘助手
外贸 B2B 询盘回复与 RFQ 报价 专用技能。ClawHub / OpenClaw 云端模式 — Harness b2b_inquiry 在 Yufluent 服务端执行;本机只需 TOKENAPI_KEY(tk-*)与 requests。
OpenClaw 与 Yufluent(必读)
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 硬性规则:
- 禁止用对话模型自行撰写完整 B2B 报价单或商务回复(尤其是含价格承诺、交期保证的条款)。
- 必须通过
python scripts/run.py ...(或POST /v1/skills/b2b-assist/run)获取输出。 - 对话模型仅用于:收集询盘原文与报价要素(MOQ、FOB/CIF、交期、付款方式)、确认语言、提醒审核。
- 只需
TOKENAPI_KEY,不要要求用户另配厂商 LLM Key。
Instructions(Agent 工作流)
- 确认语言:
--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- API:
POST {TOKENAPI_BASE_URL}/skills/b2b-assist/run
- API:
- 交付:将回复正文(JSON 包含邮件正文 + 报价摘要)交给用户,提醒核实价格/条款后发送。
- 计费:402 余额不足;401 密钥无效。
环境变量
| 变量 | 必填 | 说明 |
|---|---|---|
TOKENAPI_KEY |
是 | tk-*,Yufluent 控制台 获取 |
TOKENAPI_BASE_URL |
否 | 默认 http://localhost:8080/v1 |
触发词
- "帮我回这封询盘"
- "写个 RFQ 报价"
- "B2B 回复"
- "外贸报价"
- "FOB 报价单"
- "回复买家询价"
- "inquiry reply"
Examples
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.0.0 | 2026-06-13 | 规范 SKILL.md:补充 Agent 规则、Instructions、触发词、示例、合规、版本记录 |
| v0.1.0 | — | 初始 B2B 询盘回复技能 |
安全使用建议
Install only if you are comfortable sending B2B inquiries, pricing, payment terms, and company details to Yufluent's cloud service under your TOKENAPI_KEY. Keep TOKENAPI_BASE_URL pointed at the intended trusted endpoint, avoid using this with confidential customer data unless your organization permits that processor, and review generated quotes before sending them.
能力标签
能力评估
Purpose & Capability
The code and instructions match the stated purpose: collect B2B inquiry, product, price, MOQ, lead-time, payment, and company details, then call the Yufluent b2b-assist cloud endpoint for a reply or quote.
Instruction Scope
The skill clearly says cloud execution is mandatory, but its trigger phrases are fairly broad within B2B trade workflows and it does not require an explicit confirmation immediately before sending commercially sensitive content.
Install Mechanism
Installation is limited to the Python requests dependency via the declared OpenClaw pip install metadata and requirements.txt; no postinstall script, background worker, or obfuscated install behavior was found.
Credentials
Network use and TOKENAPI_KEY access are proportionate for this cloud API client, but users should understand that inquiry text, pricing, payment terms, and related business details leave the local machine.
Persistence & Privilege
No persistence, privilege escalation, credential-store access, or background execution was found; the only local write path is the user-selected --output file for returned text.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install yufluentcn-b2b-assist - 安装完成后,直接呼叫该 Skill 的名称或使用
/yufluentcn-b2b-assist触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
yufluentcn-b2b-assist v1.0.0
- Added comprehensive SKILL.md documentation, including usage instructions, agent workflow, triggers, examples, compliance notes, and version history.
- Clarified mandatory use of server-side harness for generating formal B2B replies and RFQ quotations.
- Specified environment variables, supported languages, and core scenarios (FOB/CIF quotation, MOQ negotiation, lead time, company profile).
- Outlined strict agent rules for compliance in B2B communication workflows.
元数据
常见问题
Yufluentcn B2b Assist 是什么?
B2B 外贸询盘回复与 RFQ 报价助手,经 Yufluent 云端 Harness 执行。 支持 FOB/CIF 报价单、MOQ 谈判、交期回复、公司简介等专业外贸场景。 Use for 询盘回复、RFQ、FOB/CIF 报价、外贸报价、B2B inquiry. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 23 次。
如何安装 Yufluentcn B2b Assist?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install yufluentcn-b2b-assist」即可一键安装,无需额外配置。
Yufluentcn B2b Assist 是免费的吗?
是的,Yufluentcn B2b Assist 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Yufluentcn B2b Assist 支持哪些平台?
Yufluentcn B2b Assist 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Yufluentcn B2b Assist?
由 metahuan(@metahuan)开发并维护,当前版本 v1.0.0。
推荐 Skills