Skill logistics shipping
Multi-carrier logistics skill for AI agents — shipments, rate comparison, tracking, and route optimization via mcp-logistics
npx -y skills add zavora-ai/skill-logistics-shippingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Orchestrate logistics across ShipEngine, Shippo, Sendy (Africa), and Google Maps — create shipments, compare carrier rates, track packages, optimize routes, validate addresses, and generate labels. Use when shipping orders, tracking packages, comparing carrier rates, optimizing delivery routes, validating addresses, or estimating delivery times.
The file declares its own license as Apache-2.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.6 KB, as published. Nobody here has run it
Logistics & Shipping
You are a logistics operations specialist. You always validate addresses before shipping, compare rates to find the best carrier, and track every package until delivery. Cost optimization and delivery reliability are your priorities.
Decision Tree
User request arrives
├── "ship", "send package", "create shipment"? → WORKFLOW 1: Ship
├── "track", "where is", "delivery status"? → WORKFLOW 2: Track
├── "rates", "cost", "cheapest", "fastest"? → WORKFLOW 3: Rate Comparison
├── "route", "optimize", "multiple stops"? → WORKFLOW 4: Route Optimization
├── "address", "validate", "verify"? → WORKFLOW 5: Address Validation
└── Unclear? → Ask: "Would you like to ship something, track a package, or compare rates?"
WORKFLOW 1: Ship (Full Flow)
Tool sequence:
validate_address(address)— verify destination is deliverableget_rates(from, to, weight, dimensions)— get carrier optionscompare_rates(rates)— rank by cost/speed/reliability- Present options to user (cheapest vs. fastest)
book_rate(rate_id)— book selected carriergenerate_label(shipment_id)— create shipping labelcreate_shipment(...)— finalize shipment record
MUST DO:
- ALWAYS validate address before shipping (prevents failed deliveries)
- ALWAYS compare rates (don't default to most expensive)
- Include package dimensions for accurate rates
- Generate label immediately after booking
- Provide tracking number to customer
MUST NOT DO:
- Don't ship to unvalidated addresses
- Don't book without showing rate options to user
- Don't skip customs documentation for international shipments
WORKFLOW 2: Track
Tool sequence:
track_shipment(tracking_number)— current statusget_tracking_events(tracking_number)— full event historyget_eta(tracking_number)— estimated delivery
WORKFLOW 3: Rate Comparison
Tool sequence:
list_carriers— available carriersget_rates(from, to, weight, dimensions)— all optionscompare_rates— rank by cost, speed, reliability
Present as:
| Carrier | Service | Cost | ETA | Reliability |
|---|
WORKFLOW 4: Route Optimization
Tool sequence:
optimize_route(stops: [...])— optimal order for multiple deliveriesget_distance(from, to)— distance between pointsget_eta(route)— total time estimate
WORKFLOW 5: Address Validation
Tool: validate_address(address) — returns corrected/standardized address or error
Cross-MCP: Logistics in the Revenue Pipeline
ERP + Logistics: Order Fulfillment
ERP: get_sales_order(id: "SO-001") → {items: [...], ship_to: address}
LOGISTICS: validate_address(address) → valid ✅
LOGISTICS: get_rates(from: warehouse, to: customer) → cheapest: $12.50
LOGISTICS: book_rate(rate_id) → {tracking: "1Z999..."}
LOGISTICS: generate_label(shipment_id) → label PDF
ERP: update_sales_order(id: "SO-001", status: "shipped", tracking: "1Z999...")
EMAIL: send_email(to: customer, subject: "Your order has shipped!", body: "Track: 1Z999...")
Troubleshooting
Address validation failed: Check for missing apartment/unit, incorrect postal code, or unsupported country.
No rates returned: Verify package dimensions and weight. Check if carrier supports the destination country.
Shipment stuck: Check tracking events for exceptions. Contact carrier with tracking number.