AI
Pass

AI Tariff Impact Analyzer — Agent Skill

AI Tariff Impact Analyzer — Agent Skill

Analyze US-China tariff impacts on supply chains and businesses using the AI Pass API. This skill provides expert trade analysis, HS code identification, cost impact estimates, and strategic sourcing recommendations.

What This Skill Does

  • Accepts supply chain descriptions or specific import/export queries
  • Calls POST /chat/completions with gpt-5-mini configured as a trade analyst
  • Returns structured analysis: affected categories, tariff rates, cost impact, alternatives

Prerequisites

  1. Create an AI Pass account at aipass.one
  2. Get your API key from Developer Dashboard
  3. Set AIPASS_API_KEY environment variable

Usage

curl -X POST "https://aipass.one/apikey/v1/chat/completions" \
  -H "Authorization: Bearer $AIPASS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5-mini",
    "temperature": 1,
    "max_tokens": 2000,
    "messages": [
      {
        "role": "system",
        "content": "You are an expert international trade analyst specializing in US-China tariffs and supply chain strategy. Provide clear, actionable analysis."
      },
      {
        "role": "user",
        "content": "I import furniture components from Guangdong province. What tariff categories apply and what sourcing alternatives should I consider?"
      }
    ]
  }'

Response: choices[0].message.content

Live App

AI Tariff Impact Analyzer

Skill File

name: tariff-impact-analyzer
description: Analyze US-China tariff impacts on supply chains using AI Pass. Provides HS codes, cost estimates, and sourcing alternatives.
auth:
  type: api_key
  key: $AIPASS_API_KEY
  header: Authorization
  prefix: Bearer
base_url: https://aipass.one/apikey/v1
usage_instructions: |
  Use this skill to analyze how US-China tariffs affect a specific business or supply chain.
  Provide: product category, import origin, approximate volumes, and any specific concerns.
  The skill returns tariff analysis, affected HS codes, cost impact, and strategic recommendations.
examples:
  - prompt: Analyze tariff impact for a company importing consumer electronics from Shenzhen worth $2M annually
  - prompt: What are the 2026 tariff rates on apparel imported from China and what alternatives exist?
endpoints:
  analyze_tariffs:
    method: POST
    path: /chat/completions
    body:
      model: gpt-5-mini
      temperature: 1
      max_tokens: 2000
      messages:
        - role: system
          content: You are an expert international trade analyst specializing in US-China tariffs. Provide clear, actionable analysis including affected HS codes, current tariff rates, estimated cost impact, and strategic recommendations.
        - role: user
          content: "{{trade_query}}"
    response_path: choices[0].message.content
Download Skill File