{
  "schemaVersion": "1.0",
  "item": {
    "slug": "moltbot-adsb-overhead",
    "name": "ADS-B Overhead",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/davestarling/moltbot-adsb-overhead",
    "canonicalUrl": "https://clawhub.ai/davestarling/moltbot-adsb-overhead",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/moltbot-adsb-overhead",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moltbot-adsb-overhead",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "config.example.json",
      "references/sbs-fields.md",
      "scripts/adsb_config.py",
      "scripts/adsb_overhead_notify.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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/moltbot-adsb-overhead"
    },
    "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/moltbot-adsb-overhead",
    "agentPageUrl": "https://openagent3.xyz/skills/moltbot-adsb-overhead/agent",
    "manifestUrl": "https://openagent3.xyz/skills/moltbot-adsb-overhead/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/moltbot-adsb-overhead/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": "adsb-overhead",
        "body": "Detect aircraft overhead (within a radius) from a local readsb SBS/BaseStation TCP feed and notify via Clawdbot messaging.\n\nThis skill is designed for a periodic checker (cron) rather than a long-running daemon."
      },
      {
        "title": "Quick start (manual test)",
        "body": "Run the checker for a few seconds to see if it detects aircraft near you:\n\npython3 skills/public/adsb-overhead/scripts/sbs_overhead_check.py \\\n  --host <SBS_HOST> --port 30003 \\\n  --home-lat <LAT> --home-lon <LON> \\\n  --radius-km 2 \\\n  --listen-seconds 5 \\\n  --cooldown-min 15\n\nIf it prints lines, those are new alerts (not in cooldown).\nIf it prints nothing, there were no new overhead aircraft during the sample window."
      },
      {
        "title": "How it works",
        "body": "Connect to the SBS feed (TCP) for --listen-seconds.\nTrack latest lat/lon per ICAO hex.\nCompute distance to --home-lat/--home-lon (Haversine).\nEmit alerts for aircraft within --radius-km only if not alerted within --cooldown-min.\nPersist state to a JSON file (default: ~/.clawdbot/adsb-overhead/state.json).\n\nSBS parsing assumptions are documented in: references/sbs-fields.md."
      },
      {
        "title": "Create a Clawdbot watcher (cron)",
        "body": "Use a Clawdbot cron job to run periodically. The cron job should:\n\nexec the script\nIf stdout is non-empty, message.send it via WhatsApp\n\nPseudocode for the agent:\n\nRun:\n\npython3 .../sbs_overhead_check.py ...\n\n\nIf stdout trimmed is not empty:\n\nsend a WhatsApp message with that text\n\nSuggested polling intervals:\n\n30–60 seconds is usually enough (given cooldowns)\nUse --listen-seconds 3..8 so each run can gather a few position frames"
      },
      {
        "title": "Tuning knobs",
        "body": "Increase --radius-km if you want fewer misses.\nIncrease --listen-seconds if your feed is busy but you’re missing position updates.\nUse --cooldown-min to prevent spam (15–60 minutes recommended)."
      }
    ],
    "body": "adsb-overhead\n\nDetect aircraft overhead (within a radius) from a local readsb SBS/BaseStation TCP feed and notify via Clawdbot messaging.\n\nThis skill is designed for a periodic checker (cron) rather than a long-running daemon.\n\nQuick start (manual test)\nRun the checker for a few seconds to see if it detects aircraft near you:\npython3 skills/public/adsb-overhead/scripts/sbs_overhead_check.py \\\n  --host <SBS_HOST> --port 30003 \\\n  --home-lat <LAT> --home-lon <LON> \\\n  --radius-km 2 \\\n  --listen-seconds 5 \\\n  --cooldown-min 15\n\nIf it prints lines, those are new alerts (not in cooldown).\nIf it prints nothing, there were no new overhead aircraft during the sample window.\nHow it works\nConnect to the SBS feed (TCP) for --listen-seconds.\nTrack latest lat/lon per ICAO hex.\nCompute distance to --home-lat/--home-lon (Haversine).\nEmit alerts for aircraft within --radius-km only if not alerted within --cooldown-min.\nPersist state to a JSON file (default: ~/.clawdbot/adsb-overhead/state.json).\n\nSBS parsing assumptions are documented in: references/sbs-fields.md.\n\nCreate a Clawdbot watcher (cron)\n\nUse a Clawdbot cron job to run periodically. The cron job should:\n\nexec the script\nIf stdout is non-empty, message.send it via WhatsApp\n\nPseudocode for the agent:\n\nRun:\npython3 .../sbs_overhead_check.py ...\nIf stdout trimmed is not empty:\nsend a WhatsApp message with that text\n\nSuggested polling intervals:\n\n30–60 seconds is usually enough (given cooldowns)\nUse --listen-seconds 3..8 so each run can gather a few position frames\nTuning knobs\nIncrease --radius-km if you want fewer misses.\nIncrease --listen-seconds if your feed is busy but you’re missing position updates.\nUse --cooldown-min to prevent spam (15–60 minutes recommended)."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/davestarling/moltbot-adsb-overhead",
    "publisherUrl": "https://clawhub.ai/davestarling/moltbot-adsb-overhead",
    "owner": "davestarling",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/moltbot-adsb-overhead",
    "downloadUrl": "https://openagent3.xyz/downloads/moltbot-adsb-overhead",
    "agentUrl": "https://openagent3.xyz/skills/moltbot-adsb-overhead/agent",
    "manifestUrl": "https://openagent3.xyz/skills/moltbot-adsb-overhead/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/moltbot-adsb-overhead/agent.md"
  }
}