Clawdwatch: Open-source OSINT tool for real-time flight tracking, news scraping, and alerts

✍️ OpenClawRadar📅 Published: March 1, 2026🔗 Source
Clawdwatch: Open-source OSINT tool for real-time flight tracking, news scraping, and alerts
Ad

What Clawdwatch does

Clawdwatch is an open-source OSINT (Open Source Intelligence) CLI tool that aggregates real-time data from multiple sources. The developer built it to get faster information during geopolitical events, citing that during conflicts, "governments say one thing, news is 2 hours behind, and Twitter is 50% bots pushing narratives."

Current features

  • Flight tracking: Pulls live data from OpenSky Network (free), tracking 204+ flights over the Middle East in real-time
  • News scraping: Scrapes live news from Al Jazeera and AP (example: pulled "Iran strikes US military base in Bahrain" before it hit most US feeds)
  • Military aircraft detection: Watches for NATO callsigns and flags them
  • Emergency squawk monitoring: Alerts when a plane broadcasts 7700 (emergency), 7600 (radio failure), or 7500 (hijack)

Setup and usage

The tool requires Node.js and is installed with:

git clone https://github.com/cloudweaver/clawdwatch.git
cd clawdwatch
npm install
npm run watch

It starts pulling live data immediately after installation. The default region is the Middle East, but you can change it to Europe, USA, or Asia.

Ad

Alert configuration

For Telegram alerts (phone notifications when military aircraft enter airspace or sketchy events occur), you need to set up with BotFather, which takes about 5 minutes.

Additional features requiring API keys

  • Twitter/X monitoring (needs bearer token)
  • Satellite imagery via Sentinel Hub
  • Ship tracking via AIS (for watching tankers and naval movements)

Why this matters for developers

This type of tool demonstrates how developers can build their own intelligence gathering systems using publicly available data sources. The approach of combining flight data, news scraping, and alert systems creates a comprehensive monitoring tool that runs entirely locally without third-party services.

📖 Read the full source: r/openclaw

Ad

👀 See Also

ETL-D MCP Server: Deterministic CSV Parsing for Claude to Prevent Financial Hallucinations
Tools

ETL-D MCP Server: Deterministic CSV Parsing for Claude to Prevent Financial Hallucinations

A developer built ETL-D, an open-source MCP server for Claude Desktop that processes CSVs in three deterministic layers to prevent decimal point hallucinations in financial data. It uses Python parsers for known formats, achieves ~70ms response times with 0 LLM calls for 200 parallel requests, and only uses LLMs as a fallback for high-entropy text.

OpenClawRadar
OpenClaw Integration for Indian Stock Markets: Multi-Agent Analysis and Trading Terminal
Tools

OpenClaw Integration for Indian Stock Markets: Multi-Agent Analysis and Trading Terminal

An open source trading terminal for Indian markets has been wired up as an OpenClaw skill server, allowing any OpenClaw agent to pull Indian stock market data and run full analysis over HTTP without local installation. The system uses seven specialist agents working in parallel to generate structured analysis with trade plans.

OpenClawRadar
Claude Code documentation includes excessive React components inflating token counts
Tools

Claude Code documentation includes excessive React components inflating token counts

Analysis of Claude Code's LLM documentation reveals that MDX files contain massive inlined React components, with context-window.md using 18,501 tokens but only 551 tokens of actual documentation content.

OpenClawRadar
Custom WhatsApp Channel Plugin for Claude Code Using Baileys
Tools

Custom WhatsApp Channel Plugin for Claude Code Using Baileys

A developer built a custom channel plugin that adds WhatsApp support to Claude Code 2.1.80+ using Baileys v7, implementing the WhatsApp Web Multi-Device protocol as an MCP server with the experimental claude/channel capability.

OpenClawRadar