agentsclimarketplace

Skill logistics shipping

Skill zavora-ai/skill-logistics-shipping

Multi-carrier logistics skill for AI agents — shipments, rate comparison, tracking, and route optimization via mcp-logistics

Install
npx -y skills add zavora-ai/skill-logistics-shipping

Assembled 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:

  1. validate_address(address) — verify destination is deliverable
  2. get_rates(from, to, weight, dimensions) — get carrier options
  3. compare_rates(rates) — rank by cost/speed/reliability
  4. Present options to user (cheapest vs. fastest)
  5. book_rate(rate_id) — book selected carrier
  6. generate_label(shipment_id) — create shipping label
  7. create_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:

  1. track_shipment(tracking_number) — current status
  2. get_tracking_events(tracking_number) — full event history
  3. get_eta(tracking_number) — estimated delivery

WORKFLOW 3: Rate Comparison

Tool sequence:

  1. list_carriers — available carriers
  2. get_rates(from, to, weight, dimensions) — all options
  3. compare_rates — rank by cost, speed, reliability

Present as:

CarrierServiceCostETAReliability

WORKFLOW 4: Route Optimization

Tool sequence:

  1. optimize_route(stops: [...]) — optimal order for multiple deliveries
  2. get_distance(from, to) — distance between points
  3. get_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.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.