Self-hosted MCP server and tactical web app for real-time flight, military aircraft, and satellite tracking with AI-powered queries and an immersive 3D globe.
Project description
๐ญ Open Sky Intelligence
Real-time flight, military aircraft, and satellite tracking with AI-powered queries and an immersive 3D globe.
Features
- ๐ 3D Globe โ CesiumJS-powered immersive dark globe with real-time flight and satellite rendering
- โ๏ธ Flight Tracking โ Live commercial, private, and military aircraft via ADSB.lol global feed (+ optional OpenSky Network for self-hosting)
- โ๏ธ Military Monitoring โ Unfiltered military aircraft feed โ unlike commercial trackers that hide these
- ๐ฐ Satellite Tracking โ 6 categories (Space Stations, Military, Weather, Nav, Science, Starlink) via Celestrak + SGP4
- ๐ ISS Tracking โ Real-time position, crew info, pass predictions, and one-click Track ISS
- ๐ค Weather โ Current conditions at any location via Open-Meteo
- ๐ค MCP Server โ 15 tools via FastMCP, streamable HTTP + stdio for Claude Desktop / VS Code / Cursor
- ๐ฌ BYOK AI Chat โ Bring your own API key (Claude, OpenAI, Gemini) โ keys stored in browser only
- โก SSE Streaming โ Server-Sent Events for real-time chat responses with incremental token rendering
- ๐ก๏ธ Guardrails โ Layered chat safety via system prompt hardening + optional LLM Guard scanners
- ๐ Playground Dashboard โ
/playgroundโ single pane of glass for system health, guardrail monitoring, and LangFuse analytics - ๐ฅ CLI โ Full command suite including
skyintel askfor terminal-based AI queries - ๐ LangFuse Observability โ Optional LLM tracing, token tracking, and latency monitoring with dashboard integration
Deployment Branches
SkyIntel ships three branches optimised for different environments:
main |
railway |
railway-guardrails |
|
|---|---|---|---|
| Use case | Self-hosting (home server, VPS, Raspberry Pi) | Cloud demo (Railway, Render, Fly.io) | Cloud demo + enhanced chat safety |
| Flight data | OpenSky Network + ADSB.lol | ADSB.lol global feed | ADSB.lol global feed |
| Poll strategy | OpenSky global + ADSB.lol military | Single ADSB.lol global call + /v2/mil |
Single ADSB.lol global call + /v2/mil |
| Poll interval | 30s | 60s | 60s |
| Coverage | Global (OpenSky provides worldwide states) | ~7,500+ flights globally (depends on ADSB.lol feeder coverage) | ~7,500+ flights globally |
| Guardrails | System prompt only | System prompt only | System prompt + LLM Guard (BanTopics, Toxicity, InvisibleText) |
| Extra memory | โ | โ | ~500MB for guardrail models |
| Military | ADSB.lol /v2/mil |
ADSB.lol /v2/mil (same) |
ADSB.lol /v2/mil (same) |
| Satellites/ISS | โ Same | โ Same | โ Same |
| AI Chat | โ Same (ADSB.lol live queries) | โ Same (ADSB.lol live queries) | โ Same + guardrail scanning |
| SSE Streaming | โ Same | โ Same | โ Same |
| Playground | โ Same | โ Same | โ Same + guardrail stats |
| PyPI | โ | โ
pip install skyintel==1.2.0 |
โ |
Why multiple branches?
OpenSky Network blocks cloud/datacenter IPs โ their API only responds to residential IPs, making it unusable on Railway, Render, and similar platforms. The railway branch replaces OpenSky with ADSB.lol's /v2/point endpoint for global flight data.
The railway-guardrails branch adds LLM Guard scanners for enhanced chat safety, at the cost of ~500MB additional memory (guardrail models are lazy-loaded on first chat request).
ADSB.lol Coverage
ADSB.lol is a crowdsourced network of volunteer ADS-B feeders. Coverage is excellent in North America, Europe, and parts of Asia, but sparse in regions with fewer feeders (e.g. central China, much of Africa, central Russia). This is a data availability limitation of the volunteer feeder network, not something that can be resolved in code.
Which should I use?
- Running locally or on a VPS with a residential IP? โ Use
main - Deploying to a cloud platform? โ Use
railway - Cloud platform + you want chat guardrails? โ Use
railway-guardrails(adds ~500MB memory)
Architecture Overview
graph TB
subgraph External["โ๏ธ External Data Sources"]
OS[OpenSky Network<br/>OAuth2 ยท Flight States<br/>main branch only]
ADSB[ADSB.lol<br/>Global Feed ยท Military ยท Search]
CT[Celestrak<br/>TLE Satellite Data]
HEX[hexdb.io<br/>Aircraft Meta ยท Routes]
OM[Open-Meteo<br/>Weather]
ON[Open Notify<br/>ISS Crew]
LF[LangFuse Cloud<br/>OTEL Traces ยท Analytics]
end
subgraph Backend["โ๏ธ Backend ยท Python ยท Starlette"]
direction TB
subgraph Pollers["Background Pollers"]
FP[Flight Poller<br/>main: 30s OpenSky + /v2/mil<br/>railway: 60s Global + /v2/mil]
SP[Satellite Poller<br/>1hr ยท Celestrak TLEs]
end
SVC[Service Layer<br/>service.py]
API[REST API<br/>/api/*]
MCP[MCP Server<br/>FastMCP ยท /mcp]
GW[LLM Gateway<br/>LiteLLM ยท BYOK ยท SSE]
GR[Guardrails<br/>LLM Guard ยท Lazy-loaded<br/>railway-guardrails only]
PROP[SGP4 Propagator<br/>Skyfield]
PG[Playground API<br/>/api/playground/*]
end
subgraph Storage["๐พ SQLite ยท WAL Mode"]
DB[(flights ยท satellites<br/>aircraft_meta ยท routes)]
end
subgraph Frontend["๐ Web UI ยท Vanilla JS"]
GLOBE[CesiumJS Globe<br/>BillboardCollection]
DETAIL[Detail Panel<br/>Click-to-Inspect]
CHAT[Chat Panel<br/>BYOK ยท SSE Streaming]
DASH[Playground Dashboard<br/>System ยท Guardrails ยท LangFuse]
end
subgraph Clients["๐ External Clients"]
CLI[CLI<br/>skyintel ask/flights/iss]
CD[Claude Desktop<br/>stdio]
VS[VS Code / Cursor<br/>Streamable HTTP]
end
OS -->|Poll every 30s<br/>main only| FP
ADSB -->|Global + /v2/mil| FP
CT -->|TLE fetch hourly| SP
ON -->|On-demand| SVC
FP --> DB
SP --> DB
DB --> API
DB --> SVC
ADSB -->|On-demand queries| SVC
HEX -->|Cached lookups| SVC
OM --> SVC
PROP --> SVC
SVC --> MCP
SVC --> GW
SVC --> CLI
SVC --> PG
GW --> GR
GW -->|OTEL callbacks| LF
LF -->|REST API reads| PG
API --> GLOBE
API --> DETAIL
GW --> CHAT
PG --> DASH
MCP --> CD
MCP --> VS
SkyIntel is a Python/Starlette backend with a vanilla JS + CesiumJS frontend and no build step. Background pollers fetch flight data from ADSB.lol (global point query + military feed) and satellite TLEs from Celestrak on fixed intervals, storing results in a SQLite database with WAL mode for concurrent reads during writes. A shared service layer (service.py) provides unified query logic consumed by three surfaces: the REST API (globe + detail panel), the MCP server (Claude Desktop / VS Code / Cursor), and the CLI. The LLM gateway (gateway.py) implements a provider-agnostic tool-calling loop via LiteLLM, supporting Claude, OpenAI, and Gemini through a single BYOK interface โ with SSE streaming for real-time token delivery. The /playground dashboard provides an observability surface with system metrics sourced from in-memory runtime stats, guardrail monitoring via the optional LLM Guard module (graceful degradation when absent), and LangFuse analytics via REST API reads. All flight classification (military, private, commercial) is performed through pattern-based heuristics in the classifier module, and satellite positions are computed locally via SGP4 propagation using Skyfield.
Architectural Decisions
| Decision | Choice | Why |
|---|---|---|
| Dual-source data architecture | Globe reads from SQLite (polled), Chat/MCP queries ADSB.lol live | Isolates polling from on-demand queries โ avoids API rate limit contention, eliminates single point of failure, ensures globe rendering never competes with user queries |
| BillboardCollection over Entity API | CesiumJS BillboardCollection + LabelCollection | Entity API crashes at 25k+ objects. BillboardCollection handles 10k+ aircraft smoothly with canvas-based icon caching |
| SQLite with WAL mode | Single-file DB at ~/.skyintel/skyintel.db |
Zero-config, no external dependencies, WAL enables concurrent reads during writes. Sufficient for single-instance tracking workloads |
| SGP4 propagation over external APIs | Skyfield + sgp4 for satellite/ISS positions | Eliminates external API dependency for position data. TLEs refresh hourly from Celestrak, positions computed locally in real-time with sub-km accuracy |
| Tool-calling loop with result capping | Default 50 results per tool, total_count always returned |
Prevents context window blowout (200k token limit) while giving the LLM accurate counts for reporting |
| Chat history windowing | Last 6 messages sent to LLM per request | Reduces input tokens per round-trip. Full history stays visible in UI. Clear chat for best results on complex queries |
| Retry with exponential backoff | 3 attempts, 30s/60s waits on rate limit errors | Gracefully handles per-minute token limits on free/low-tier LLM plans instead of failing with raw errors |
| BYOK security model | API keys in browser localStorage only | Keys never touch the server โ sent per-request via POST body, never logged, never persisted server-side |
| Cesium token masking | Server-side injection via HTML template replacement | Token never exposed in any API response. Injected into index.html at serve time via %%CESIUM_TOKEN%% placeholder |
| Vanilla JS, no build step | Pure JS + CesiumJS CDN | Zero frontend toolchain complexity. No npm, no webpack, no transpilation. Deploy by copying files |
| FastMCP dual transport | Streamable HTTP (/mcp) + stdio mode |
HTTP for remote/web clients (VS Code, Cursor), stdio for local desktop clients (Claude Desktop) |
| LiteLLM as LLM gateway | Unified API for Claude, OpenAI, Gemini | Single tool-calling implementation supports all major providers via provider prefixes |
| LangFuse OTEL integration | Optional observability via LiteLLM callbacks + REST API reads for playground | Zero-code tracing of every LLM call. OTEL ingestion for writes, REST API for dashboard reads. Single host, shared credentials |
| SSE streaming (simple approach) | Full tool-calling loop runs server-side, only the final LLM response is streamed | Avoids complex partial-stream/tool-call interleaving. Tool status messages sent during processing, final reply streamed token-by-token via Server-Sent Events |
| Playground observability | In-memory runtime stats + LangFuse REST API + graceful degradation | System metrics from playground_runtime dict (zero DB overhead), guardrail stats from LLM Guard module (ImportError fallback when absent), LangFuse analytics via REST API (returns available: false without keys) |
| Tool call tracking | In-memory counters in gateway.py | Accurate per-tool heatmap without LangFuse dependency. Tracks actual MCP tool names (not LiteLLM span names). Resets on restart โ acceptable for operational monitoring |
Guardrails Strategy
SkyIntel uses a layered defense approach for chat safety:
| Layer | Mechanism | Cost | Branch |
|---|---|---|---|
| System prompt | LLM instructed to only answer aviation/space topics | Zero โ part of every request | All branches |
| LLM Guard (lightweight) | BanTopics, Toxicity, InvisibleText scanners |
~500MB model download on first chat | railway-guardrails only |
| LLM Guard (full) | Adds PromptInjection, NoRefusal scanners |
~1.3GB+ models โ higher memory cost | Not shipped (see below) |
The heavy PromptInjection scanner (~738MB) and NoRefusal scanner (~827MB) were excluded in favour of system prompt hardening โ a deliberate cost/security tradeoff for cloud deployments where memory is billed per GB/hour. The system prompt approach provides effective topic restriction at zero additional cost, while the lightweight scanners add defense-in-depth against invisible text attacks, toxic content, and off-topic abuse.
On the railway-guardrails branch, guardrail scan and block stats are tracked in-memory and surfaced in the /playground dashboard โ including per-scanner block counts, block rate, and the 20 most recent blocked queries (anonymised).
Aircraft Classification
Military and private aircraft detection in classifier.py uses pattern-based heuristics:
- Military โ Detected via ICAO hex ranges, callsign prefixes, squawk codes, and the ADSB.lol
/v2/milfeed - Private โ Detected via known private jet ICAO type codes (e.g.
GLF6,C680,CL35,LJ45)
These patterns are maintained for educational purposes and are best-effort, not exhaustive. Contributions to improve classification accuracy are welcome โ see src/skyintel/flights/classifier.py for the full ruleset.
Data Sources
| Source | Used For | Auth | Polling | Notes |
|---|---|---|---|---|
| OpenSky Network | Primary flight data for globe (main branch only) |
OAuth2 (required) | Every 30s | May block cloud/datacenter IPs. Not used on railway branches |
| ADSB.lol | Global flight data (railway), on-demand queries (all branches), military feed |
None | 60s (railway) / On-demand |
Crowdsourced โ coverage depends on volunteer feeder density |
| Celestrak | Satellite TLE orbital data | None | Hourly | 6 categories: stations, military, weather, gnss, science, starlink |
| hexdb.io | Aircraft metadata + route lookup | None | Cached (30d/7d) | Can go down intermittently. Errors handled gracefully |
| Open-Meteo | Weather at any location | None | On-demand | Free, no API key required |
| Open Notify | ISS crew information | None | On-demand | Only reliable free source for current ISS crew |
| LangFuse | LLM observability + playground analytics | BYOK keys | OTEL callbacks + REST reads | Free tier. Trace count + tool heatmap surfaced in /playground |
โ ๏ธ Why different data for Globe vs Chat? (
mainbranch) The globe reads from SQLite (polled via OpenSky), while chat queries ADSB.lol live. This separation isolates polling from on-demand queries โ avoids API rate limit contention and ensures globe rendering never competes with user queries. Flight counts may differ slightly โ this is expected and by design.
โน๏ธ Note: On
railwaybranches, both globe and chat use ADSB.lol as the data source, but the separation pattern remains: globe reads from SQLite (polled), chat queries the API directly.
Quick Start
pip install skyintel
โน๏ธ
pip install skyintel(v1.2.0) installs therailwaybranch version โ ADSB.lol only, no OpenSky dependency. For the self-hosted version with OpenSky support, clone themainbranch directly.
Create a .env file in your project root:
cp .env.example .env
# Edit .env with your API keys (see Configuration below)
Start the server:
skyintel serve
Open http://localhost:9096 in your browser.
Configuration
All configuration via environment variables with SKYINTEL_ prefix, or .env file:
# Server
SKYINTEL_HOST=0.0.0.0
SKYINTEL_PORT=9096
# OpenSky Network (main branch only โ not needed for railway branches)
SKYINTEL_OPENSKY_CLIENT_ID=your_client_id
SKYINTEL_OPENSKY_CLIENT_SECRET=your_client_secret
# Cesium Ion (optional โ enables terrain layer)
SKYINTEL_CESIUM_ION_TOKEN=your_token
# LLM โ for CLI 'ask' command (optional, web chat uses browser localStorage)
SKYINTEL_LLM_PROVIDER=anthropic # anthropic / openai / google
SKYINTEL_LLM_API_KEY=sk-ant-...
SKYINTEL_LLM_MODEL=claude-sonnet-4-20250514
# LangFuse (optional โ LLM observability + playground analytics)
SKYINTEL_LANGFUSE_PUBLIC_KEY=pk-lf-...
SKYINTEL_LANGFUSE_SECRET_KEY=sk-lf-...
SKYINTEL_LANGFUSE_HOST=https://cloud.langfuse.com
SKYINTEL_LANGFUSE_OTEL_HOST=https://cloud.langfuse.com
# Playground (opt-in observability dashboard)
SKYINTEL_PLAYGROUND_ENABLED=true # default: true
# Poll intervals
SKYINTEL_FLIGHT_POLL_INTERVAL=30 # 30s for main, 60s for railway
SKYINTEL_SATELLITE_POLL_INTERVAL=3600
CLI Reference
| Command | Description |
|---|---|
skyintel serve |
Start server (MCP + REST + Web UI) |
skyintel serve --stdio |
MCP stdio mode for Claude Desktop |
skyintel status |
Show config and system status |
skyintel init |
Initialise database |
skyintel config |
Show current config as JSON |
skyintel ask "question" |
Ask the AI a question (uses .env credentials) |
skyintel ask "question" --provider anthropic --api-key sk-... --model claude-sonnet-4-20250514 |
Ask with explicit credentials |
skyintel flights --military |
List military flights |
skyintel flights --search RYR123 |
Search by callsign/hex |
skyintel flights --lat 51 --lon -0.5 |
Flights near a point |
skyintel satellites --category iss |
List satellites by category |
skyintel above --lat 51 --lon -0.5 |
Flights + satellites near a point |
skyintel iss |
ISS position + crew |
skyintel iss --passes --lat 51 --lon -0.5 |
ISS pass predictions |
skyintel mcp-config |
Print MCP config for Claude Desktop |
skyintel mcp-config --vscode |
Print MCP config for VS Code |
skyintel mcp-config --stdio |
Print stdio MCP config |
MCP Client Setup
VS Code + GitHub Copilot โ Tested
Add to your .vscode/mcp.json:
{
"servers": {
"skyintel": {
"url": "http://localhost:9096/mcp"
}
}
}
Claude Code โ Tested
claude mcp add skyintel --transport http http://localhost:9096/mcp
Claude Desktop ๐ก Needs Testing
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"skyintel": {
"command": "skyintel",
"args": ["serve", "--stdio"]
}
}
}
Gemini CLI ๐ Pending
Configuration pending โ will be added once Gemini CLI MCP support is verified.
OpenAI Codex ๐ Pending
Configuration pending โ will be added once Codex MCP support is verified.
CLI helper: skyintel mcp-config, skyintel mcp-config --vscode, or skyintel mcp-config --stdio
Available MCP Tools
| Tool | Description |
|---|---|
flights_near |
Live flights near a geographic point |
search_flight |
Search by callsign or ICAO24 hex |
military_flights |
All airborne military aircraft worldwide |
flights_to |
Flights heading to a destination airport |
flights_from |
Flights departed from an origin airport |
aircraft_info |
Aircraft metadata by ICAO24 hex |
get_satellites |
Satellite positions by category |
get_weather |
Current weather at any location |
get_status |
System health and diagnostics |
iss_position |
Real-time ISS position |
iss_crew |
Current ISS crew members |
iss_passes |
ISS pass predictions for a location |
playground_system |
System health metrics โ flights, satellites, polling, DB, data sources |
playground_guardrails |
Guardrail scan/block stats โ scanner status, recent blocks |
playground_langfuse |
LangFuse analytics โ traces, tool call frequency |
Playground Dashboard
The /playground route provides an AI engineering observability surface โ a single pane of glass for system health, guardrail monitoring, and LangFuse analytics.
System Metrics
- Flights tracked โ total with commercial/military/private breakdown (from live poll data)
- Satellites cached โ count and categories
- Polling & uptime โ poll cycle count, uptime, poll intervals
- Database โ SQLite file size, retention policy, path
- Data source health โ live status for ADSB.lol, Celestrak, hexdb.io, Open-Meteo
- LLM configuration โ provider, model, API key status, LangFuse status
Guardrails Monitor
- Scan counts โ input and output scans performed
- Block rate โ blocked count and percentage
- Scanner status โ loaded / lazy / unavailable for each scanner
- Recent blocked queries โ last 20 blocked inputs (anonymised)
- Gracefully degrades to "available on railway-guardrails branch" when LLM Guard is not installed
LangFuse Analytics
- Chat sessions โ total trace count from LangFuse
- Tool call frequency โ heatmap of MCP tool usage (in-memory tracking for accuracy)
- Open LangFuse Dashboard โ one-click link to the full LangFuse UI
- Gracefully hidden when LangFuse keys are not configured
Auto-refreshes every 15 seconds. Dark theme, card-based grid, fully responsive.
Web UI Guide
- Globe โ Rotate, zoom, and pan the 3D globe. Flights and satellites render in real-time.
- Toggle chips โ Enable/disable flight types (Commercial, Military, Private) and satellite categories (Space Stations, Military, Weather, Nav, Science, Starlink).
- Click to inspect โ Click any flight or satellite for a detail panel with metadata, weather, and route info.
- Track ISS โ Click the ๐ฐ Track ISS button in the status bar to rotate the globe to the ISS and open the crew/status panel.
- Layers โ Switch between Dark, Satellite, Streets, and Terrain (terrain requires free Cesium Ion token).
- Share โ Snapshot your current view and share via URL or Web Share API.
- Chat โ Click the ๐ฌ floating button to open the AI chat. Set your API key in โ Settings first. Responses stream in real-time via SSE.
- Playground โ Navigate to
/playgroundfor system health, guardrail stats, and LangFuse analytics.
Note: Terrain view may take time to render.
๐ก Tip: Clear chat history regularly for best performance on complex queries.
API Reference
| Method | Path | Description |
|---|---|---|
| GET | / |
Web UI |
| GET | /playground |
Playground dashboard |
| GET | /api/status |
System status + config |
| GET | /api/flights?lat_min&lat_max&lon_min&lon_max |
Cached flights (bbox) |
| GET | /api/aircraft/{icao24} |
Aircraft metadata |
| GET | /api/route/{callsign} |
Flight route |
| GET | /api/satellites?category= |
Satellite positions |
| GET | /api/weather?lat=&lon= |
Current weather |
| GET | /api/iss |
ISS position + crew |
| GET | /api/iss/passes?lat=&lon= |
ISS pass predictions |
| POST | /api/chat |
BYOK chat (messages, provider, api_key, model) |
| POST | /api/chat/stream |
BYOK chat with SSE streaming |
| GET | /api/playground/system |
System health metrics |
| GET | /api/playground/guardrails |
Guardrail scan/block stats |
| GET | /api/playground/langfuse |
LangFuse analytics |
| POST | /mcp |
MCP streamable HTTP endpoint |
Context Management & Rate Limits
Open Sky Intelligence uses a tool-calling architecture where the LLM makes multiple API calls per query. Each call carries the system prompt, tool definitions, and chat history. We've implemented several strategies to manage token usage:
- Chat history windowing โ Only the last 6 messages are sent to the LLM per request, reducing input tokens while preserving context. Full history remains visible in the UI.
- Result capping โ Tool results default to 50 items with
total_countalways returned, preventing context window blowout. - Retry with backoff โ Rate limit errors trigger automatic retries (up to 3 attempts, 30s/60s waits).
- Dual system prompts โ Web chat uses HTML formatting, CLI uses markdown, keeping responses lean per surface.
- SSE streaming โ Final LLM response streamed token-by-token via Server-Sent Events for perceived responsiveness. Tool-calling loop completes server-side before streaming begins.
๐ก Tip: Clear chat history before complex queries for best results. Users on free-tier LLM plans should consider lighter models (e.g.
claude-haiku-4-20250514,gpt-4o-mini).
โ ๏ธ These are active areas of improvement. Contributions around smarter context summarisation and token counting are especially welcome.
Roadmap
| Feature | Status |
|---|---|
/playground dashboard โ system metrics + guardrails monitor |
โ Done |
/playground dashboard โ LangFuse analytics (traces, tool heatmap) |
โ Done |
| SSE streaming responses | โ Done |
| Chat panel expand/collapse | โ Done |
| LangFuse v2 Metrics API (latency, tokens, cost in playground) | ๐ Planned |
| Guardrail threshold tuning + block rate improvement | ๐ Planned |
| Tool result caching โ TTL-based (30-60s) on service layer | ๐ Planned |
Context window tracking โ tiktoken token counting |
๐ Planned |
| Hallucination detection โ compare LLM response against tool results | ๐ Planned |
| Flight history playback + time slider | ๐ Planned |
| Flight pattern recognition + analytics | ๐ Planned |
| Alert zones + notifications (browser/webhook) | ๐ Planned |
| PostHog analytics | ๐ Planned |
| E2E testing for PyPI install | ๐ Planned |
| Raspberry Pi deployment guide | ๐ Planned |
| Gemini CLI MCP support | ๐ Pending verification |
| OpenAI Codex MCP support | ๐ Pending verification |
flights_latest upsert table (storage optimisation) |
๐ Planned |
| Evaluation scoring (LangFuse Scores + DeepEval) | ๐ฎ Future |
| PII / Data masking (Presidio) | ๐ฎ Future |
| Rate limiting (slowapi) | ๐ฎ Future |
| Anomaly detection (scikit-learn IsolationForest) | ๐ฎ Future |
| Military activity trends (pandas + numpy) | ๐ฎ Future |
| Ship/vessel tracking (AIS โ Open Nav Intelligence) | ๐ฎ Future |
Contributing
Open Sky Intelligence is open source under the Apache 2.0 license. We welcome contributions:
- ๐ Bug reports โ Open an issue with reproduction steps
- ๐ก Feature requests โ Suggest ideas via GitHub Issues
- ๐ง Pull requests โ Especially welcome in:
- Context window optimisation
- Additional data sources and enrichment
- Aircraft classifier improvements (see
src/skyintel/flights/classifier.py) - UI/UX improvements
- Test coverage
- Documentation
Development Setup
git clone https://github.com/0xchamin/skyintel.git
cd skyintel
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
cp .env.example .env # Add your API keys
skyintel serve
Support the Project
If you find Open Sky Intelligence useful, consider supporting its development:
โญ Star this repo if you find it useful โ it helps others discover the project.
Enterprise
Need a managed deployment, custom integrations, SLA support, or additional data sources?
๐ง Let's talk โ reach out via GitHub Issues or Buy Me a Coffee to start a conversation.
Coming Soon โ Open Nav Intelligence
SkyIntel is evolving into Open Nav Intelligence โ a unified real-time tracking platform spanning air, sea, and space.
pip install opennav
- ๐ Vessel Tracking โ AIS-powered ship monitoring worldwide
- ๐ฅ๏ธ Submarine Detection โ Deep-sea intelligence layer
- โ๏ธ Flight Tracking โ Everything SkyIntel does today
- ๐ฐ๏ธ Satellite Tracking โ Full orbital awareness
- ๐ค AI-Powered Queries โ Multi-domain natural language intelligence
Stay tuned.
Disclaimer
Open Sky Intelligence is an educational project and technical demonstration showcasing real-time data integration, Model Context Protocol (MCP) tool-calling patterns, and AI-powered geospatial intelligence.
All data is sourced from publicly available open APIs โ no classified, proprietary, or restricted data is used. Flight positions come from ADSB.lol and OpenSky Network, satellite TLEs from Celestrak, ISS data from Open Notify, and weather from Open-Meteo.
- Flight and satellite data is provided as-is from third-party sources. Accuracy, completeness, and availability are not guaranteed.
- Military aircraft data is sourced from publicly available ADS-B signals. Not all military aircraft broadcast ADS-B.
- Aircraft classification (military/private/commercial) is based on known patterns and heuristics โ see
classifier.pyfor details. This is for educational purposes only. - ADSB.lol coverage depends on volunteer ADS-B feeder density โ some regions (central China, much of Africa, central Russia) have limited coverage.
- ISS crew data is sourced from Open Notify and may not reflect real-time crew changes.
- LLM-generated reports and analyses are AI-assisted and should not be used as sole sources for operational, safety, or security decisions.
- BYOK API keys are stored in browser localStorage only โ never persisted server-side. Users are responsible for their own API key security.
This project is not affiliated with any government, military, or intelligence agency. Aircraft and satellite positions shown are approximate and should not be used for navigation, safety-critical decisions, or operational purposes.
License
Apache 2.0 โ see LICENSE for details.
Built with โค๏ธ by 0xchamin
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file skyintel-1.2.1.tar.gz.
File metadata
- Download URL: skyintel-1.2.1.tar.gz
- Upload date:
- Size: 82.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b24f8eeb62d4c24215b6f3f96e3b8f741761e9c6a9eece4ecb1b7409b7951f6
|
|
| MD5 |
9d4a2ceba20f8d5602e79f846724289a
|
|
| BLAKE2b-256 |
0f97b40ab61276f462c40d9337533d1b2ab5fadd3134e48d35745f2a25df1fb5
|
File details
Details for the file skyintel-1.2.1-py3-none-any.whl.
File metadata
- Download URL: skyintel-1.2.1-py3-none-any.whl
- Upload date:
- Size: 90.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1e09c34fea0c6f03f3d474505f833fd1fc77590869cda90927d03385f9eb4a8
|
|
| MD5 |
4e386e295e51e67d4bf22be18424c98b
|
|
| BLAKE2b-256 |
5cf78b692e36f877dd004cf705fd68e66e25f23976b7361ac29ff27dceb19188
|