← Back to Skills Marketplace
metahuan

Yufluentcn B2b Assist

by metahuan · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
23
Downloads
1
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install yufluentcn-b2b-assist
Description
B2B 外贸询盘回复与 RFQ 报价助手,经 Yufluent 云端 Harness 执行。 支持 FOB/CIF 报价单、MOQ 谈判、交期回复、公司简介等专业外贸场景。 Use for 询盘回复、RFQ、FOB/CIF 报价、外贸报价、B2B inquiry.
README (SKILL.md)

B2B 询盘助手

外贸 B2B 询盘回复与 RFQ 报价 专用技能。ClawHub / OpenClaw 云端模式 — Harness b2b_inquiry 在 Yufluent 服务端执行;本机只需 TOKENAPI_KEYtk-*)与 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 硬性规则:

  1. 禁止用对话模型自行撰写完整 B2B 报价单或商务回复(尤其是含价格承诺、交期保证的条款)。
  2. 必须通过 python scripts/run.py ...(或 POST /v1/skills/b2b-assist/run)获取输出。
  3. 对话模型仅用于:收集询盘原文与报价要素(MOQ、FOB/CIF、交期、付款方式)、确认语言、提醒审核。
  4. 只需 TOKENAPI_KEY不要要求用户另配厂商 LLM Key。

Instructions(Agent 工作流)

  1. 确认语言--lang,默认 en(外贸通用英语)。
  2. 收集输入(尽量一次问齐):
    • --message(必填):买家询盘原文或 .txt 文件路径
    • --product:产品名称
    • --moq:最小起订量
    • --fob-price / --cif-price:FOB/CIF 报价
    • --lead-time:交期(如 30 days
    • --payment-terms:付款方式(如 T/T 30% deposit
    • --company-profile:公司简介(可选)
    • --inquiry-typerfq / general(默认 rfq
  3. 调用(必须 — 云端)
    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
  4. 交付:将回复正文(JSON 包含邮件正文 + 报价摘要)交给用户,提醒核实价格/条款后发送。
  5. 计费: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 询盘回复技能
Usage Guidance
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.
Capability Tags
requires-sensitive-credentials
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install yufluentcn-b2b-assist
  3. After installation, invoke the skill by name or use /yufluentcn-b2b-assist
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug yufluentcn-b2b-assist
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Yufluentcn B2b Assist?

B2B 外贸询盘回复与 RFQ 报价助手,经 Yufluent 云端 Harness 执行。 支持 FOB/CIF 报价单、MOQ 谈判、交期回复、公司简介等专业外贸场景。 Use for 询盘回复、RFQ、FOB/CIF 报价、外贸报价、B2B inquiry. It is an AI Agent Skill for Claude Code / OpenClaw, with 23 downloads so far.

How do I install Yufluentcn B2b Assist?

Run "/install yufluentcn-b2b-assist" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Yufluentcn B2b Assist free?

Yes, Yufluentcn B2b Assist is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Yufluentcn B2b Assist support?

Yufluentcn B2b Assist is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Yufluentcn B2b Assist?

It is built and maintained by metahuan (@metahuan); the current version is v1.0.0.

💬 Comments