Parcel Tracking logo

Parcel Tracking

CommunityPopular
jezweb
parcel-tracking

Track parcels and check delivery status for Australian and international couriers. Searches Gmail for dispatch/shipping emails and provides tracking links for all major Australian couriers including AusPost, StarTrack, Aramex, CouriersPlease, Sendle, Toll, Team Global Express, DHL, FedEx, TNT, Hunter Express, Border Express, Direct Freight Express, and UPS. Triggers: 'where is my parcel', 'track my order', 'has my package arrived', 'tracking status', 'check tracking', 'where is my delivery'.

Overview

Publisherjezweb
Repositoryclaude-skills
Skill nameparcel-tracking
Stars
1K
Forks
102
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by jezweb on GitHub. Read the source before you install it.

Installation

Install the Parcel Tracking AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/jezweb/claude-skills.git /tmp/claude-skills
mkdir -p .claude/skills
cp -r /tmp/claude-skills/plugins/integrations/skills/parcel-tracking .claude/skills/parcel-tracking
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Parcel Tracking in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Parcel Tracking on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Parcel Tracking is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Parcel Tracking

Find tracking numbers from Gmail dispatch emails and check delivery status for Australian and international couriers.

When to Use

  • "Where's my parcel / package / order?"
  • "Has my [product] arrived / shipped yet?"
  • "Track my order from [store]"
  • "What's the status of my delivery?"
  • "Do I have a tracking number for [item]?"
  • User pastes or mentions a tracking number
  • "Check the StarTrack / AusPost / Aramex / Toll tracking"

Workflow

Step 1: Find the Tracking Number

If the user already provided a tracking number, skip to Step 2.

Otherwise, search Gmail for dispatch emails. Look for recent messages matching:

dispatched OR shipped OR "tracking number" OR "consignment number" newer_than:30d

For a specific store or order, narrow the search:

from:mwave.com.au dispatched
from:amazon.com.au shipped

Read the email body and extract:

  • Tracking / consignment number
  • Carrier name
  • Order number
  • Dispatch date
  • Delivery notes (signature required, etc.)

Gmail access: Use whatever Gmail tool is available (Gmail MCP, gws CLI gws gmail, or ask the user to check manually and paste the tracking number).

Step 2: Identify the Carrier and Build the Tracking Link

Use the table below to identify the carrier from the tracking number format or dispatch email, then build the direct tracking link where possible.

CarrierNumber format / exampleDirect tracking link
AusPost / StarTrackAlphanumeric, e.g. 36VJ65064757, JD123456789AUhttps://auspost.com.au/mypost/track/details/{NUMBER}
Sendle6-8 alphanumeric chars, e.g. SNFJJ3https://track.sendle.com/tracking?ref={NUMBER}
DHL10-12 digits, e.g. 1234567890https://www.dhl.com/au-en/home/tracking.html?tracking-id={NUMBER}
FedEx12-15 digits, or AU+10 digitshttps://www.fedex.com/apps/fedextrack/?tracknumbers={NUMBER}
TNT (now FedEx)9 digits, e.g. 907384999https://www.tnt.com/express/en_au/site/shipping-tools/tracking.html (paste)
UPSStarts with 1Z, 18 charshttps://www.ups.com/track?tracknum={NUMBER}
Aramex (formerly Fastway)Numeric label number, varieshttps://www.aramex.com.au/tools/track (paste)
CouriersPleaseNumeric or CP prefixhttps://www.couriersplease.com.au/tools-track (paste)
Toll / MyTollNumeric consignment, varieshttps://mytoll.com/ (paste)
Team Global ExpressNumeric, varieshttps://myteamge.com/ (paste)
Hunter ExpressAlphanumeric, e.g. AIM478695https://www.hunterexpress.com.au/tracking/ (paste)
Border ExpressNumeric, varieshttps://www.borderexpress.com.au/tracking/ (paste)
Direct Freight ExpressNumeric consignmenthttps://www.directfreight.com.au/ConsignmentStatus.aspx (paste)

Deep-links (tracking number in URL): AusPost/StarTrack, Sendle, DHL, FedEx, UPS.

Form-based (provide link + number separately): Aramex, CouriersPlease, Toll, Team Global Express, Hunter Express, Border Express, Direct Freight Express, TNT.

If carrier is unknown: Default to AusPost (most common in Australia), or ask the user to check their dispatch email.

Step 3: Try to Get Live Status

If web scraping tools are available, try scraping the tracking page:

url: {direct tracking URL}
wait_for: 3000 (many tracking pages are JS-rendered)

Many tracking pages return limited data when scraped. AusPost is particularly JS-heavy. If scraping returns useful status info, include it. If not, just provide the direct link. Don't mention failed scrapes to the user.

If browser automation is available (Chrome MCP, Playwright), navigate to the tracking page and read the status directly.

If no scraping/browser tools are available, skip this step and provide the link.

Step 4: Present Results

Always include:

  1. Current status (from scrape if available, or from dispatch email)
  2. Direct tracking link (always)
  3. Expected delivery window (if known)
  4. Delivery notes (signature required, card-to-collect, etc.)
Example: Carrier with Deep Link
Order IN03069870 — Mac mini x 2
Dispatched by Mwave via AusPost/StarTrack on 17 Mar

Tracking: 36VJ65064757
Status: In transit — processed at Sydney sorting facility
Expected: Thu 19 – Fri 20 Mar
Note: Signature required. If no one home, parcel goes to local post office.

Track live: https://auspost.com.au/mypost/track/details/36VJ65064757
Example: Form-Based Carrier
Order 12345 — [item]
Dispatched via Toll on 15 Mar

Consignment: TXY9876543
Expected: 3-5 business days

Track at: https://mytoll.com/
Paste consignment number: TXY9876543

Handling Multiple Parcels

Search broadly:

(dispatched OR shipped OR "on its way" OR "tracking number") newer_than:30d

Present each parcel as a separate block.

Carrier Contact Numbers (Australia)

CarrierPhoneHours (AEST/AEDT)
AusPost / StarTrack eParcel13 13 18Mon-Fri 8am-6pm
StarTrack (account customers)13 23 45Business hours
CouriersPlease13 00 36 16Business hours
Toll Priority13 15 31Mon-Fri 7am-10pm, Sat-Sun 7am-5pm
Toll IPEC1300 865 547Business hours
Hunter Express02 9780 4099Business hours
DHL13 14 06Business hours
FedEx / TNT13 26 10Business hours
UPS13 26 77Business hours
AramexSee aramex.com.au/contact-usBusiness hours
SendleOnline only (support form)
Team Global Expressmyteamge.com contact form

Carrier-Specific Notes

AusPost / StarTrack

  • URL format: https://auspost.com.au/mypost/track/details/{TRACKING_NUMBER} — tracking number goes directly in the path
  • Sparse tracking events after Sydney (Lidcombe/Chullora) processing is normal for regional deliveries
  • Allow up to 24 hours after dispatch for tracking to appear
  • Signature-required parcels go to local post office if undelivered

Sendle

  • Sendle halted all parcel pick-ups in early 2025 and directed customers to Aramex. Existing Sendle shipments still trackable.
  • Deep link: https://track.sendle.com/tracking?ref={SENDLE_REFERENCE}

Toll vs Team Global Express

  • Toll Global Express was sold and rebranded as Team Global Express — different tracking system
  • Domestic Toll parcels (IPEC, Priority, Express) still use MyToll

Tool Flexibility

This skill works with whatever tools are available:

ToolWhat it enables
Gmail access (any MCP or CLI)Search dispatch emails for tracking numbers
Web scraper (any MCP)Attempt live status from tracking pages
Browser automation (Chrome MCP, Playwright)Navigate tracking pages for JS-rendered status
None of the aboveUser provides tracking number, skill provides the correct link

Frequently asked questions

What does the Parcel Tracking AI skill do?

Track parcels and check delivery status for Australian and international couriers. Searches Gmail for dispatch/shipping emails and provides tracking links for all major Australian couriers including AusPost, StarTrack, Aramex, CouriersPlease, Sendle, Toll, Team Global Express, DHL, FedEx, TNT, Hunter Express, Border Express, Direct Freight Express, and UPS. Triggers: 'where is my parcel', 'track my order', 'has my package arrived', 'tracking status', 'check tracking', 'where is my delivery'.

Why use Parcel Tracking on TypingMind?

Because you install it once and use it with any model. Parcel Tracking is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Parcel Tracking in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/jezweb/claude-skills/tree/main/plugins/integrations/skills/parcel-tracking. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Parcel Tracking?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Parcel Tracking?

As many as you like. As long as a model supports skills, you can use Parcel Tracking with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Parcel Tracking AI skill free?

Yes. It is published on GitHub by jezweb under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇