← 返回 Skills 市场
metahuan

Yufluentcn Compliance Guard

作者 metahuan · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
23
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install yufluentcn-compliance-guard
功能描述
跨境合规与贸易参考助手:认证清单(CE/FCC/GPSR)、关税估算、标签要求、 平台规则检查。经 Yufluent 云端 Harness 输出结构化 JSON 建议。 非法律或税务建议,结果须人工核实。Use for 合规、认证、关税、GPSR、CE、FCC、VAT、HS编码.
使用说明 (SKILL.md)

合规卫士

跨境 认证清单 / 关税估算 / 标签要求 / 平台规则 参考助手。ClawHub / OpenClaw 云端模式 — Harness compliance_check 输出结构化 JSON;本机只需 TOKENAPI_KEYtk-*)与 requests

⚠️ 非法律或税务建议;结果须人工核实官方来源与最新法规。

OpenClaw 与 Yufluent(必读)

OpenClaw 对话与技能调用共用同一 tk-*。接入见 https://claw.changzhiai.com/app/openclaw

走哪里 干什么
OpenClaw 对话 Yufluent /v1/chat/completions(同一 tk-*) 收集产品/市场/材质等、调 run.py、解读 JSON
合规正式输出 POST /v1/skills/compliance-guard/run(同一 tk-*) Harness 合规分析 → JSON

Agent 硬性规则:

  1. 禁止用对话模型自行撰写完整合规认证清单或关税计算表。
  2. 必须通过 python scripts/run.py ...(或 POST /v1/skills/compliance-guard/run)获取输出。
  3. 对话模型仅用于:收集产品信息、确认目标市场、解读输出、提醒人工核实。
  4. 只需 TOKENAPI_KEY不要要求用户另配厂商 LLM Key。

Instructions(Agent 工作流)

  1. 选择 mode(见下表);用户说"出口欧盟需要什么认证" → certification;"帮我算关税" → tariff
  2. 收集上下文(尽量一次问齐):
    • --message(必填)
    • --product(必填)
    • --target-market:目标市场(如 美国、欧盟、日本)
    • --material:材质或成分
    • --category:产品类目
    • --declared-value:申报货值
    • --hs-code:已知 HS 编码(可选)
    • --origin-country:原产国
  3. 调用(必须 — 云端)
    python scripts/run.py \
      --mode certification \
      -m "蓝牙耳机出口美国需要什么认证" \
      --product "蓝牙耳机" \
      --target-market "美国" \
      --material "塑料+锂电池" \
      --lang zh
    
  4. 计费:402 余额不足;401 密钥无效。

四模式

mode 用途 示例
certification CE/FCC/CPSC/GPSR 等认证清单 "出口欧盟需要什么认证"
tariff HS 编码建议、税率与税费估算 "蓝牙耳机到美国关税多少"
labeling 成分、警示语、能效等标签要求 "德国食品标签规范"
platform_rules 亚马逊/Shopify/TikTok 类目限制 "这个能上亚马逊吗"

环境变量

变量 必填 说明
TOKENAPI_KEY tk-*Yufluent 控制台 获取
TOKENAPI_BASE_URL 默认 http://localhost:8080/v1

触发词

  • "出口美国需要什么认证"
  • "帮我算关税"
  • "GPSR 合规吗"
  • "欧盟标签要求"
  • "亚马逊新规影响"
  • "HS 编码"
  • "CE 认证"
  • "platform rules"

Examples

认证清单

python scripts/run.py \
  --mode certification \
  -m "儿童玩具出口欧盟需要什么认证" \
  --product "塑料积木玩具" \
  --target-market "欧盟" \
  --material "ABS塑料" \
  --lang zh

关税估算

python scripts/run.py \
  --mode tariff \
  -m "蓝牙耳机 HS 编码和关税" \
  --product "TWS蓝牙耳机" \
  --target-market "美国" \
  --declared-value "USD 15,000" \
  --hs-code "8518.30" \
  --lang zh

平台规则

python scripts/run.py \
  --mode platform_rules \
  -m "这个产品能上亚马逊德国站吗" \
  --product "电子体温计" \
  --platform amazon \
  --target-market "德国" \
  --lang zh

合规声明

  • 输出仅供参考,不构成法律或税务建议
  • 不虚构已获批认证号或实时海关数据
  • 最终认证申请须经专业机构

版本记录

版本 日期 变更
v1.0.0 2026-06-13 规范 SKILL.md:补充 Agent 规则、Instructions、触发词、示例、环境变量、合规、版本记录
v0.1.0 初始合规卫士技能
安全使用建议
Install only if you are comfortable sending product, market, HS-code, value, and related compliance details to the Yufluent/OpenClaw API. Set TOKENAPI_BASE_URL only to a trusted endpoint you control or recognize, because the skill sends the bearer token to that configured URL.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The stated purpose is cross-border compliance, certification, tariff, labeling, and platform-rule assistance, and the runtime CLI builds only those related fields before calling the compliance-guard cloud API.
Instruction Scope
The instructions explicitly require cloud execution through scripts/run.py and disclose TOKENAPI_KEY and optional TOKENAPI_BASE_URL; the separate record_outcome helper is present in the client module but is not invoked by the documented workflow.
Install Mechanism
Installation is limited to the requests Python dependency via OpenClaw metadata and requirements.txt; dev requirements reference local monorepo packages for tests only.
Credentials
Network submission of product, customs, and compliance context is expected for a cloud compliance service, but users should understand that TOKENAPI_BASE_URL controls where the bearer token and payload are sent.
Persistence & Privilege
No persistence, privilege escalation, background worker, broad local indexing, file mutation, or credential-store access was found; the skill reads TOKENAPI_KEY from the environment for API authentication.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install yufluentcn-compliance-guard
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /yufluentcn-compliance-guard 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of yufluentcn-compliance-guard. - Provides cross-border compliance and trade reference helper (certification list, tariff estimate, labeling requirements, platform rules) via structured JSON output. - Supports CE/FCC/GPSR/VAT/HS code queries and compliance checks. - Cloud-based (requires TOKENAPI_KEY and requests); no vendor LLM key required. - Includes strict Agent workflow and rules to ensure reliable outputs. - Multi-language support (zh, en, es, de, fr, ja). - Not legal or tax advice; results must be manually verified.
元数据
Slug yufluentcn-compliance-guard
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Yufluentcn Compliance Guard 是什么?

跨境合规与贸易参考助手:认证清单(CE/FCC/GPSR)、关税估算、标签要求、 平台规则检查。经 Yufluent 云端 Harness 输出结构化 JSON 建议。 非法律或税务建议,结果须人工核实。Use for 合规、认证、关税、GPSR、CE、FCC、VAT、HS编码. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 23 次。

如何安装 Yufluentcn Compliance Guard?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install yufluentcn-compliance-guard」即可一键安装,无需额外配置。

Yufluentcn Compliance Guard 是免费的吗?

是的,Yufluentcn Compliance Guard 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Yufluentcn Compliance Guard 支持哪些平台?

Yufluentcn Compliance Guard 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Yufluentcn Compliance Guard?

由 metahuan(@metahuan)开发并维护,当前版本 v1.0.0。

💬 留言讨论