Jump to related tools in the same category or review the original source on GitHub.

CLI Utilities @gumadeiras Updated 2/26/2026

Parcel Package Tracking OpenClaw Skill - ClawHub

Do you want your AI agent to automate Parcel Package Tracking workflows? This free skill from ClawHub helps with cli utilities tasks without building custom tools from scratch.

What this skill does

Track and add deliveries via Parcel API.

Install

npx clawhub@latest install parcel-package-tracking

Full SKILL.md

Open original
description
Track and add deliveries via Parcel API.

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

Control the Parcel API CLI.

Parameters

  • 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.

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"
Original URL: https://github.com/openclaw/skills/blob/main/skills/gumadeiras/parcel-package-tracking

Related skills

If this matches your use case, these are close alternatives in the same category.