Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

tariff-watch关税观察

Agent Skill

tariff-watch 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,763

周安装

453

GitHub Stars

公开资料未说明

下载量

3,769
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tariff-watch(关税观察)
来源仓库:https://github.com/zhaoningliu1-lang/tariff-watch
安装命令:
openclaw skills install tariff-watch
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install tariff-watch

简介

为全球运往美国的贸易商提供实时到岸成本计算服务。

  • 支持 USITC 关税查询、第232/301/AD-CVD 附加税监控。
  • 集成外汇汇率与海运费用动态更新机制。tariff-watch 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装前需确认权限范围、维护状态及是否持续联网获取数据。
  • 建议结合原始 README 核验数据更新频率与计费策略。

SKILL.md

name
tariff-watch
description
Global landed cost calculator for traders shipping to the US. Queries live USITC tariffs, stacks Section 232/301/AD-CVD duties, monitors FX rates and ocean freight costs, assesses UFLPA risk, and calculates customs entry costs. Supports 18+ origin countries.
license
MIT
metadata
author
zhaoningliu1-lang
homepage
https://github.com/zhaoningliu1-lang/tariff-watch
tags
tariff, customs, hts, trade, compliance, import, ecommerce, shipping, exchange-rate, landed-cost
emoji
📊

SKILL: Tariff Watch

ClawHub Skill · v3.2.0 · Python 3.11+ · FastAPI backend required

Overview

Tariff Watch answers the question: "What does it actually cost me to land this product in the US?"

It combines tariffs (USITC base + Section 232/301 + AD/CVD), exchange rates (18 currencies with 30-day trends), ocean freight (25+ routes from global ports to US coasts), compliance (CPSC/FDA/FCC/UFLPA), and customs costs (broker, ISF, bond, MPF, HMF) into a single landed-cost-per-unit calculation.

Designed for global traders from any country shipping to the United States — not just China.


Capabilities (v3.2)

FeatureDescription
Live HTS lookupFetches current MFN base rate directly from USITC (auto-discovers latest revision)
Section 232 overlayAdds steel (+25%) or aluminum (+10%) surcharge for all non-USMCA origins
Section 301 overlayChina-specific: +25% (most goods) or +7.5% (apparel/footwear ch. 61–64)
AD/CVD ordersChecks 16+ active anti-dumping/countervailing duty orders against China; shows "all others" rate and risk level
Live exchange rates14 currencies from ECB (daily auto-refresh) + 4 simulated; optional premium API for all 18
Ocean freight rates25+ routes from global ports to US West/East Coast, with FCL/LCL pricing and 30-day trends
Landed cost calculatorOne-stop endpoint: tariff + FX + shipping + customs = total per-unit landed cost
Auto-refresh schedulerAPScheduler: FX daily, shipping daily, USITC weekly — data persisted in SQLite
Compliance reportMaps HTS chapter to regulatory agencies (CPSC, FDA, FCC, EPA, DOT) with certification requirements
UFLPA risk assessmentFlags cotton, polysilicon, tomato, aluminum, PVC products for CBP detention risk
Customs entry costsCalculates broker fee, ISF filing, bond, MPF, HMF, and exam risk — amortized per unit
Section 122 advisoryFlags the temporary 10% global surcharge (in effect 2026-02-24, expires 2026-07-24)
18+ origin countriesCN, VN, IN, BD, TH, ID, MY, PH, PK, KR, JP, TW, DE, GB, MX, CA, BR, TR and more
Profit calculatorFull breakdown: COG + shipping + tariff + customs + FBA fee + referral fee

How Claude Uses This Skill

When invoked, Claude should:

  1. Identify the HTS code from the user's product description.

- Use Claude's built-in HTS knowledge to suggest the most specific 10-digit code. - If uncertain, start with a 4- or 6-digit prefix.

  1. Call the effective tariff endpoint:
   GET http://localhost:8000/tariff/{hts_code}/effective?origin={ISO2}

Default origin: CN (China). Accept natural-language origin ("Vietnam" → VN).

  1. Present the result clearly:

- List each duty layer (MFN base, Section 232, Section 301) with its rate and legal basis. - Show effective_total_pct as the confirmed total. - If adcvd is present, highlight the AD/CVD risk and worst-case total. - If compliance_flags is present, list the regulatory agencies. - Always display the advisory field if non-empty — the user needs to know about Section 122. - Remind the user to verify with a licensed customs broker.

  1. For full landed cost (the most powerful endpoint), call:
   GET http://localhost:8000/landed-cost?hts_code={code}&origin={ISO2}&cog_local=32&units=500&cbm=5&destination=USWC

This combines tariff + FX + shipping + customs into one response.

  1. For exchange rate impact, call:
   GET http://localhost:8000/fx/{currency}/impact?cog_local=32&units=500
  1. For shipping rates, call:
   GET http://localhost:8000/shipping/{origin}?destination=USWC
  1. For AD/CVD, compliance, or profit, call the respective endpoints below.

API Endpoints Reference

MethodPathDescription
GET/landed-cost?hts_code=...&origin=CN&cog_local=32&units=500&cbm=5Comprehensive landed cost — tariff + FX + shipping + customs in one call
GET/tariff/{hts_code}/effective?origin=CNEffective tariff with per-layer breakdown + AD/CVD + compliance flags
GET/live/tariff/{hts_code}Raw USITC MFN rate only (no overlay)
GET/fx/ratesAll tracked exchange rates with 30-day trends
GET/fx/{currency}Single currency rate + trend
GET/fx/{currency}/history30-day daily FX history
GET/fx/{currency}/impact?cog_local=32&units=500FX impact on cost of goods
GET/shipping/routes?origin=CNAll shipping routes with current rates
GET/shipping/{origin}?destination=USWCRates for a specific route
GET/shipping/{origin}/history30-day freight rate history
GET/shipping/{origin}/cost?cbm=2.5&units=500Per-unit shipping cost (LCL/FCL)
GET/adcvd/{hts_code}?origin=CNAD/CVD order matching
GET/compliance/{hts_code}?origin=CNCompliance report (regulatory + UFLPA + marking)
GET/compliance/entry-costs?origin=CN&estimated_value_usd=5000Customs entry costs
GET/amazon/profit/{asin}?origin=CN&include_adcvd=trueAmazon FBA profit with full tariff + customs
GET/data-sourcesShow active data sources and last refresh times
GET/healthAPI health check

Data Sources & Auto-Refresh

Data TypeFree SourceRefreshPremium Source (optional)
Tariff ratesUSITC live (always free)Weekly (Monday)
Exchange ratesECB via frankfurter.app (14 currencies)Dailyexchangerate-api.com (all 18 currencies)
Shipping ratesCalibrated simulation (based on FBX index)DailyFreightos API (real container rates)

ECB Currency Gap

The free ECB feed does not cover: VND, BDT, PKR, TWD. These 4 currencies use calibrated simulation and are marked with source: "simulated" in the response. Set EXCHANGERATE_API_KEY to get real rates for all 18 currencies.

Optional Premium API Keys

For more accurate data, users can register for paid APIs. The skill will automatically detect and use them:

Env VariableProviderFree TierWhat It Unlocks
EXCHANGERATE_API_KEYexchangerate-api.com1,500 calls/monthReal rates for VND, BDT, PKR, TWD + sub-daily updates
FREIGHTOS_API_KEYFreightosPaid onlyReal container shipping rates from carriers
TARIFF_WATCH_DATA_DIRCustom path for SQLite data (default: ~/.tariff-watch/)

Without any API keys, the skill works fully using free ECB data + calibrated simulation. No registration required.

Data Refresh Schedule

  • FX rates: Updated daily (after ECB publishes)
  • Shipping rates: Updated daily (simulation or Freightos)
  • USITC tariffs: Updated weekly (Monday)
  • First startup: Automatically backfills 30 days of history

Tariff Logic (Current as of 2026-02-26)

Confirmed in-force duties

LayerAuthorityRateScope
MFN baseUSITC HTSVaries (0–6.5% typical)All countries
Section 232 — SteelTrade Expansion Act s.232+25%All except USMCA (ch. 72–73)
Section 232 — AluminumTrade Expansion Act s.232+10%All except USMCA (ch. 76)
Section 301 — Lists 1–4ATrade Act of 1974 s.301+25%China only (most goods)
Section 301 — List 4BTrade Act of 1974 s.301+7.5%China only (apparel/footwear ch. 61–64)

AD/CVD orders (company-specific — "all others" rate shown)

ProductCaseAll Others Rate
Aluminum ExtrusionsA-570-967 / C-570-96832.79%
Aluminum FoilA-570-116 / C-570-11748.64%
Steel NailsA-570-900 / C-570-901118.04%
Wooden Bedroom FurnitureA-570-847198.08%
Quartz Surface ProductsA-570-082 / C-570-083294.57%
*… and 11 more orders*

Struck down — NOT applied

LayerReason
IEEPA reciprocal tariffsSCOTUS ruling 2026-02-20 (*Learning Resources v. Trump*)
IEEPA fentanyl tariff on ChinaSame ruling; CBP stopped collection 2026-02-24

Advisory — shown but NOT added to calculated total

LayerStatus
Section 122 +10% global surcharge (HTS 9903.03.01)In effect 2026-02-24 to 2026-07-24; Congress must act to extend

Limitations & Disclaimer

  • Data source: USITC publishes the official HTS schedule; this skill reads it directly. Rate data is as current as the latest USITC revision.
  • Section 122 is confirmed in effect but deliberately excluded from effective_total_pct due to its temporary, politically fluid nature — always check the advisory field.
  • AD/CVD rates are company-specific. The "all others" rate shown is applied to exporters without an individual rate from a Commerce Dept. administrative review. Your actual rate may be lower.
  • Compliance data covers major agencies but is not exhaustive. Some products have additional state-level or industry-specific requirements.
  • For informational purposes only. Always verify tariff obligations with CBP binding rulings, a licensed customs broker, or qualified trade counsel before making import decisions.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.87%
按下载量换算3,161

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills