Awesome-openclaw-skills parcel-package-tracking
Track and add deliveries via Parcel API.
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/parcel-package-tracking" ~/.claude/skills/sundial-org-awesome-openclaw-skills-parcel-package-tracking && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/parcel-package-tracking" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-parcel-package-tracking && rm -rf "$T"
manifest:
skills/parcel-package-tracking/SKILL.mdsource content
Parcel
Interact with the Parcel app API to track packages and add new deliveries.
Configuration
This skill requires the
PARCEL_API_KEY environment variable.
Get your key from web.parcelapp.net.
Tool: parcel
parcelControl the Parcel API CLI.
Parameters
(required): One ofaction
,list
,add
.carriers
: Formode
, filter mode (list
oractive
). Defaultrecent
.recent
: Fortracking
, the tracking number.add
: Forcarrier
, the carrier code (e.g.,add
,ups
,usps
).fedex
: Fordescription
, a description of the package.add
: Fornotify
, boolean to send push confirmation.add
: Forsearch
, search string.carriers
Usage
List Deliveries:
# List recent deliveries node ~/.clawdbot/skills/parcel/parcel-api.js list # List active deliveries node ~/.clawdbot/skills/parcel/parcel-api.js list --mode=active
Add Delivery:
node ~/.clawdbot/skills/parcel/parcel-api.js add \ --tracking "1Z1234567890" \ --carrier "ups" \ --description "New Shoes" \ --notify
List Carriers:
node ~/.clawdbot/skills/parcel/parcel-api.js carriers "ups"