# Send Flight Tracker to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "copey-flight-tracker",
    "name": "Flight Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/copey02/copey-flight-tracker",
    "canonicalUrl": "https://clawhub.ai/copey02/copey-flight-tracker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/copey-flight-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=copey-flight-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api-setup.md",
      "scripts/track_flight.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "copey-flight-tracker",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T03:27:57.031Z",
      "expiresAt": "2026-05-07T03:27:57.031Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=copey-flight-tracker",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=copey-flight-tracker",
        "contentDisposition": "attachment; filename=\"copey-flight-tracker-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "copey-flight-tracker"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/copey-flight-tracker"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/copey-flight-tracker",
    "downloadUrl": "https://openagent3.xyz/downloads/copey-flight-tracker",
    "agentUrl": "https://openagent3.xyz/skills/copey-flight-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/copey-flight-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/copey-flight-tracker/agent.md"
  }
}
```
## Documentation

### Flight Tracker

Track any flight worldwide using AviationStack API and display in a clean, Flighty-style format.

### Quick Start

Track a flight by its IATA code:

scripts/track_flight.py AA100
scripts/track_flight.py UA2402
scripts/track_flight.py BA123

### First-Time Setup

Before using this skill, you need an API key (one-time setup):

Get a free API key at https://aviationstack.com/signup/free (100 requests/month)
Set environment variable:
export AVIATIONSTACK_API_KEY='your-key-here'


Install dependencies:
pip3 install requests

For detailed setup instructions, see api-setup.md.

### Output Format

The skill displays flight information in a clean, readable format with:

✈️ Airline and flight number
🛩️ Aircraft type and registration
🛫 Departure airport, terminal, gate, times
🛬 Arrival airport, terminal, gate, times
📊 Flight status with visual indicators
⏱️ Delay calculations (if applicable)
🌐 Live position, altitude, speed (when airborne)

Status indicators:

🟢 Active/Airborne/En-route
✅ Landed/Arrived
🟡 Scheduled
🟠 Delayed
🔴 Cancelled

### Advanced Usage

Get raw JSON data:

scripts/track_flight.py AA100 --json

Check help:

scripts/track_flight.py --help

### Workflow

When a user asks to track a flight:

Extract the flight number from the request
Run the tracking script with the flight number
Present the formatted output to the user
If data is needed for further processing, use --json flag

### Flight Number Formats

Accept IATA flight codes:

AA100 (American Airlines)
UA2402 (United)
BA123 (British Airways)
DL456 (Delta)

The script automatically converts to uppercase and handles the lookup.

### Error Handling

The script handles common errors:

Missing API key → Shows setup instructions
Flight not found → Suggests verification
API errors → Displays error message
Rate limit exceeded → Indicates limit reached

### API Limits

Free tier: 100 requests/month. Track usage to stay within limits. For heavy usage, consider upgrading or alternative APIs (see references/api-setup.md).

### Notes

Uses AviationStack free tier (no HTTPS on free plan)
Real-time data updated frequently
Historical flight data available
Worldwide coverage (250+ countries, 13,000+ airlines)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: copey02
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T03:27:57.031Z
- Expires at: 2026-05-07T03:27:57.031Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/copey-flight-tracker)
- [Send to Agent page](https://openagent3.xyz/skills/copey-flight-tracker/agent)
- [JSON manifest](https://openagent3.xyz/skills/copey-flight-tracker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/copey-flight-tracker/agent.md)
- [Download page](https://openagent3.xyz/downloads/copey-flight-tracker)