技能详情(站内镜像,无评论)
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 165 · 1 current installs · 1 all-time installs
⭐ 0
安装量(当前) 1
🛡 VirusTotal :良性 · OpenClaw :可疑
Package:aiwithabidi/shippo
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :可疑
OpenClaw 评估
The skill generally matches its Shippo purpose and only needs a SHIPPO_API_TOKEN, but the included script has implementation bugs and quietly reads a workspace .env file (UNDOCUMENTED), so the package is internally inconsistent and warrants caution.
目的
Name/description (Shippo API actions) match the required credential (SHIPPO_API_TOKEN) and the script calls https://api.goshippo.com. The declared primaryEnv is appropriate for the stated purpose.
说明范围
SKILL.md instructs only running the provided CLI. However, the script attempts to read a .env file under WORKSPACE or ~/.openclaw/workspace if SHIPPO_API_TOKEN is absent — this file-read behavior is not documented in SKILL.md or requires.config and expands the agent's runtime scope unexpectedly.
安装机制
No install spec is present (instruction-only with a bundled script). No remote downloads or package installs are performed.
证书
Declared env requirement is only SHIPPO_API_TOKEN (reasonable). The script additionally reads WORKSPACE and ~/.openclaw/workspace/.env to source credentials if the env var is missing — accessing a local .env is not declared and could expose other secrets in that file if present.
持久
Skill is not always-enabled and does not request elevated platform privileges or modify other skills. It performs only outbound calls to the Shippo API with the provided token.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Shippo」。简介:Shippo — shipping labels, rates comparison, package tracking, address validatio…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aiwithabidi/shippo/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: shippo
description: "Shippo — shipping labels, rates comparison, package tracking, address validation, and returns."
homepage: https://www.agxntsix.ai
license: MIT
compatibility: Python 3.10+ (stdlib only — no dependencies)
metadata: {"openclaw": {"emoji": "📦", "requires": {"env": ["SHIPPO_API_TOKEN"]}, "primaryEnv": "SHIPPO_API_TOKEN", "homepage": "https://www.agxntsix.ai"}}
---
# 📦 Shippo
Shippo — shipping labels, rates comparison, package tracking, address validation, and returns.
## Requirements
| Variable | Required | Description |
|----------|----------|-------------|
| `SHIPPO_API_TOKEN` | ✅ | Shippo API token |
## Quick Start
```bash
# Create shipment & get rates
python3 {{baseDir}}/scripts/shippo.py create-shipment --from "JSON address" --to "JSON address" --parcel "JSON"
# List shipments
python3 {{baseDir}}/scripts/shippo.py list-shipments --results "25" --page "1"
# Get shipment details
python3 {{baseDir}}/scripts/shippo.py get-shipment <id>
# Get rates for shipment
python3 {{baseDir}}/scripts/shippo.py get-rates <id>
# Purchase shipping label
python3 {{baseDir}}/scripts/shippo.py purchase-label --rate <value>
# List label transactions
python3 {{baseDir}}/scripts/shippo.py list-transactions --results "25"
# Get label/transaction details
python3 {{baseDir}}/scripts/shippo.py get-transaction <id>
# Track a package
python3 {{baseDir}}/scripts/shippo.py track-package --carrier <value> --tracking-number <value>
# Validate an address
python3 {{baseDir}}/scripts/shippo.py validate-address --name <value> --street1 <value> --city <value> --state <value> --zip <value> --country "US"
# List saved parcels
python3 {{baseDir}}/scripts/shippo.py list-parcels
# Create a parcel template
python3 {{baseDir}}/scripts/shippo.py create-parcel --length <value> --width <value> --height <value> --weight <value>
# Create return shipment
python3 {{baseDir}}/scripts/shippo.py create-return --from "JSON" --to "JSON" --parcel "JSON" --is-return "true"
# List carrier accounts
python3 {{baseDir}}/scripts/shippo.py list-carriers
```
## Output Format
All commands output JSON by default.
## Script Reference
| Script | Description |
|--------|-------------|
| `{baseDir}/scripts/shippo.py` | Main CLI — all commands in one tool |
## Credits
Built by [M. Abidi](https://www.linkedin.com/in/mohammad-ali-abidi) | [agxntsix.ai](https://www.agxntsix.ai)
[YouTube](https://youtube.com/@aiwithabidi) | [GitHub](https://github.com/aiwithabidi)
Part of the **AgxntSix Skill Suite** for OpenClaw agents.
📅 **Need help setting up OpenClaw for your business?** [Book a free consultation](https://cal.com/agxntsix/abidi-openclaw)