SHDWNET Signal Intelligence Dashboard

Central monitoring dashboard aggregating OSINT + HUMINT data feeds.

Live: https://red40mademedoit.github.io/shdwnet.org/


Overview

SHDWNET collects and processes data from multiple sources, calculates a master signal, and feeds downstream systems (DJ Bot, Hydra, X Bot).


Data Sources

OSINT Feeds

FeedSourceData
☀️ Solar X-rayNOAA GOESFlux level (X/M/C/B class)
🧲 GeomagneticNOAAK-Index (0-9)
🌬️ Solar WindNOAA GOESDensity, speed, temperature
🌍 SeismicUSGSEvent count, max magnitude

HUMINT Feeds

FeedSourceData
📱 Redditr/worldnewsActivity score, crisis keywords
🖥️ HackerNewsTop storiesActivity level
📰 News Wire(planned)Breaking news intensity

Celestial Tracking

FeedCalculationData
🌙 Lunar PhaseDate-basedPhase percentage, name
⚛️ AspectsOrbital mathConjunctions, oppositions, trines
🔮 Active SigilCondition-basedCurrent sigil selection

Master Signal Calculation

Weighted combination of all feeds:

const weights = {
    earthquake: 0.20,
    solar: 0.15,
    kindex: 0.10,
    plasma: 0.15,
    reddit: 0.15,
    hn: 0.10,
    chaos: 0.15
};

Output: 0.0 - 1.0 (fed to DJ Bot, Hydra)


Sigil Selection Logic

ConditionSigil
Solar flare >70%👁 eye
Earthquake >60%🌀 spiral
Full moon (45-55%)❀ flower
Multiple aspects (>2)✡ metatron
Fast solar wind (>60%)☯ ouroboros
DefaultCycles through: Φ ⦿ ✧ ❀ ⬡ ⛤

API Endpoints Used

# NOAA Space Weather
https://services.swpc.noaa.gov/json/goes/primary/xrays-1-day.json
https://services.swpc.noaa.gov/products/noaa-planetary-k-index.json
https://services.swpc.noaa.gov/products/solar-wind/plasma-1-day.json

# USGS Earthquakes
https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_hour.geojson

# Reddit (public JSON)
https://www.reddit.com/r/worldnews/.json

# HackerNews
https://hacker-news.firebaseio.com/v0/topstories.json

Downstream Integrations

SHDWNET Dashboard
       │
       ├─── DJ Bot (OSC :57120)
       │         └── BPM, Filter, Chaos, Chorus
       │
       ├─── Hydra (WebSocket :8080)
       │         └── Visual parameters
       │
       └─── X Bot (triggers)
                 └── Event-based posts

Files

shdwnet.org/
├── docs/
│   ├── index.html     # Dashboard UI
│   ├── css/style.css  # Styling
│   └── js/feeds.js    # Data fetching + calculations
├── src/
│   ├── api/           # (future) API endpoints
│   ├── scrapers/      # Data collectors
│   └── utils/         # Helper functions
└── README.md

Local Development

cd ~/projects/shdwnet.org/docs
python -m http.server 8000
# Open http://localhost:8000