import-export-docslisted
Install: claude install-skill Cleo-Labs-IA/skills_library
# Import/Export Documentation
Generate the complete documentation package for international shipments. Missing one document = shipment held at customs.
## MCP Tools
```
# Classify product for customs documentation
mcp__claude_ai_CLEO_LEGAL_API__customs/reverse-classify
product_description: "<detailed product description>"
# Get HS code details and applicable measures
mcp__claude_ai_CLEO_LEGAL_API__customs/lookup
hs_code: "<hs-code>"
# Calculate duty rates (needed for commercial invoice)
mcp__claude_ai_CLEO_LEGAL_API__customs/duties
hs_code: "<hs-code>"
origin: "<origin-country>"
destination: "<destination-country>"
# Calculate full landed cost
mcp__claude_ai_CLEO_LEGAL_API__customs/landed-cost
hs_code: "<hs-code>"
origin: "<origin>"
destination: "<destination>"
product_value: <value>
shipping: <shipping-cost>
insurance: <insurance-cost>
# Dual-use screening (determines if export license needed)
mcp__claude_ai_CLEO_LEGAL_API__customs/dual-use-check
product_description: "<product>"
hs_code: "<hs-code>"
# Sanctions screening (screen buyer/consignee)
mcp__claude_ai_CLEO_LEGAL_API__sanctions/search
entity_name: "<buyer-name>"
country: "<buyer-country>"
# Search for trade-related signals
mcp__claude_ai_Cleo_Insight__search_signals(q="import restriction", limit=25)
mcp__claude_ai_Cleo_Insight__search_signals(q="export control", limit=25)
```
## Document Selection Flow
```dot
digraph {
rankdir=TB; node [shape=box style=rounded fontsize=10];