{
  "schemaVersion": "1.0",
  "item": {
    "slug": "flight-search",
    "name": "Flight Search",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/awlevin/flight-search",
    "canonicalUrl": "https://clawhub.ai/awlevin/flight-search",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/flight-search",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=flight-search",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "AGENTS.md",
      "CHANGELOG.md",
      "README.md",
      "SKILL.md",
      "flight_search/__init__.py",
      "flight_search/cli.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/flight-search"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/flight-search",
    "agentPageUrl": "https://openagent3.xyz/skills/flight-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/flight-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/flight-search/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Flight Search",
        "body": "Search Google Flights from the command line. Get prices, times, and airlines - no API key needed.\n\nBuilt on fast-flights."
      },
      {
        "title": "Quick Start",
        "body": "# one-off search (no install needed)\nuvx flight-search DEN LAX --date 2026-03-01\n\n# or install globally\nuv tool install flight-search\nflight-search JFK LHR --date 2026-06-15 --return 2026-06-22"
      },
      {
        "title": "Options",
        "body": "positional arguments:\n  origin                Origin airport code (e.g., DEN, LAX, JFK)\n  destination           Destination airport code\n\noptions:\n  --date, -d            Departure date (YYYY-MM-DD) [required]\n  --return, -r          Return date for round trips (YYYY-MM-DD)\n  --adults, -a          Number of adults (default: 1)\n  --children, -c        Number of children (default: 0)\n  --class, -C           Seat class: economy, premium-economy, business, first\n  --limit, -l           Max results (default: 10)\n  --output, -o          Output format: text or json (default: text)"
      },
      {
        "title": "Examples",
        "body": "# One-way flight\nflight-search DEN LAX --date 2026-03-01\n\n# Round trip with passengers\nflight-search JFK LHR --date 2026-06-15 --return 2026-06-22 --adults 2\n\n# Business class\nflight-search SFO NRT --date 2026-04-01 --class business\n\n# JSON output for parsing\nflight-search ORD CDG --date 2026-05-01 --output json"
      },
      {
        "title": "Example Output",
        "body": "✈️  DEN → LAX\n   One way · 2026-03-01\n   Prices are currently: typical\n\n──────────────────────────────────────────────────\n   Frontier ⭐ BEST\n   🕐 10:43 PM → 12:30 AM +1\n   ⏱️  2 hr 47 min\n   ✅ Nonstop\n   💰 $84\n\n──────────────────────────────────────────────────\n   United ⭐ BEST\n   🕐 5:33 PM → 7:13 PM\n   ⏱️  2 hr 40 min\n   ✅ Nonstop\n   💰 $139"
      },
      {
        "title": "JSON Output",
        "body": "Returns structured data:\n\n{\n  \"origin\": \"DEN\",\n  \"destination\": \"LAX\",\n  \"date\": \"2026-03-01\",\n  \"current_price\": \"typical\",\n  \"flights\": [\n    {\n      \"airline\": \"Frontier\",\n      \"departure_time\": \"10:43 PM\",\n      \"arrival_time\": \"12:30 AM\",\n      \"duration\": \"2 hr 47 min\",\n      \"stops\": 0,\n      \"price\": 84,\n      \"is_best\": true\n    }\n  ]\n}"
      },
      {
        "title": "Links",
        "body": "PyPI\nGitHub"
      }
    ],
    "body": "Flight Search\n\nSearch Google Flights from the command line. Get prices, times, and airlines - no API key needed.\n\nBuilt on fast-flights.\n\nQuick Start\n# one-off search (no install needed)\nuvx flight-search DEN LAX --date 2026-03-01\n\n# or install globally\nuv tool install flight-search\nflight-search JFK LHR --date 2026-06-15 --return 2026-06-22\n\nOptions\npositional arguments:\n  origin                Origin airport code (e.g., DEN, LAX, JFK)\n  destination           Destination airport code\n\noptions:\n  --date, -d            Departure date (YYYY-MM-DD) [required]\n  --return, -r          Return date for round trips (YYYY-MM-DD)\n  --adults, -a          Number of adults (default: 1)\n  --children, -c        Number of children (default: 0)\n  --class, -C           Seat class: economy, premium-economy, business, first\n  --limit, -l           Max results (default: 10)\n  --output, -o          Output format: text or json (default: text)\n\nExamples\n# One-way flight\nflight-search DEN LAX --date 2026-03-01\n\n# Round trip with passengers\nflight-search JFK LHR --date 2026-06-15 --return 2026-06-22 --adults 2\n\n# Business class\nflight-search SFO NRT --date 2026-04-01 --class business\n\n# JSON output for parsing\nflight-search ORD CDG --date 2026-05-01 --output json\n\nExample Output\n✈️  DEN → LAX\n   One way · 2026-03-01\n   Prices are currently: typical\n\n──────────────────────────────────────────────────\n   Frontier ⭐ BEST\n   🕐 10:43 PM → 12:30 AM +1\n   ⏱️  2 hr 47 min\n   ✅ Nonstop\n   💰 $84\n\n──────────────────────────────────────────────────\n   United ⭐ BEST\n   🕐 5:33 PM → 7:13 PM\n   ⏱️  2 hr 40 min\n   ✅ Nonstop\n   💰 $139\n\nJSON Output\n\nReturns structured data:\n\n{\n  \"origin\": \"DEN\",\n  \"destination\": \"LAX\",\n  \"date\": \"2026-03-01\",\n  \"current_price\": \"typical\",\n  \"flights\": [\n    {\n      \"airline\": \"Frontier\",\n      \"departure_time\": \"10:43 PM\",\n      \"arrival_time\": \"12:30 AM\",\n      \"duration\": \"2 hr 47 min\",\n      \"stops\": 0,\n      \"price\": 84,\n      \"is_best\": true\n    }\n  ]\n}\n\nLinks\nPyPI\nGitHub"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/awlevin/flight-search",
    "publisherUrl": "https://clawhub.ai/awlevin/flight-search",
    "owner": "awlevin",
    "version": "0.1.7",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/flight-search",
    "downloadUrl": "https://openagent3.xyz/downloads/flight-search",
    "agentUrl": "https://openagent3.xyz/skills/flight-search/agent",
    "manifestUrl": "https://openagent3.xyz/skills/flight-search/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/flight-search/agent.md"
  }
}