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

ship发布交付

Agent Skill

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

总安装

15,912

周安装

650

GitHub Stars

公开资料未说明

下载量

5,096
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install ship

简介

ship 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于电子商务卖家、进口商、出口商以及任何实体货物运输者的运输和物流智能系统。
  • 通过 clawhub 安装,命令为 openclaw skills install ship。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • ship 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
ship
description
>

Ship — Complete Logistics Intelligence System

What This Skill Does

Shipping is where ecommerce businesses win or lose. It is often the largest variable cost, the most common source of customer complaints, and the operational function most founders understand least when they start. Carrier pricing is opaque. Customs rules are complex. Fulfillment decisions have long-term strategic consequences that are not obvious at the time they are made.

This skill makes logistics decisions intelligent rather than reactive.


Core Principle

Every shipping decision is a cost-service trade-off made under uncertainty. The optimal decision depends on what you are shipping, where it is going, what your customer expects, and what your margin can absorb. The skill that produces consistently good logistics decisions is the ability to model that trade-off quickly and accurately — not loyalty to a single carrier or a single approach.


Workflow

Step 1: Classify the Shipping Scenario

SHIPPING_SCENARIOS = {
  "domestic_parcel": {
    "key_variables": ["weight", "dimensions", "speed_required", "value", "volume"],
    "carrier_options": ["USPS", "UPS", "FedEx", "DHL", "regional_carriers"],
    "optimization":    "Rate shop across carriers — prices vary 20-40% for identical shipments"
  },
  "international": {
    "key_variables": ["destination_country", "HS_code", "declared_value", "incoterms"],
    "complexity":    "Customs documentation, duty calculation, prohibited items",
    "options":       ["postal_networks", "express_couriers", "freight_forwarders"]
  },
  "freight": {
    "types":         ["LTL (less than truckload)", "FTL (full truckload)", "ocean", "air"],
    "when_to_use":   "Shipments over 150lbs / 68kg typically ship cheaper as freight",
    "key_terms":     ["pallet", "BOL", "freight_class", "accessorial_charges"]
  },
  "fulfillment": {
    "options":       ["self_fulfillment", "3PL", "FBA", "dropshipping"],
    "decision_factors": ["volume", "SKU_count", "growth_rate", "capital", "control_needs"]
  },
  "returns": {
    "cost_reality":  "Returns cost 2-3x the original shipping cost when fully accounted",
    "policy_design": "Return policy affects conversion rate and return rate simultaneously"
  }
}

Step 2: Carrier Selection Framework

CARRIER_COMPARISON = {
  "rate_factors": {
    "dimensional_weight": """
      DIM weight = (L x W x H) / DIM_divisor
      # USPS divisor: 166 (domestic), UPS/FedEx: 139
      # Carrier charges higher of actual weight vs DIM weight
      # Lightweight but bulky products pay DIM weight premium
    """,
    "zones":         "Distance-based pricing — more zones = higher cost",
    "surcharges":    ["residential_delivery", "fuel_surcharge", "signature_required",
                      "address_correction", "Saturday_delivery", "oversize"]
  },

  "carrier_strengths": {
    "USPS": {
      "best_for":    "Under 1lb, rural delivery, PO Boxes, residential",
      "advantage":   "Flat rate options, no residential surcharge, cheapest for small/light",
      "weakness":    "Limited tracking granularity, slower for larger packages"
    },
    "UPS": {
      "best_for":    "B2B commercial delivery, heavier packages, international",
      "advantage":   "Reliable for commercial addresses, strong guarantee program",
      "weakness":    "Residential surcharges, expensive for small packages"
    },
    "FedEx": {
      "best_for":    "Time-critical shipments, overnight, express international",
      "advantage":   "Strongest overnight network, reliable service guarantees",
      "weakness":    "Premium pricing, aggressive DIM weight application"
    },
    "DHL": {
      "best_for":    "International shipments especially to Europe and Asia",
      "advantage":   "Largest international network, often fastest international option",
      "weakness":    "Limited domestic US network, premium pricing"
    }
  },

  "rate_shopping_approach": """
    def find_best_rate(shipment):
        weight = max(actual_weight, dimensional_weight(shipment))
        quotes = []
        for carrier in [USPS, UPS, FedEx, DHL, regional]:
            quote = carrier.rate(
                origin=shipment.origin,
                destination=shipment.destination,
                weight=weight,
                service_level=shipment.required_speed
            )
            quotes.append({carrier: quote + estimate_surcharges(carrier, shipment)})
        return sorted(quotes, key=lambda x: x.total_cost)
  """
}

Step 3: International Shipping

INTERNATIONAL_FRAMEWORK = {
  "documentation": {
    "commercial_invoice": {
      "required_fields": ["Shipper and consignee details",
                           "HS code for each item",
                           "Accurate description — no generic terms",
                           "Quantity and unit value",
                           "Total value and currency",
                           "Country of origin",
                           "Incoterms"],
      "common_mistakes":  ["Undervaluing to reduce duty — customs fraud, serious penalties",
                            "Vague descriptions like 'gift' or 'sample'",
                            "Missing HS codes"]
    }
  },

  "duty_and_tax_calculation": {
    "formula": """
      CIF = product_value + shipping_cost + insurance
      import_duty = CIF * duty_rate(HS_code, destination_country)
      import_tax = (CIF + import_duty) * VAT_rate(destination_country)
      total_landed = CIF + import_duty + import_tax + customs_processing_fee
    """,
    "de_minimis": "Many countries exempt low-value shipments from duty — check threshold",
    "DDU_vs_DDP": {
      "DDU": "Delivered Duty Unpaid — customer pays duty on arrival. Common source of complaints.",
      "DDP": "Delivered Duty Paid — you pay duty upfront. Better customer experience, more complex."
    }
  },

  "prohibited_items": "Check destination country restrictions before shipping — not all carriers
                        publish complete lists. Lithium batteries, cosmetics, food, plants,
                        and medications all have specific rules."
}

Step 4: Fulfillment Strategy

FULFILLMENT_DECISION = {
  "self_fulfillment": {
    "when_appropriate": "Under 50-100 orders per day, high SKU complexity, early stage",
    "true_cost":        "Include: labor time, packaging materials, shipping supplies,
                          space cost, error rate, opportunity cost of founder time",
    "system_needs":     ["Shipping software for rate comparison and label printing",
                          "Inventory management",
                          "Order management connected to store"]
  },

  "third_party_logistics": {
    "when_to_consider":  "100+ orders per day, or when fulfillment consumes founder time",
    "cost_components":   ["Receiving fee per unit inbound",
                           "Storage fee per cubic foot per month",
                           "Pick and pack fee per order",
                           "Shipping cost (often discounted vs retail)"],
    "evaluation_criteria": ["Location relative to customer base",
                              "Technology integration with your platform",
                              "Minimum volume requirements",
                              "Specialty capabilities if needed"]
  },

  "FBA": {
    "advantages":  "Prime badge, Amazon handles everything, customer trust",
    "disadvantages": "Inventory trapped if issues arise, limited brand control,
                      long-term storage fees, commingling risk",
    "cost_reality": "FBA fees plus storage often total 30-40% of revenue for many products"
  }
}

Step 5: Claims and Exceptions

CLAIMS_FRAMEWORK = {
  "lost_shipment": {
    "timeline":     "File claim after carrier trace period — typically 7-15 business days",
    "documentation": ["Tracking number and full shipment details",
                       "Proof of value — invoice or purchase receipt",
                       "Proof of shipment — carrier receipt"],
    "coverage":     "Carriers cover declared value up to their free coverage limit.
                     Declared value insurance above that limit must be purchased."
  },

  "damaged_shipment": {
    "critical":     "Document damage immediately — photograph before unpacking fully",
    "process":      ["Keep all original packaging",
                     "Photograph damage from multiple angles",
                     "File claim within carrier deadline — usually 24-48 hours for visible damage",
                     "Request inspection if carrier requires it"]
  },

  "packaging_standards": {
    "principle":    "Carriers will deny claims if packaging is deemed inadequate",
    "rules":        ["Box must be structurally sound — no reusing damaged boxes",
                     "2 inches of cushioning material on all sides",
                     "Void fill prevents movement inside box",
                     "Double box for fragile items",
                     "Mark fragile — does not guarantee handling but supports claim"]
  }
}

Shipping Cost Optimization

COST_OPTIMIZATION = {
  "volume_discounts":   "Carrier rates drop significantly at volume thresholds — negotiate early",
  "cubic_pricing":      "USPS offers cubic pricing for dense packages — often 40-60% cheaper",
  "zone_skipping":      "Ship in bulk to regional hub, inject into local network for last mile",
  "packaging_optimization": "Reducing package dimensions by 1 inch can change DIM weight tier",
  "negotiation":        "FedEx and UPS negotiate — even 100 packages per week has leverage",
  "multi_carrier":      "Rate shop every shipment — no carrier is cheapest for all scenarios"
}

Quality Check Before Delivering

  • [ ] Dimensional weight calculated for relevant shipments
  • [ ] All surcharges included in carrier comparison — not just base rate
  • [ ] International documentation checklist provided
  • [ ] Duty and tax calculation includes all components
  • [ ] Fulfillment recommendation based on actual volume and cost analysis
  • [ ] Claims guidance specific to carrier and damage type
  • [ ] Insurance coverage assessed against shipment value

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.98%
按下载量换算4,687

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills