From sundial-org-awesome-openclaw-skills-4
Tracks packages and adds deliveries via the Parcel API. Lists recent/active deliveries, adds new packages with tracking number and carrier, and searches carriers.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:parcel-package-trackingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Interact with the Parcel app API to track packages and add new deliveries.
Interact with the Parcel app API to track packages and add new deliveries.
This skill requires the PARCEL_API_KEY environment variable.
Get your key from web.parcelapp.net.
parcelControl the Parcel API CLI.
action (required): One of list, add, carriers.mode: For list, filter mode (active or recent). Default recent.tracking: For add, the tracking number.carrier: For add, the carrier code (e.g., ups, usps, fedex).description: For add, a description of the package.notify: For add, boolean to send push confirmation.search: For carriers, search string.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"
npx claudepluginhub sundial-org/awesome-openclaw-skillsSearches Gmail for dispatch emails to extract tracking numbers and generates direct tracking links for Australian couriers like AusPost, StarTrack, Sendle, Toll and international ones like DHL, FedEx, UPS.
Tracks parcels via the 17TRACK API using a local SQLite database. Supports polling and optional webhook ingestion for updates.
Track CJ대한통운 and 우체국 parcels by invoice number using official endpoints. Workflow structured around carrier adapter for adding more couriers.