From sundial-org-awesome-openclaw-skills-4
Tracks packages and manages deliveries via Parcel API. Lists recent/active deliveries, adds new ones with tracking/carrier/description, lists carriers. Requires PARCEL_API_KEY.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Interact with the Parcel app API to track packages and add new deliveries.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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"