"The strong prey upon the weak. We simply make it efficient."
Archon's Eye is a real-time piracy scouting tool for Elite Dangerous. It listens to the EDDN live data feed and scores star systems based on mining activity, high-value commodity traffic, faction states, and security level — so you always know where the richest, most vulnerable targets are.
- Live EDDN feed — receives commodity and journal events from the community network in real time via ZeroMQ
- System scoring — combines hotspot ring presence, high-value commodities (Void Opals, LTDs, Painite…), faction states, and security level into a single opportunity score
- Miner & trader detection — tracks active CMDRs uploading FSD jumps to estimate traffic density
- EDSM enrichment — asynchronously fetches system metadata (population, allegiance, economy) for new systems
- SQLite cache — persists all system data locally so scores survive restarts
- Elite-themed HUD — animated glitch title, pulsing HUD bars, phosphor-green terminal aesthetic
- Windows 10 / 11
- Python 3.12+ (only needed if running from source)
- An internet connection (for EDDN and EDSM)
- Elite Dangerous is not required to be running — the tool reads the community data feed, not your local game
- Download
archons_eye.exefrom the Releases page - Place it anywhere you like
- Run it — no installer needed
Data and logs are stored in %APPDATA%\ArchonsEye\, not next to the exe.
git clone https://github.com/Marukooh/Archons-Eye.git
cd "Archon's Eye"
pip install -e .
python -m archons_eye.mainOr with a virtual environment:
python -m venv .venv
.venv\Scripts\activate
pip install -e .
python -m archons_eye.main- Launch the app. It immediately connects to the EDDN relay and starts receiving live data.
- Click Start in the sidebar to begin scoring. The table will populate as systems are reported.
- Filter results using the sidebar controls:
- Toggle Miners / Traders to focus on the traffic type you want to intercept
- Adjust Min score to hide low-opportunity systems
- Set the security filter to narrow down by system security level
- Table columns:
Column Description System Star system name Score Composite piracy opportunity score (higher = better) Security System security level Distance Distance from your current position (requires journal) Mining Active hotspot rings and minerals being mined Trading High-value commodities recently reported at market - Click a row to copy the system name to clipboard for quick galaxy map navigation.
| Factor | Points |
|---|---|
| Hotspot ring (per ring) | varies by mineral |
| High-value commodity at market | varies by commodity |
| Anarchy security | +25 |
| Low security | +15 |
| Active faction state (War, Civil War…) | bonus |
| Recent CMDR activity | bonus |
Systems older than 60 minutes are automatically removed.
Edit archons_eye/config.py to change defaults:
alert_score_threshold = 60 # minimum score to highlight a system
max_system_age_minutes = 60 # how long before a system is pruned
cmdr_window_minutes = 10 # window for counting active CMDRs
target_miner = True # score mining traffic
target_trader = True # score trading traffic- No account required. Archon's Eye only reads from the public EDDN feed.
- No data is sent. The app is purely a consumer; it never uploads anything.
- Local storage:
%APPDATA%\ArchonsEye\archons_eye.db(cache) andarchons_eye_debug.log(logs, max 10 MB × 4 backups).
Requires PyInstaller:
pip install pyinstaller
build.batThe output exe is placed in dist\archons_eye\.
MIT — © 2026 Marukooh
Archon's Eye is a fan-made tool and is not affiliated with Frontier Developments or Elite Dangerous.