From b997a16697c19bc25f42c0ba85bc07f6356534c9 Mon Sep 17 00:00:00 2001 From: type-two Date: Sun, 5 Jul 2026 16:18:35 +1000 Subject: [PATCH] viz: exhaustive Grimoire, 3D chakra view, mind mode, performance tiers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two sessions of frontend work on the single-file console: - Grimoire: ~82k-char lore-and-spec manual grounded in the real routing - Chakra view (C): hand-rolled 3D spine of 7 wheels, sources orbit their chakra 360deg, drag to spin/tilt with flick momentum — no three.js - Mind mode: click a wheel to go POV inside it; a vector console plays that wheel's scale via click / QWERTY / MIDI, through the world's own FX bus - Right-click everything-menu + modifier set (solo, per-voice level, patch) - Performance tiers (auto/full/ultra/lite): cached bg, glow sprites, fps governor for weaker/ultrawide machines; ultra adds comet-trail spirals - Local-only dev backdoor (?dev=1, hostname-locked to localhost) Co-Authored-By: Claude Fable 5 --- viz/index.html | 2319 +++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 2177 insertions(+), 142 deletions(-) diff --git a/viz/index.html b/viz/index.html index 2959453..4d1a451 100644 --- a/viz/index.html +++ b/viz/index.html @@ -74,11 +74,730 @@ border-radius: 6px; padding: 3px 10px; font-size: 11px; cursor: pointer; } #inspect .midibtn:disabled { opacity: 0.4; cursor: default; } + + /* right-click context menu — every setting, on everything */ + #ctxmenu { + position: fixed; z-index: 30; display: none; width: 240px; max-height: 72vh; + overflow-y: auto; background: rgba(10,15,26,0.95); + border: 1px solid rgba(120,150,200,0.35); border-radius: 10px; padding: 6px; + -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); + color: #c7d4ea; font-size: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.55); + } + #ctxmenu.open { display: block; } + #ctxmenu .hd { padding: 5px 8px 7px; border-bottom: 1px solid rgba(120,150,200,0.18); margin-bottom: 4px; } + #ctxmenu .hd b { color: #9fd0ff; font-size: 12px; display: block; } + #ctxmenu .hd span { color: rgba(150,170,200,0.7); font-size: 10px; } + #ctxmenu .it { + display: flex; align-items: center; gap: 8px; padding: 5px 8px; + border-radius: 6px; cursor: pointer; user-select: none; + } + #ctxmenu .it:hover { background: rgba(80,110,170,0.22); color: #eaf2ff; } + #ctxmenu .it .k { margin-left: auto; color: rgba(140,160,195,0.6); font-size: 10px; } + #ctxmenu .sl { display: flex; align-items: center; gap: 8px; padding: 4px 8px; } + #ctxmenu .sl label { font-size: 11px; color: #b9c8e2; width: 44px; } + #ctxmenu .sl input[type=range] { flex: 1; accent-color: #78a0ff; } + #ctxmenu .sl .v { width: 38px; text-align: right; color: #9fd0ff; font-size: 10px; } + #ctxmenu details { border-radius: 6px; } + #ctxmenu details[open] { background: rgba(30,42,66,0.35); } + #ctxmenu summary { + padding: 5px 8px; border-radius: 6px; cursor: pointer; list-style: none; user-select: none; + } + #ctxmenu summary:hover { background: rgba(80,110,170,0.22); color: #eaf2ff; } + #ctxmenu summary::after { content: "▸"; float: right; color: rgba(140,160,195,0.6); } + #ctxmenu details[open] summary::after { content: "▾"; } + #ctxmenu details .body { padding: 2px 4px 6px 12px; max-height: 200px; overflow-y: auto; } + #ctxmenu .rt { display: flex; align-items: center; gap: 6px; margin: 4px 0; } + #ctxmenu .rt .lbl { flex: 1; font-size: 11px; color: #cfe0f5; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } + #ctxmenu .rt input[type=range] { width: 62px; accent-color: #78a0ff; } + #ctxmenu .rt .x { cursor: pointer; color: #ff8b8b; font-weight: 700; padding: 0 3px; } + #ctxmenu .sep { height: 1px; background: rgba(120,150,200,0.16); margin: 4px 6px; } + #ctxmenu .hint { padding: 5px 8px 3px; color: rgba(130,150,180,0.55); font-size: 10px; line-height: 1.5; } + + /* accounts — invite-only sign in / create */ + #authchip { + position: fixed; top: 12px; right: 90px; z-index: 10; height: 30px; + display: flex; align-items: center; gap: 6px; padding: 0 12px; + border-radius: 8px; background: rgba(20,28,44,0.7); color: #9fb4d8; + border: 1px solid rgba(120,150,200,0.25); cursor: pointer; font-size: 12px; + -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); user-select: none; + } + #authchip:hover { color: #dbe8ff; border-color: rgba(150,180,230,0.5); } + #auth { + position: fixed; inset: 0; z-index: 40; display: none; + align-items: center; justify-content: center; + background: rgba(4,7,16,0.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); + } + #auth.open { display: flex; } + #auth .box { + position: relative; width: 340px; max-width: 90vw; padding: 26px 24px 22px; + border-radius: 16px; color: #dbe6f5; + background: linear-gradient(160deg, rgba(28,34,58,0.94), rgba(16,20,38,0.96)); + border: 1px solid rgba(140,170,230,0.25); + box-shadow: 0 20px 80px rgba(0,0,0,0.6), 0 0 60px rgba(90,120,255,0.12) inset; + } + #auth .brand { font-weight: 800; font-size: 22px; letter-spacing: 2px; margin-bottom: 2px; + background: linear-gradient(90deg,#9fd0ff,#f6c8ff,#ffd98a); -webkit-background-clip: text; + background-clip: text; color: transparent; } + #auth .tag { color: rgba(160,180,210,0.7); font-size: 11px; margin-bottom: 16px; } + #auth .tabs { display: flex; gap: 4px; margin-bottom: 14px; } + #auth .tabs button { flex: 1; padding: 7px; border-radius: 8px; cursor: pointer; font-size: 12px; + background: rgba(255,255,255,0.04); color: #9fb4d8; border: 1px solid rgba(120,150,200,0.18); } + #auth .tabs button.on { background: rgba(120,150,255,0.18); color: #eaf1ff; border-color: rgba(150,180,255,0.5); } + #auth form { display: none; flex-direction: column; gap: 9px; } + #auth form.on { display: flex; } + #auth input { width: 100%; box-sizing: border-box; padding: 10px 12px; border-radius: 9px; font-size: 13px; + background: rgba(8,12,24,0.7); color: #eaf1ff; border: 1px solid rgba(120,150,200,0.25); outline: none; } + #auth input:focus { border-color: rgba(150,180,255,0.6); } + #auth .pwrow { position: relative; } + #auth .pwrow input { padding-right: 38px; } + #auth .eye { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); + cursor: pointer; opacity: 0.6; font-size: 15px; user-select: none; } + #auth .eye:hover { opacity: 1; } + #auth .go { margin-top: 4px; padding: 11px; border-radius: 10px; cursor: pointer; font-size: 13px; font-weight: 600; + background: linear-gradient(90deg, rgba(120,150,255,0.9), rgba(180,130,255,0.9)); color: #fff; border: none; } + #auth .go:hover { filter: brightness(1.1); } + #auth .err { color: #ff9ba0; font-size: 11px; min-height: 14px; } + #auth .close { position: absolute; top: 10px; right: 14px; cursor: pointer; color: #8fa4c8; font-size: 18px; } + + /* account panel — feedback + (admin) stats */ + #account { position: fixed; inset: 0; z-index: 41; display: none; align-items: center; justify-content: center; + background: rgba(4,7,16,0.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); } + #account.open { display: flex; } + #account .box { position: relative; width: 400px; max-width: 92vw; max-height: 86vh; overflow-y: auto; + padding: 24px; border-radius: 16px; color: #dbe6f5; + background: linear-gradient(160deg, rgba(28,34,58,0.96), rgba(16,20,38,0.97)); + border: 1px solid rgba(140,170,230,0.25); box-shadow: 0 20px 80px rgba(0,0,0,0.6); } + #account h3 { margin: 0 0 6px; font-size: 15px; color: #cfe0f5; } + #account textarea { width: 100%; box-sizing: border-box; min-height: 70px; padding: 10px; border-radius: 9px; + background: rgba(8,12,24,0.7); color: #eaf1ff; border: 1px solid rgba(120,150,200,0.25); font: inherit; resize: vertical; } + #account .go { margin-top: 8px; padding: 9px 14px; border-radius: 9px; cursor: pointer; font-size: 12px; font-weight: 600; + background: linear-gradient(90deg, rgba(120,150,255,0.9), rgba(180,130,255,0.9)); color: #fff; border: none; } + #account .sub { color: rgba(160,180,210,0.7); font-size: 11px; margin: 6px 0; } + #account .close { position: absolute; top: 10px; right: 14px; cursor: pointer; color: #8fa4c8; font-size: 18px; } + #account .admin { margin-top: 16px; border-top: 1px solid rgba(140,170,230,0.18); padding-top: 12px; } + #account .fblist { max-height: 200px; overflow-y: auto; margin-top: 6px; } + #account .fbitem { font-size: 11px; padding: 6px 0; border-bottom: 1px solid rgba(120,150,200,0.1); line-height: 1.4; } + #account .fbitem b { color: #9fd0ff; } + #account .ghost { background: rgba(255,255,255,0.05); color: #b9c8e2; border: 1px solid rgba(120,150,200,0.2); + border-radius: 7px; padding: 6px 10px; cursor: pointer; font-size: 11px; } + #account .code { font-family: monospace; color: #7cffb2; margin-left: 8px; font-size: 12px; } + + /* ---- gated landing page (shown until you sign in) ---- */ + #landing { + position: fixed; inset: 0; z-index: 30; display: flex; flex-direction: column; + align-items: center; justify-content: center; overflow: hidden; + background: radial-gradient(ellipse at 50% 38%, #0c1533 0%, #070c1c 55%, #03050e 100%); + } /* below #auth (40) / #account (41) so sign-in shows on top, above console (10) */ + #landing.hidden { display: none; } + #landing::before { /* starfield */ + content: ""; position: absolute; inset: 0; pointer-events: none; + background-image: + radial-gradient(1.4px 1.4px at 12% 22%, #fff, transparent), + radial-gradient(1px 1px at 28% 66%, #cfe0ff, transparent), + radial-gradient(1.5px 1.5px at 44% 14%, #fff, transparent), + radial-gradient(1px 1px at 58% 82%, #dbe8ff, transparent), + radial-gradient(1.3px 1.3px at 72% 34%, #fff, transparent), + radial-gradient(1px 1px at 84% 72%, #cfe0ff, transparent), + radial-gradient(1.4px 1.4px at 92% 20%, #fff, transparent), + radial-gradient(1px 1px at 8% 84%, #fff, transparent), + radial-gradient(1px 1px at 36% 44%, #b9c8f0, transparent), + radial-gradient(1.2px 1.2px at 66% 58%, #fff, transparent); + animation: gsTwinkle 5.5s ease-in-out infinite alternate; + } + #landing .orrery { position: absolute; top: 50%; left: 50%; width: 520px; height: 520px; + transform: translate(-50%, -50%); opacity: 0.5; pointer-events: none; } + #landing .ring { position: absolute; inset: 0; margin: auto; border-radius: 50%; + border: 1px solid rgba(140, 170, 235, 0.14); } + #landing .r1 { width: 120px; height: 120px; animation: gsSpin 13s linear infinite; } + #landing .r2 { width: 205px; height: 205px; animation: gsSpin 21s linear infinite; } + #landing .r3 { width: 300px; height: 300px; animation: gsSpin 33s linear infinite; } + #landing .r4 { width: 400px; height: 400px; animation: gsSpin 50s linear infinite; } + #landing .r5 { width: 505px; height: 505px; animation: gsSpin 78s linear infinite; } + #landing .ring .planet { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); + font-size: 14px; color: #cfe0ff; text-shadow: 0 0 10px rgba(150, 190, 255, 0.9); } + #landing .sun { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); + font-size: 24px; color: #ffe6a0; text-shadow: 0 0 34px rgba(255, 210, 120, 0.95); } + #landing .hero { position: relative; z-index: 2; text-align: center; padding: 0 24px; } + #landing .brand { font-weight: 800; font-size: clamp(42px, 9vw, 84px); letter-spacing: 6px; + background: linear-gradient(90deg, #9fd0ff, #f6c8ff, #ffd98a); -webkit-background-clip: text; + background-clip: text; color: transparent; filter: drop-shadow(0 0 30px rgba(150, 180, 255, 0.35)); + animation: gsFloat 7s ease-in-out infinite; } + #landing .tagline { color: rgba(205, 218, 242, 0.9); font-size: 15px; letter-spacing: 2px; margin-top: 4px; } + #landing .poem { color: rgba(165, 185, 218, 0.72); font-size: 13px; margin: 16px auto 0; max-width: 460px; + line-height: 1.7; font-style: italic; } + #landing .cta { margin-top: 28px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; } + #landing .cta button { padding: 12px 24px; border-radius: 11px; font-size: 14px; font-weight: 600; cursor: pointer; } + #landing .cta .primary { background: linear-gradient(90deg, rgba(120, 150, 255, 0.95), rgba(180, 130, 255, 0.95)); + color: #fff; border: none; box-shadow: 0 6px 34px rgba(120, 140, 255, 0.4); } + #landing .cta .primary:hover { filter: brightness(1.1); } + #landing .cta .ghost { background: rgba(255, 255, 255, 0.06); color: #cfe0f5; border: 1px solid rgba(140, 170, 230, 0.3); } + #landing .cta .ghost:hover { border-color: rgba(160, 190, 255, 0.6); } + #landing .note { margin-top: 18px; color: rgba(150, 170, 205, 0.55); font-size: 11px; letter-spacing: 1px; } + @keyframes gsSpin { to { transform: rotate(360deg); } } + @keyframes gsFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } } + @keyframes gsTwinkle { from { opacity: 0.55; } to { opacity: 1; } } + + /* ---- the grimoire (manual) ---- */ + #grimtrigger { position: fixed; top: 76px; left: 36px; z-index: 11; cursor: pointer; + color: rgba(180,200,235,0.75); font-size: 12px; letter-spacing: 0.5px; user-select: none; + border-bottom: 1px dotted rgba(160,185,225,0.4); } + #grimtrigger:hover { color: #eaf1ff; } + #grimoire { position: fixed; inset: 0; z-index: 60; display: none; overflow-y: auto; + background: radial-gradient(ellipse at 50% 0%, #0c1533 0%, #070c1c 60%, #03050e 100%); } + #grimoire.open { display: block; } + #grimoire .wrap { max-width: 720px; margin: 0 auto; padding: 60px 28px 90px; color: #d6e2f4; } + #grimoire .x { position: fixed; top: 18px; right: 24px; font-size: 26px; color: #9fb4d8; cursor: pointer; z-index: 61; } + #grimoire .x:hover { color: #fff; } + #grimoire .title { font-weight: 800; font-size: clamp(34px,6vw,52px); letter-spacing: 4px; + background: linear-gradient(90deg,#9fd0ff,#f6c8ff,#ffd98a); -webkit-background-clip: text; background-clip: text; + color: transparent; text-align: center; } + #grimoire .subtitle { text-align: center; color: rgba(165,185,218,0.7); font-style: italic; margin: 6px 0 40px; letter-spacing: 1px; } + #grimoire h2 { color: #9fd0ff; font-size: 17px; letter-spacing: 1px; margin: 34px 0 10px; font-weight: 700; } + #grimoire p { line-height: 1.75; color: rgba(205,218,240,0.9); margin: 8px 0; font-size: 14px; } + #grimoire .lead { color: rgba(220,230,248,0.95); font-size: 15px; } + #grimoire ul { list-style: none; padding: 0; margin: 8px 0; } + #grimoire li { line-height: 1.7; margin: 7px 0; padding-left: 20px; position: relative; font-size: 14px; + color: rgba(205,218,240,0.9); } + #grimoire li::before { content: "✦"; position: absolute; left: 0; color: rgba(150,180,255,0.6); font-size: 11px; top: 3px; } + #grimoire b { color: #eaf1ff; font-weight: 600; } + #grimoire kbd { background: rgba(120,150,255,0.16); border: 1px solid rgba(150,180,255,0.35); border-radius: 5px; + padding: 1px 7px; font-size: 12px; font-family: inherit; color: #eaf1ff; } + #grimoire code { font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; color: #b8e0c8; background: rgba(120,255,178,0.08); padding: 0 4px; border-radius: 4px; } + #grimoire .hr { height: 1px; background: linear-gradient(90deg, transparent, rgba(140,170,230,0.25), transparent); margin: 30px 0; } + #grimoire .foot { text-align: center; color: rgba(150,170,205,0.55); font-size: 12px; margin-top: 40px; font-style: italic; }
+
sign in
+
+
+ × +
GODSTRUMENT
+
an instrument played by the world
+
+
+ +
👁
+
+ +
+
+ + +
👁
+ + +
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
GODSTRUMENT
+
an instrument played by the world
+
the sun opens the filter · bitcoin plays the lead · an earthquake swells the reverb. + one instrument, played by the planet — and now, by you.
+
+ + +
+
✦ invite-only ✦ ask a friend for a code
+
read the grimoire
+
+
+
✦ the grimoire
+
+ × +
+
THE GRIMOIRE
+
how to play the world
+ +

Godstrument is an instrument whose player is the living planet. Roughly forty real feeds — the solar wind streaming off the Sun, the price of bitcoin ticking sub-second on Binance, an earthquake off the coast of Japan, every edit to Wikipedia on Earth, the phase of the Moon, the churn of the U.S. national debt, a wildfire catching somewhere in the dark — arrive as raw numbers, are cleaned into control signals, and are fired at one central hub. There the hub smooths them, learns their ranges, and pours them through a modulation matrix — a patchbay where every feed can be wired to a sound. The world already moves; here it moves something. You don't play the notes. You decide what drives what. Imagine, but also know: the sound you hear is the sky doing exactly what the sky is doing, routed through choices you made.

+ +
+ +

Getting in

+

Godstrument is invite-only. There is one shared planet — the same Sun, the same quakes, the same Moon reach every account, because there is only one world and everyone is standing on it. But your instrument is your own: the routing, the groups, the curves, the mix, the spells you save — that patch is yours.

+
    +
  • Your instrument is computed in your browser. The feeds flow in, the matrix evaluates, the voices sound — the whole live console runs on your machine, watching the planet in real time.
  • +
  • Your patch is saved to your account, so the wiring you compose — which quake opens which reverb, which market plays which lead — persists and travels with you.
  • +
  • Shared planet, personal instrument. We all hear the same M4.2 off the same fault line; what it does — a swell of void, a chosen bass note, nothing at all — is your composition.
  • +
+ +
+ +

How a feed becomes sound

+

A feed does not arrive as music. It arrives as a number in its own stubborn units — solar wind speed in kilometers per second (250800), BTC price in dollars, quake depth in kilometers, PM2.5 in micrograms over Delhi, debt.total in the tens of trillions. Between that raw honesty and a usable control signal sits a chain — five refinements, each earning its place — after which the signal enters the matrix and finds its voice.

+ +
    +
  • The raw number, in its own units. Each source is one small worker process that does nothing but read the world and emit it: USGS GeoJSON for quakes, Open-Meteo for Tokyo's weather, a Binance websocket for crypto, the Wikimedia SSE firehose for edits, the Swiss Ephemeris computed on demand for the sky. Honest, but mechanical, and wildly mismatched in scale and speed.
  • + +
  • The One-Euro filter — jitter without lag. Real signals shiver. A hand sensor trembles, a price feed flickers with noise. The One-Euro filter removes the shiver without the sluggish lag a normal smoother would add: it filters hard when the signal is still and opens up the instant the signal genuinely moves. In config.json each signal tunes it with min_cutoff (how much resting jitter to erase) and beta (how eagerly to let real motion through) — the Sun set gentle and slow (min_cutoff 0.4), the ToF hand fast and responsive (1.5), so the planet's slow feeds glide while your hand snaps.
  • + +
  • Adaptive normalization — auto-scaling an unknown range. A feed's range is often unknown or drifting: today's BTC volatility means nothing without knowing yesterday's. So the hub auto-scales everything to 0..1. Signals with a known span declare it (weather.temp maps -10..45°C); the restless ones learn their own — minmax tracks the highs and lows over a rolling window (BTC volatility over the last 120 samples), zscore centers on the recent mean (BTC price over 400). A drifting, boundless feed becomes a clean 0..1 that always uses its full musical range.
  • + +
  • Event envelopes — a rupture becomes a decaying pulse. Some things don't have a value; they happen. A quake, a Wikipedia edit, a camera flash, a new wildfire — a discrete event with no duration. The hub gives each a shape: a fast attack and a chosen decay, turning the instant into a pulse that swells and fades. A wiki edit is a sharp spark (attack 0.005, decay 0.25 — thousands per second, each a glitch); a quake is a slow bloom (decay 3.5, scaled by magnitude 0..7) that opens the void and takes seconds to close. The moment gets a body.
  • + +
  • The modulation matrix — where each cable is a decision. This is the patchbay, and where you compose. A route is one cable from a source to a voice, and every cable carries four choices: +
      +
    • an amount (-1..1) — how hard the feed leans, and which way. Negative inverts it: a feed that closes a filter as it rises.
    • +
    • a response curve — the feel of the lean. lin is honest and even, one-to-one. exp and exp3 stay low and then surge at the top, so the effect hides until the source is strong (the Sun opening the master filter, worse air erupting into glitch). log is the mirror — it leaps early then flattens, generous with small values. scurve eases in and out with a firm middle, the most musical for pads and swells (warmth brightening the pads, the Moon setting the tide of space). inv flips the sense entirely.
    • +
    • an optional gate (a threshold) — the cable stays silent until the source crosses it. Quakes open the reverb only past gate 0.35, so the small tremors of the everyday Earth pass unheard and only a real rupture opens the void.
    • +
    • an optional quantize — snap the signal to a scale so a data stream picks notes in a key instead of wobbling formlessly. You name a scale, a root (MIDI note), and a span of octaves. Available scales: chromatic, major, minor, dorian, phrygian, lydian, mixolydian, pentatonic, minor_pent, wholetone, hirajoshi. Bitcoin's price plays the lead in a minor pentatonic; deep quakes choose the bass note in a low minor — the Earth kept in key.
    • +
    +
  • +
+ +

Every cable pointed at the same voice is summed — so a destination is a chord of the world. pad.brightness alone is fed by Tokyo's warmth, the local daylight, the room's own brightness through the mic, aircraft altitude, a harmonious sky, fertile days on the biodynamic calendar, the birth rate, longer human lives, and the northern summer — nine feeds folded into one glow. The sum becomes a voice; the voice streams out as MIDI CC and notes, as OSC to Ableton or TouchDesigner, and to the live visualizer, where you watch the planet play the instrument you wired.

+ +
+ +

The sources — the world, listening

+ +

Forty-odd feeds, and not one of them was invented for you. Every source in this instrument is a real measurement of a real thing happening right now — a satellite over the Pacific, a trade clearing on Binance, a tremor under Honshu, the Moon at some true longitude computed to the arc-second. The hub does not synthesize the world; it listens to it, normalizes what it hears into a clean 0..1 stream, and hands that stream to the matrix as a modulator. What follows is the whole choir, grouped by where in the world each voice lives. For each: what it truly measures, the tempo it naturally moves at, and why this — of all things — deserved to be a voice.

+ +

Read every source through three lenses at once. The feed: the actual API or computation behind it. The character: how fast it moves, because tempo is destiny in a modulation matrix — a sub-second feed is a rhythm engine, a decade-scale feed is ballast that barely breathes. The lore: what it means that this signal has a seat in the ensemble. A signal's normalization range (its lo/hi in config.json) is its tuning: it tells the hub what counts as "silent" and what counts as "full open" for that voice.

+ +
+ +

Sky & space — the feeds that fall from above

+ +

sun.speed — solar wind speed. The literal velocity of the solar wind, in km/s, pulled live from NOAA's Space Weather Prediction Center (SWPC). Normalized 250→800 km/s: quiet solar wind sits near the floor, a coronal-hole stream or the leading edge of a CME shoves it toward the ceiling. Its filter is heavily damped (min_cutoff 0.4, β 0.01) so it drifts rather than jumps — a slow LFO that changes over minutes to hours as the Sun's weather washes over the Earth. In the starter patch the Sun opens the master filter (amt 0.85, exp): the single largest hand on the brightness of the entire instrument belongs to a star 150 million km away. When the heliosphere gusts, the whole record opens up. It is the oldest possible reason for a sound to get brighter — the Sun did it.

+ +

iss.vel — ISS ground speed. The ground-track velocity of the International Space Station, derived from its live position (open-notify / orbital elements). The station laps the Earth every ~92 minutes at roughly 7.66 km/s, so raw speed is nearly constant — which is why it's normalized minmax over a 60-sample window, letting the hub auto-scale the tiny real variations into usable motion. Character: a smooth, patient drift. It morphs the wavetable (amt 0.4) — the timbre slowly bends as the one permanently-crewed outpost above us circles. A human hand is up there right now; here it turns a knob on the timbre.

+ +

planes.count / planes.avgalt / planes.avgspeed — aircraft aloft. A live census of aircraft from OpenSky: how many are in the air in a region, their average altitude (0→13000 m) and airspeed (0→300 m/s). Count is minmax-normalized over 100 samples because "how many planes" swings between night and rush hour. Character: a swarm — dozens to hundreds of tracked objects, breathing on the diurnal cycle of human travel. Aircraft aloft = drone density (amt 0.5): the more of humanity is airborne, the thicker the drone. Altitude tilts the pad (amt 0.3): a sky full of cruising jets brightens the pads, a sky of low departures dims them. The drone is literally the sound of everyone who is flying.

+ +
+ +

Weather & air — the local troposphere

+ +

weather.temp / wind / pressure / precip / humidity — Tokyo's weather. Open-Meteo, keyless, at a fixed venue (Tokyo in the starter patch). Temperature -10→45°C, wind 0→30 m/s, pressure 970→1040 hPa, precip 0→10 mm, humidity 0→100%. Weather is the archetypal slow / mood feed — it moves over hours, so temp carries a gentle damped filter (min_cutoff 0.3, β 0.005). The mappings are almost synaesthetic: warmth = brighter pads (scurve, amt 0.6), wind speed = LFO rate (amt 0.55, so a gale literally modulates faster), barometric pressure = drone weight (amt 0.4, the heaviness of the air becoming the heaviness of the drone). This is the weather you'd feel if you stepped outside in Tokyo, transposed into how the room feels.

+ +

air.pm25 / pm10 / aqi — Delhi's air. Open-Meteo's air-quality endpoint, pointed at Delhi: PM2.5 (0→250 µg/m³), PM10 (0→400), US AQI (0→300). Slow, like weather, but pointed at one of Earth's most polluted skies on purpose. Delhi's air becomes grit (amt 0.75, exp) — particulate matter drives the saturation/distortion, so the dirtier the air a fifth of humanity breathes, the more the sound corrodes. Worse air, more glitch (aqi → glitch, amt 0.3, exp3 — a steep curve that stays clean until the air turns genuinely toxic, then breaks). This is the instrument's conscience: pollution you can't see, made into a texture you can't ignore.

+ +
+ +

Markets — money in motion

+ +

crypto.price / crypto.vel — Bitcoin. Live trades off the Binance websocket firehose. Price is zscore-normalized over a 400-sample window (so it's "how unusual is this price vs the recent run," not an absolute dollar figure); volatility (crypto.vel) is minmax over 120 samples with an aggressive, snappy filter (min_cutoff 2.0, β 0.15) so it reacts in near-real-time. This is the fastest feed in the instrument: sub-second chaos, a genuine rhythm engine. BTC volatility drives the hats (amt 0.8, scurve) and nudges the tempo (amt 0.25) — when the market convulses, the percussion densifies and the track leans forward. And Bitcoin plays the lead melody (crypto.price → lead.note, quantized to minor pentatonic, root 60 / C, 2 octaves) — the price doesn't wobble formlessly, it picks notes in a key. The market's fear and greed, rendered as a melody line that's always in tune.

+ +

market.velocity / market.turnover — your dealgod market. Your own deal-flow, read from the basegod warehouse (dealgod.price_events, ~4M rows) over the tailnet — a single read-only aggregate query, no writes. Binned into an activity curve (velocity) and an average-price curve (turnover), replayed compressed and jog-scrubbable. Both are pre-normalized 0→1. Character: a replay with a playhead, so it's scratchable like a record. Your market drives the hats (amt 0.7) and nudges tempo (amt 0.2), mirroring BTC; pricier gear moving = more grit (turnover → saturation, amt 0.5, exp); and your market plays the lead (turnover → lead.note, G dorian, root 55, 2 octaves). This is the one voice that is yours — your commerce, given a melody in a mode with a little melancholy built in.

+ +
+ +

Humanity — the species, in aggregate

+ +

wiki.rate / wiki.edit.event — the human pulse. The Wikimedia SSE stream — the real-time firehose of every edit to every Wikipedia, worldwide. Two signals fall out of it: wiki.rate, the smoothed global edit rate (minmax/200-window, a texture), and wiki.edit.event, a discrete impulse per edit (an event type with a fast attack of 0.005 and a 0.25s decay — a spike, not a level). Character: a relentless, chattering pulse, thousands of edits an hour. The internet's pulse = texture (wiki.rate → granular density, amt 0.6) is the ambient hum of collective attention; every human edit = a glitch burst (amt 0.9) means that somewhere on Earth, a person just fixed a typo or added a citation, and you heard it as a click. This is the loudest data source by volume — the README notes it's most of the recording footprint. It is humanity thinking out loud, made audible.

+ +

clock.pop / births / deaths / popvel — the vital rates. Modelled world vital statistics: population (8.0→8.3 billion), births/sec (0→8), deaths/sec (0→5), net growth/sec (popvel, 0→4). Not a live census — no such feed exists per-second — but a steady demographic model, so these are glacially smooth. Humanity's growth thickens the drone (popvel → drone.voices, amt 0.4); the birth rate lifts the pads (amt 0.2, brighter); the death rate adds weight (deaths → saturation, amt 0.2, grittier, heavier). The two ends of every human life are wired to opposite ends of the timbre — birth to light, death to grain — and both are always sounding, because both are always happening.

+ +
+ +

Earth & fire — the planet's violence

+ +

quake.event / quake.depth — earthquakes. The USGS all-hour GeoJSON feed — every earthquake on Earth in the last 60 minutes, refreshed live. quake.event is an event impulse scaled by magnitude (0→7) with a long 3.5s decay — a slow swell, not a click; quake.depth maps hypocenter depth (0→300 km). Character: rare, seismic, unpredictable — the definitive event-burst source. Earthquakes open the void (quake.event → reverb.size, amt 1.0, with a gate=0.35 so only real quakes trigger it) and swell the whole field (→ master.space, amt 0.9). Deep quakes choose the bass note (depth → bass.note, minor scale, root 28 / low E, 2 octaves) — a shallow tremor and a deep one pick different notes, so the Earth's fault lines are, quite literally, a bass sequencer you cannot predict. When the ground moves anywhere on the planet, the reverb blooms and the low end speaks.

+ +

fire.count / fire.event — wildfires. Active wildfires worldwide (fire.count, 0→600, damped filter) plus an impulse per newly-detected fire (fire.event, attack 0.01, 0.5s decay). Character: a slow-burning level with occasional flares. The world's wildfires burn the saturation (count → saturation, amt 0.4, exp — the more of the world is on fire, the more the sound scorches); each new fire flares a glitch (amt 0.8). Fire is elemental here in the plainest way: the planet's combustion becomes the instrument's distortion.

+ +
+ +

The economy — the ledger of the age

+ +

debt.total / debt.vel — the US national debt. Pulled keyless from the US Treasury: the total debt (normalized 38→42 trillion dollars, with the most damped filter in the config, min_cutoff 0.08) and the daily churn (debt.vel, 0→50 billion/day). Character: the slowest ballast in the instrument — the total barely moves, by design. The weight of the debt as a drone (total → drone.voices, amt 0.3): a number so large it's abstract, made into a low, ever-present mass in the mix. The debt churn grinds the saturation (vel → saturation, amt 0.4, exp): the daily motion of that number as grit. The debt is the drone you can't turn off — which is the point.

+ +

econ.inflation / econ.cpi_mom — inflation. US CPI from the BLS, keyless: year-over-year inflation (0→10%) and month-over-month CPI change (-1→2%). Slow, monthly-updated, damped. Inflation quietly presses the tempo (→ tempo.nudge, amt 0.2, scurve) and erodes the space (→ master.space, amt 0.3) — the reverb tightens and the track creeps faster as money loses value. It is a grinding pressure you feel before you name it, in the economy and in the mix alike.

+ +

world.poverty / hunger / fertility / lifeexp — the human condition. World Bank indicators, keyless: extreme poverty (0→20% of the world), undernourishment (0→15%), fertility rate (0→4), life expectancy (50→85 years). These change over years — the most glacial, almost-static feeds here, the deep tuning of the whole instrument's mood. Poverty weights the drone (amt 0.35), hunger grinds under everything (saturation, amt 0.25), longer lives, brighter pads (lifeexp, amt 0.2). The state of the species sets the baseline the fast feeds dance on top of.

+ +
+ +

The heavens — the sky, computed live

+ +

astro.moon / moon_lon / sun_lon / mars / venus / jupiter / saturn / mercury. Not fetched — computed, live, with the Swiss Ephemeris in Moshier mode (no data files, valid 3000 BC–3000 AD). The sky is generated on demand like the sun worker. Moon phase (0→1, most-damped filter min_cutoff 0.1); every planet's ecliptic longitude (0→360°). These are the purest LFOs in existence — real orbital motion, spanning the Moon's monthly wheel to Saturn's 29-year one. The Moon phase sets the tide of space (astro.moon → master.space, amt 0.6, scurve); the Moon's wheel drives the LFO (moon_lon → lfo.rate, amt 0.4); Saturn's slow wheel weights the drone (amt 0.4 — Saturn's longitude has its own ultra-damped filter, min_cutoff 0.08); Mars morphs the timbre (amt 0.3). The oldest instruments humans ever built were clocks for these bodies; here they're oscillators again.

+ +

astro.tension / harmony — the aspects. Computed from the same ephemeris: a count of hard aspects (squares, oppositions — tension, 0→8) and soft ones (trines, sextiles — harmony, 0→8). This is real geometry — the angular relationships between the planets right now — read through the old astrological grammar. Hard aspects = dissonant grit (tension → saturation, amt 0.45, exp); a harmonious sky brightens the pads (harmony → pad.brightness, amt 0.4, scurve). The literal shape of the solar system becomes consonance or friction in the sound.

+ +

astro.retro / mercury_retro — retrogrades. Boolean/count flags for planets in apparent retrograde motion, computed from velocity sign. Mercury retrograde smears the delay (mercury_retro → delay.feedback, amt 0.6 — the planet of communication turns backward and the echoes run long); the more retrogrades, the more glitch (astro.retro → glitch, amt 0.3, exp). Whatever you believe about the lore, the astronomy is exact — and the instrument leans into the myth on purpose.

+ +
+ +

The almanac — sowing by the moon

+ +

almanac.element / waxing / dec / fertile. The old plant-by-the-moon calendar, computed from the same sky by world_almanac.py — no data, no downloads. The zodiac's four elements cycle fire→earth→air→water, and biodynamic tradition maps them to crop types, so the Moon walks a slow four-step sequencer changing every ~2.25 days: earth=root, water=leaf, air=flower, fire=fruit/seed (almanac.element, damped). Also: waxing/waning (waxing — sow above vs below ground), the Moon's ascending/descending declination cycle (dec, ~27.3 days), and a fertility score (fertile). The Moon's element steps the timbre (element → wavetable.morph, amt 0.4 — a four-step timbral sequencer keyed to the garden); fertile days brighten the pads (amt 0.3, scurve); the Moon rising/falling sets the LFO (dec → lfo.rate, amt 0.25). A farmer's calendar older than the telescope, quietly conducting the instrument's character.

+ +

zodiac.year / element / hour — the Chinese zodiac. The twelve-animal cycle: the year's animal and element, and the hour animal (zodiac.hour), which turns every ~2 hours through the traditional double-hour cycle (0→1, damped). The hour animal turns the timbre (zodiac.hour → wavetable.morph, amt 0.3): across a day the timbre steps twelve times, through the Rat, Ox, Tiger and the rest. Time-of-day as a slow, mythic sequencer.

+ +
+ +

Your hand & room — the sensors in the space with you

+ +

tof.cx / cy / near — the hand sensor. A time-of-flight sensor (or its simulator) reading your hand's position: X and Y in frame (0→1) and proximity (near). All three carry snappy, responsive One-Euro filters (min_cutoff 1.5, β 0.1) so gesture tracks with low lag. Character: immediate, gestural, yours — the fastest human-scale input. Your hand X morphs the wavetable (amt 0.9 — the strongest single hand on the timbre), hand Y feeds the delay (cy → delay.feedback, amt 0.7, scurve), your hand pushes the filter further (near → filter.cutoff, amt 0.5, adding to the Sun's push). And tof.cx doubles as the warp-scrub control: it sets the playhead speed on the quake and dealgod replay loops. Your hand and a star both open the same filter — that's the whole thesis.

+ +

hand.open — hand openness (camera). From the vision worker: how open your palm is (0→1). Open palm opens the filter (amt 0.6) — and in config.json's controls it's also a macro: an open hand swells the entire @planet group's gain (0.2→1.4). One gesture leans on the whole local world at once.

+ +

light.lux / light.flash.event — ambient light. A light sensor: room brightness (0→1000 lux) and an impulse on sudden flashes (light.flash.event, attack 0.002, 0.15s decay — the sharpest, fastest envelope in the instrument). Room light sizes the reverb (lux → reverb.size, amt 0.5 — a bright room, a bigger space); a flash triggers a glitch (amt 1.0). The literal light in the room becomes the size of the imagined room in the sound.

+ +

audio.rms / audio.centroid — the room mic. From the audio worker: loudness (rms, minmax/120-window) and spectral centroid (centroid, 200→6000 Hz — "how bright the room sounds"). Room loudness feeds the space (rms → master.space, amt 0.4); room brightness → pad brightness (centroid → pad.brightness, amt 0.35). The room the instrument plays in is itself a source — clap, talk, or fall silent, and the mix answers. The space listens to its own space.

+ +

sky.day / sky.elev — the local sun. Computed from NOAA solar-position math for your venue: day/night state (sky.day, 0→1) and the Sun's elevation angle (sky.elev, -30→75°). Both ultra-damped (min_cutoff 0.15, β 0.002) — the slowest, most inevitable LFO there is: sunrise and sunset. Local daylight raises the pads (sky.day → pad.brightness, amt 0.7, scurve — the single strongest pull on the pads); the Sun's height sets the space (sky.elev → master.space, amt 0.3). Play the instrument at dawn and at midnight and it is a different instrument, because it knows where your Sun is. The room, the hand, and the planet — the same kind of thing, all the way up.

+ +
+ +

season.north / season.south — the seasons. Computed from the Sun's declination: how deep into summer each hemisphere is (0→1 each, damped). Northern summer brightens (season.north → pad.brightness, amt 0.3, scurve). The year's longest, slowest breath — a brightness that swells across months, opposite in the two halves of the world, so the instrument's high summer and deep winter are always both present, pulling against each other.

+ +
+ +

That is the choir. A star, a market, a fault line, the Moon, a species' birth and death rate, and your own open hand — each one a real number, each one wired to a real change in the sound, each one always sounding whether you attend to it or not. You do not add these voices. They are already singing. The instrument only asks: which of them are you listening for?

+ +
+ +

The living patch — what drives what

+ +

This is the factory routing: every cable in config.json, source by source, voice by voice. Each cable is a real feed normalized to 0..1, bent by a curve, scaled by an amount, and poured into one destination of the modulation matrix. lin is honest and linear; scurve eases in and out (a soft, musical S); exp and exp3 hug the floor and only bloom near the top (so grit and glitch stay clean until the world genuinely spikes). A gate silences the cable until the source crosses a threshold. quantize snaps a wandering number onto the notes of a scale, so a data stream sings in a key instead of wobbling formlessly. What follows is the whole instrument, wire by wire — imagine, but also know.

+ +
+ +

THE FILTER — the sky's hand on the brightness. The master low-pass filter is the instrument's eyelid: closed, everything is muffled and near; open, the whole field turns bright and present. Four cables reach for it, and every one is a thing that opens.

+
    +
  • sun.speed → filter.cutoff · amt 0.85 · exp — "the sun opens the master filter." The dominant cable in the whole patch. This is real solar wind speed from NOAA SWPC (250–800 km/s), the plasma actually streaming off the Sun past Earth right now. The exp curve keeps the filter half-shut through the quiet solar breeze and only throws it wide when a genuine gust arrives — so the Sun literally decides how bright the instrument sounds. It is the loudest voice because it is the largest object.
  • +
  • tof.near → filter.cutoff · amt 0.5 · lin — "your hand pushes it further." Hand proximity from the time-of-flight sensor (or its simulator). Where the Sun sets the ceiling, your hand leans in linearly and pushes past it — the one place where a human body and a star pull the same lever, which is the entire thesis of the instrument.
  • +
  • hand.open → filter.cutoff · amt 0.6 · lin — "open palm opens the filter (cam)." The webcam's read of hand openness. An open palm is an open sound: spreading your fingers spreads the spectrum. A second, independent human hand on the same eyelid.
  • +
+ +
+ +

THE LEAD & THE BASS — the market sings the top, the deep Earth sings the bottom. Only three cables carry pitch, and all three are quantized so the planet plays in key rather than sliding between notes.

+
    +
  • crypto.price → lead.note · amt 1.0 · quantize: minor_pent, root 60 (middle C), 2 octaves — "bitcoin plays the lead melody." The live BTC price from Binance, z-scored over a 400-tick window so only its motion matters, snapped onto a two-octave C minor pentatonic from middle C. The minor pentatonic is the scale that cannot hit a wrong note — so the most volatile number on Earth becomes a melody that is always, defiantly, musical. The market's mania, rendered singable.
  • +
  • market.turnover → lead.note · amt 1.0 · quantize: dorian, root 55 (G3), 2 octaves — "your market plays the lead." The dealgod feed's average deal price, snapped to G dorian. Dorian is minor-but-hopeful — a minor scale with a raised sixth, the mode of folk laments that still feel like they're walking uphill. Your own deal-flow gets its own lead line in its own key, a second melodist sharing the top of the mix with bitcoin.
  • +
  • quake.depth → bass.note · amt 1.0 · quantize: minor, root 28 (E1), 2 octaves — "deep quakes choose the bass note." The focal depth of the last earthquake (0–300 km) snapped to a two-octave E natural minor down in the sub-bass at E1. Literal and perfect: the deeper the rupture inside the planet, the deeper the note. The Earth's fracture depth is the pitch of the foundation. Natural minor because a quake is not hopeful.
  • +
+ +
+ +

THE RHYTHM — volatility is the pulse. Nothing here is a metronome; the hats and the tempo are driven by how agitated two markets are. Fast money makes fast rhythm.

+
    +
  • crypto.vel → perc.density · amt 0.8 · scurve — "BTC volatility drives the hats." BTC volatility (min-max over a 120-tick window, heavily smoothed) mapped through a soft S onto percussion density. When bitcoin thrashes, the hi-hats multiply; when it flatlines, they thin to almost nothing. The chaos of the order book is the busyness of the groove.
  • +
  • crypto.vel → tempo.nudge · amt 0.25 · scurve — "the market nudges the tempo." The same volatility, at a quarter strength, leans on the tempo itself — never seizing control, just pressing the track slightly faster when the market runs hot.
  • +
  • market.velocity → perc.density · amt 0.7 · scurve — "your dealgod market drives the hats." Your own market activity from the dealgod warehouse, running the hats in parallel with bitcoin — two independent economies co-authoring the rhythm.
  • +
  • market.velocity → tempo.nudge · amt 0.2 · scurve — "market activity nudges the tempo." And your market's busyness, too, presses gently on the clock.
  • +
  • econ.inflation → tempo.nudge · amt 0.2 · scurve — "inflation quietly presses the tempo." US inflation, year-over-year from BLS CPI (0–10%). Inflation is time speeding up on your money, so here it speeds up the track — a slow, structural pressure on the pulse rather than a jolt, exactly as it feels in a life.
  • +
+ +
+ +

THE PADS — daylight, warmth, life, and harmony make it bright. The pads are the instrument's emotional weather: their brightness is a chord of everything that means day, warmth, growth, and grace. Eight cables converge here, each a small vote for light.

+
    +
  • sky.day → pad.brightness · amt 0.7 · scurve — "local daylight raises the pads." A computed day/night value for your venue (NOAA solar position). The single strongest brightener: when the real sun is up where you're standing, the pads are luminous; at night they go dim and inward. The instrument knows what time it is outside.
  • +
  • weather.temp → pad.brightness · amt 0.6 · scurve — "warmth in Tokyo = brighter pads." Live temperature in Tokyo (Open-Meteo, −10 to 45°C). Warmth is warmth — a hot day in Tokyo literally warms the pad's tone, wherever you are.
  • +
  • astro.harmony → pad.brightness · amt 0.4 · scurve — "a harmonious sky brightens the pads." The count of soft aspects (trines and sextiles) among the real planets, computed from the Swiss Ephemeris (0–8). When the sky is geometrically agreeable, the pads glow. Astrology rendered as consonance — a flattering angle overhead becomes a brighter chord.
  • +
  • audio.centroid → pad.brightness · amt 0.35 · lin — "room brightness → pad brightness." The spectral centroid of the room mic (200–6000 Hz) — how trebly the room actually sounds. A bright room makes bright pads; the instrument listens to its own acoustic and answers in kind.
  • +
  • planes.avgalt → pad.brightness · amt 0.3 · lin — "altitude tilts the pad." The average altitude of aircraft overhead (OpenSky, 0–13,000 m). The higher the planes are flying, the higher the pad is tilted — thinner air, thinner and brighter tone.
  • +
  • almanac.fertile → pad.brightness · amt 0.3 · scurve — "fertile days brighten the pads." The biodynamic fertility score from the planting almanac. On a fertile day in the old sow-by-the-moon calendar, the pads open up — the garden's good days become good tone.
  • +
  • season.north → pad.brightness · amt 0.3 · scurve — "northern summer brightens." A computed northern-summer value. As the northern hemisphere tilts into summer across the year, the pads slowly brighten — the largest, slowest brightener in the room, a wheel that turns once annually.
  • +
  • clock.births → pad.brightness · amt 0.2 · lin — "the birth rate lifts the pads." Humanity's modelled births per second (~0–8). Every new life on Earth adds a sliver of light to the chord.
  • +
  • world.lifeexp → pad.brightness · amt 0.2 · lin — "longer lives, brighter pads." World life expectancy from the World Bank (50–85 years). The slow civilizational good news — that people live longer than they used to — is a quiet, persistent brightness under everything.
  • +
+ +
+ +

THE DRONE — weight, mass, and the slow bad news. The drone's thickness is set by drone.voices: how many oscillators are stacked into the sustained bed. Everything that routes here is something heavy — pressure, crowds, debt, poverty, the slowest planet. The more of it there is in the world, the denser and darker the floor.

+
    +
  • planes.count → drone.voices · amt 0.5 · lin — "aircraft aloft = drone density." The raw count of aircraft currently airborne (OpenSky). A swarm is a drone: every plane in the sky adds a voice to the bed. The world's air traffic becomes a literal choir of hums.
  • +
  • weather.pressure → drone.voices · amt 0.4 · lin — "barometric pressure = drone weight." Barometric pressure (970–1040 hPa). High pressure is heavy air, heavy air is a heavy drone — you can feel a weather front in the density of the bass.
  • +
  • clock.popvel → drone.voices · amt 0.4 · lin — "humanity's growth thickens the drone." Population growth per second — net humans added to Earth every tick. The species getting larger makes the floor thicker.
  • +
  • astro.saturn → drone.voices · amt 0.4 · lin — "Saturn's slow wheel weights the drone." Saturn's ecliptic longitude (0–360°), filtered nearly to a standstill (min_cutoff 0.08). Saturn is the planet of weight, limit, and time — its 29-year march around the zodiac becomes the slowest-turning voice in the drone, a gravity you'll never hear move but always feel.
  • +
  • world.poverty → drone.voices · amt 0.35 · lin — "the world's poverty weights the drone." The share of humanity in extreme poverty (World Bank, 0–20%). A structural sorrow held in the bass — the more of it, the heavier the world sounds.
  • +
  • debt.total → drone.voices · amt 0.3 · lin — "the weight of the debt as a drone." The US national debt itself (38–42 trillion), filtered to a crawl. Not its churn — its sheer mass, sitting in the floor as ballast. A number too large to feel, made audible as weight.
  • +
+ +
+ +

THE GRIT — saturation is where the world's suffering and combustion live. saturation is the distortion/drive stage — the instrument's grit and grind. Almost everything routed here is pollution, dissonance, death, fire, hunger, or debt, and most of it goes through exp curves so the grit stays clean until the world genuinely worsens, then bites hard.

+
    +
  • air.pm25 → saturation · amt 0.75 · exp — "Delhi's air becomes grit." Real PM2.5 in Delhi (Open-Meteo, 0–250 µg/m³) — one of the most polluted airsheds on Earth. The dominant grit source. The exp curve means clean-ish air passes clean, but as Delhi's air thickens with particulates the sound literally cakes with distortion. You are hearing the smog.
  • +
  • market.turnover → saturation · amt 0.5 · exp — "pricier gear moving = more grit." Your dealgod average price. When expensive things change hands, the mix grinds harder — high-stakes trade as texture.
  • +
  • astro.tension → saturation · amt 0.45 · exp — "hard aspects = dissonant grit." The count of hard aspects (squares and oppositions) in the real sky (0–8). Astrology's stressful angles become literal audible stress — the more the planets are at war overhead, the more the sound distorts. Dissonance in the heavens, dissonance in the drive.
  • +
  • debt.vel → saturation · amt 0.4 · exp — "the debt churn grinds the saturation." The daily churn of the national debt (up to 50 billion/day) — its rate, not its mass. The debt growing is a grinding sound; the faster it churns, the harder it grinds.
  • +
  • fire.count → saturation · amt 0.4 · exp — "the world's wildfires burn the saturation." The count of active wildfires worldwide (0–600). Combustion becomes distortion — the more the planet is literally on fire, the more the sound burns. The most direct metaphor in the patch: fire is drive.
  • +
  • world.hunger → saturation · amt 0.25 · lin — "hunger grinds under everything." World undernourishment (0–15%). A low, linear grind that never quite leaves — hunger as the grit beneath the whole mix.
  • +
  • clock.deaths → saturation · amt 0.2 · lin — "the death rate adds weight." Humanity's modelled deaths per second (~0–5). Where births lift the pads into light, deaths add grit to the drive — the two demographic rates pull the instrument in opposite directions, exactly as they pull the world.
  • +
+ +
+ +

THE GLITCH — every discrete shock in the world is a burst. glitch is momentary digital rupture — stutters, buffer-shatter, transient chaos. Its sources are almost all events: impulse feeds that spike to 1.0 the instant something happens, then decay. This is where the world interrupts the music.

+
    +
  • light.flash.event → glitch · amt 1.0 · fast attack (2 ms), 150 ms decay — "a flash triggers a glitch." A sudden flash of light in the room (sensor or sim). Full-strength, near-instant: a camera flash or a lightning strike shatters the audio for a blink. Light becoming a stutter.
  • +
  • wiki.edit.event → glitch · amt 0.9 · attack 5 ms, decay 250 ms — "every human edit = a glitch burst." The Wikipedia edit firehose (Wikimedia SSE stream) — every single time any human anywhere edits Wikipedia, a glitch fires. This is the busiest event source in the instrument: a relentless, chattering sparkle of collective human attention rewriting itself in real time. The pulse of the species, rendered as texture.
  • +
  • fire.event → glitch · amt 0.8 · attack 10 ms, decay 500 ms — "each new fire flares a glitch." Distinct from the slow fire.count grit: the moment a new wildfire is detected, a glitch flares and rings out over half a second. Ignition as an audible spark.
  • +
  • air.aqi → glitch · amt 0.3 · exp3 — "worse air, more glitch." Delhi's US AQI (0–300) through a steep cubic curve — so it contributes essentially nothing at moderate air and then erupts into instability only when the air becomes genuinely hazardous. Bad air doesn't just grind (that's PM2.5 → saturation); at its worst it makes the whole signal unstable.
  • +
  • astro.retro → glitch · amt 0.3 · exp — "the more retrogrades, the more glitch." The count of planets currently retrograde in the real sky. Retrograde motion is the illusion of a planet moving backward — apparent malfunction of the cosmos — so more retrogrades mean more glitch. When the whole solar system seems to stutter, so does the instrument.
  • +
+ +
+ +

THE SPACE & THE REVERB — the size of the void. Two related destinations sculpt depth: reverb.size is the room the sound sits in; master.space is the overall sense of scale and field. Earthquakes, moonlight, sunlight, and the room itself decide how vast the instrument feels.

+
    +
  • quake.event → reverb.size · amt 1.0 · gate 0.35 · decay 3.5 s — "earthquakes open the void." A live earthquake from USGS, normalized against magnitude (0–7). The gate is the crucial detail: nothing happens until the quake crosses 0.35 — small tremors are ignored — and then a real quake throws the reverb wide open and lets it ring out for three and a half seconds. The Earth cracks and the void yawns. Only serious quakes are allowed to move the room.
  • +
  • quake.event → master.space · amt 0.9 · "and swell the whole field." The same seismic event, ungated, also swells the total sense of space — so a big quake doesn't just add reverb, it makes the entire instrument feel momentarily enormous. The planet's rupture, felt as scale.
  • +
  • astro.moon → master.space · amt 0.6 · scurve — "the moon phase sets the tide of space." The real lunar phase (0 = new, 1 = full), filtered glacially (min_cutoff 0.1). The moon pulls tides on Earth; here it pulls the tide of space — the fuller the moon, the wider the field. A month-long swell you feel more than hear.
  • +
  • light.lux → reverb.size · amt 0.5 · lin — "room light sizes the reverb." Ambient light in the room (0–1000 lux). A brighter room reads as a bigger room — the reverb grows with the light you're actually standing in.
  • +
  • audio.rms → master.space · amt 0.4 · lin — "room loudness feeds the space." The mic's loudness (RMS). The louder the room actually is, the larger the field opens — the instrument breathes with the noise around it.
  • +
  • sky.elev → master.space · amt 0.3 · lin — "the sun's height sets the space." The sun's elevation above your local horizon (−30° to 75°), filtered nearly still. High noon feels expansive; a low sun draws the space in. The arc of the day, as depth.
  • +
  • econ.inflation → master.space · amt 0.3 · lin — "inflation erodes the space." Inflation's second cable: beyond pressing the tempo, it feeds the field — a slow structural pressure that inflation, fittingly, is everywhere in.
  • +
+ +
+ +

THE TEXTURE & TIMBRE — the internet's pulse and the drifting waveform. Two destinations shape the grain and shape of the sound. granular.density controls the cloud of tiny grains that make up the pad's texture; wavetable.morph sweeps the oscillator through its bank of waveforms, continuously changing the fundamental character of the tone.

+
    +
  • wiki.rate → granular.density · amt 0.6 · lin — "the internet's pulse = texture." The global rate of Wikipedia edits (min-max over a 200-sample window) — not each edit (that's the glitch) but the overall tempo of human editing, right now. When the world is busy writing itself down, the texture thickens into a dense granular cloud; in the quiet hours it thins. The collective attention of the species as grain.
  • +
  • tof.cx → wavetable.morph · amt 0.9 · lin — "your hand X morphs the wavetable." The strongest morph cable: your hand's X position over the ToF sensor sweeps the waveform bank directly. This is the most immediate, physical, "instrument" gesture in the whole patch — move your hand sideways and the tone visibly transforms under your fingers.
  • +
  • almanac.element → wavetable.morph · amt 0.4 · lin — "the moon's element steps the timbre." The planting element of the current moon sign, which cycles fire → earth → air → water (fruit → root → flower → leaf) every ~2.25 days. So the timbre walks a slow four-step sequencer keyed to the old biodynamic garden calendar — the moon literally steps the waveform through four characters as it crosses the zodiac.
  • +
  • iss.vel → wavetable.morph · amt 0.4 · lin — "the ISS drifts the timbre." The ground speed of the International Space Station as it orbits (min-max, 60-sample window). A gentle, orbital drift in the tone — the fastest human-crewed object, felt as a slow wander in the waveform.
  • +
  • astro.mars → wavetable.morph · amt 0.3 · lin — "Mars morphs the timbre." Mars's longitude (0–360°). Mars's ~2-year circuit adds another slow hand on the morph — the red planet's wheel, turning the tone.
  • +
  • zodiac.hour → wavetable.morph · amt 0.3 · lin — "the hour animal turns the timbre." The Chinese hour-animal, which changes every two hours through the twelve-animal cycle. Every two hours a new animal takes the shift and nudges the waveform — the day divided into twelve timbral moods.
  • +
+ +
+ +

THE LFO — the wind and the moon set the wobble. lfo.rate is the speed of the instrument's low-frequency modulation — the rate of its breathing, its wobble, its slow sweep. Three cables set it, and all three are things that cycle.

+
    +
  • weather.wind → lfo.rate · amt 0.55 · lin — "wind speed = modulation rate." Wind speed in Tokyo (0–30 m/s). The dominant LFO driver, and the most intuitive one: the harder the wind actually blows, the faster the instrument sways. You can hear a gale as a quickening wobble.
  • +
  • astro.moon_lon → lfo.rate · amt 0.4 · lin — "the Moon's wheel drives the LFO." The Moon's longitude through the zodiac (0–360°), a full turn every ~27 days. Not the moon's phase but its position — the fastest of the celestial wheels, driving the slow breath of the modulation.
  • +
  • almanac.dec → lfo.rate · amt 0.25 · lin — "the moon rising/falling sets the LFO." The Moon's ascending/descending declination cycle (~27.3 days) — whether it's climbing or sinking in the sky. A second lunar wheel on the LFO, subtly out of phase with the first.
  • +
+ +
+ +

THE DELAY — the echoes smear when Mercury turns and your hand descends. delay.feedback controls how much of the echo feeds back into itself — low is a single slap, high is a long, smearing, self-devouring tail.

+
    +
  • tof.cy → delay.feedback · amt 0.7 · scurve — "your hand Y feeds the delay." Your hand's height over the ToF sensor. Raise and lower your hand and the echoes lengthen and shorten under a soft S-curve — the vertical partner to the horizontal wavetable morph, so both axes of your hand shape the sound at once.
  • +
  • astro.mercury_retro → delay.feedback · amt 0.6 · lin — "Mercury retrograde smears the delay." Whether Mercury is retrograde right now (0 or 1), from the real ephemeris. Mercury rules communication and messages; retrograde Mercury is the folklore of things echoing back, repeating, garbling. So when Mercury actually turns retrograde in the sky, the delay's feedback climbs and every echo smears into the next. The lore made literally audible — for the weeks it's true, and only then.
  • +
+ +
+ +

How it all sums. Every cable that shares a destination adds — the pads are the sum of daylight and Tokyo's warmth and a harmonious sky and the room's own brightness and the birth rate; the grit is Delhi's air plus the wildfire count plus the death rate plus hard aspects plus hunger, all at once. Nothing here is a solo. At any given second the instrument is playing the whole state of the world: the Sun holding the filter open, bitcoin singing the lead while the deep Earth answers in the bass, the Wikipedia firehose glittering, an earthquake ready to blow the void wide, the moon setting the tide of space, the debt sitting in the floor, your hand morphing the waveform and feeding the delay. This is the factory patch — and config.json is where you rewire any of it.

+ +
+ +

The vibes — grouping by feeling

+ +

A vibe is not a folder. It is a mood you can grab. Godstrument's ~40 real feeds are already sorted once by what they are — the modulation matrix, source to voice. The vibes sort them a second time by how they feel, and that second sorting is where the instrument becomes playable by hand.

+ +

The rule that makes vibes powerful is the rule that makes them strange: a single source lives in several vibes at once. BTC volatility (crypto.vel) is a member of cosmos, of market, and of fire — three feelings, one feed. The moon phase (astro.moon) belongs to heavens, to light, and to water. So when you lean on one vibe, the source it shares with another vibe ripples sideways: press fire and the market glows hotter too, because they are wired to the same volatility. Nothing here is a clean partition — it is a web of overlapping intents, exactly the way a real feeling is never only one thing.

+ +

Each vibe carries three macros you can seize at any moment:

+
    +
  • mute — silence every member of the vibe at once. Cut dark and the whole shadow ballast drops out; the field lifts.
  • +
  • freeze — hold every member at its current value, a photograph of the world. The frozen sources stop breathing while everything outside the vibe keeps moving. (This is the same freeze exposed on pad 20 for @planet — "freezes the planet in place.")
  • +
  • gain — swell or fade the vibe's total contribution. In the factory patch an open palm rides @planet's gain from 0.2 to 1.4, and hand proximity leans on @cosmos — you conduct a whole feeling with one hand.
  • +
+ +

The orbits. Some vibes are bound to a planet, and when a vibe is on a planetary orbit its gain waxes and wanes on its own — a slow tremolo at that planet's real orbital rate, scaled from orbit_base_seconds: 60. Mercury whips around in a blink; Mars breathes at roughly 113 seconds; Saturn takes about 29 minutes to complete one swell; Neptune drifts across hours. You are not hearing a metaphor for the planets — you are hearing the planets keep time. Six vibes are pinned to a sky; the other eight are elemental and archetypal, waiting for your hand or a MIDI knob to move them.

+ +
+ +

The six orbiting vibes — the ones that move themselves, each turning at its planet's true period.

+ +
    +
  • planet — "the local world" · orbit: earth. The feeling of right here, right now, outside your window. Members: temperature (Tokyo), wind speed (Tokyo), air pressure, PM2.5 (Delhi), local day/night, local sun elevation. This is the weather-body of the instrument — warmth brightening the pads, wind driving the LFO, pressure weighting the drone, daylight lifting everything, the local grit of unbreathable air. It rides Earth's own year, and it is the vibe your palm conducts directly: open your hand and the local world swells.
  • + +
  • cosmos — "the shared sky" · orbit: saturn (~29 min swell). The feeling of the vast machinery we all sit under. Members: solar wind speed, ISS ground speed, aircraft aloft, BTC volatility. The sun opening the master filter, the station drifting the timbre, ten thousand planes thickening the drone, the market's fever — the great shared traffic of the heavens and the atmosphere, all breathing on Saturn's patient 29-minute tide. Reaching your hand toward the sensor "leans on the cosmic layer."
  • + +
  • human — "humanity" · orbit: mars (~113 s). The feeling of the species, alive and busy, in aggregate. Members: global edit rate (the pulse of everyone editing the encyclopedia at once), population growth / sec, births / sec. The internet's texture, humanity's growth thickening the drone, the birth rate lifting the pads. It swells and fades every ~113 seconds on the war-planet's wheel — Mars, because we are a restless, multiplying, world-shaking animal.
  • + +
  • market — "your market" · orbit: mercury (a whip). The feeling of commerce at speed — money changing hands faster than thought. Members: BTC volatility, dealgod market activity, dealgod avg price. It drives the hats, nudges the tempo, grinds the saturation when pricier gear moves. Bound to Mercury — messenger, trader, quicksilver — so this vibe whips, waxing and waning almost too fast to track, the way a market does. Fittingly, knob 2 "liquifies the market" by smoothing its volatility.
  • + +
  • heavens — "the sky" · orbit: neptune (hours). The feeling of fate, aspect, the slow turning of the actual planets overhead. Members: moon phase, sky tension (hard aspects), sky harmony (soft aspects), Saturn longitude, Mars longitude. The moon setting the tide of the master space, hard aspects grinding dissonance, soft aspects brightening the pads, Saturn's slow wheel weighting the drone. This is the astrological body — and it drifts on Neptune's oceanic, hours-long swell, the dreamiest and least hurried gain in the instrument.
  • + +
  • summer — "☀ summer" · no orbit. The feeling of the year at its warm apex — light and heat as a single glow. Members: northern summer, southern summer, temperature (Tokyo), local day/night. Two hemispheres' summers plus warmth plus daylight, all of them pushing pad brightness — so this vibe is almost pure luminance. Because season.north and season.south are always in opposition, one hemisphere's summer is always answered by the other's winter: the vibe never fully sleeps, it just migrates across the equator with the calendar.
  • +
+ +
+ +

The shadow and the bright — the central polarity of the whole instrument. These two vibes are the ballast and the buoyancy; play them against each other and you set the emotional water-line of everything.

+ +
    +
  • dark — "the shadow" · no orbit. The feeling of the world's weight — everything grinding, eroding, ending. Members: debt daily churn, US inflation, PM2.5 (Delhi), earthquake, deaths / sec, sky tension, extreme poverty, undernourishment. Look at where these route and the darkness is literal grit: debt, deaths, dirty air, hunger, hard aspects all pile into saturation — distortion as suffering. Quakes tear open the reverb and swell the whole field; inflation erodes the master space; poverty weights the drone. This is the low, grinding, dissonant undertow, the ballast that keeps the instrument from floating away into prettiness. Mute it and the sun comes out.
  • + +
  • light — "the bright" · no orbit. The feeling of the world answering back — life, tenderness, growth. Members: births / sec, moon phase, sky harmony, biodynamic fertility, local day/night, world life expectancy, world fertility rate. Where dark grinds the saturation, light lifts the pad brightness: births, harmony, fertile days, daylight, longer lives all raise the glow. The moon phase sits in both vibes at once — it is the hinge between shadow and bright, the one body that is both night and light. Play light up against dark down and the instrument becomes hopeful; invert them and it becomes a dirge. This single opposition is the loudest lever in the Grimoire.
  • +
+ +
+ +

The four elements — fire, earth, air, water. The oldest way of sorting the world, wired straight into the sound. Each gathers the feeds that belong to its element, whatever category they came from.

+ +
    +
  • fire — "🔥 fire" · no orbit. The feeling of heat, ignition, the thing that burns. Members: wildfires worldwide, new wildfire (event), Mars longitude, solar wind speed, BTC volatility. Literal fire (the world's live wildfire count burning the saturation, each new blaze flaring a glitch) joined to the fire-planet Mars, to the sun's own wind, and to the market's volatility — because a hot market is fire. This is the most aggressive element: grit and glitch and heat.
  • + +
  • earth — "⛰ earth" · no orbit. The feeling of mass, depth, the immovable and the crushing. Members: quake depth, US national debt, extreme poverty, Saturn longitude. Deep quakes choosing the bass note from far underground, the sheer 40-trillion-dollar weight of the debt as a drone, poverty as ballast, and Saturn — lord of stone, limit, and gravity — weighting the low end. Earth is the vibe of everything heavy and buried and slow.
  • + +
  • air — "💨 air" · no orbit. The feeling of the moving atmosphere and everything carried on it. Members: wind speed (Tokyo), PM2.5 (Delhi), aircraft aloft, global edit rate. Real wind driving the LFO, real particulates hanging in real air, thousands of planes literally aloft, and the internet's edit-rate as the invisible signal on the wind. Air is motion, breath, and transmission — the medium things travel through.
  • + +
  • water — "💧 water" · no orbit. The feeling of flow, tide, moisture, the pull of the moon. Members: precipitation, humidity, moon phase, southern summer. Falling rain, hanging humidity, the moon that moves the tides, and the southern hemisphere's warm wet season. Water is the softest, most fluid element — and it shares the moon with both heavens and light, so the tide is never far from the sky.
  • +
+ +
+ +

The archetypes — two last vibes that answer each other the way dark answers light: one of pure meaning, one of pure money.

+ +
    +
  • spirit — "✨ spirit" · no orbit. The feeling of the sacred, the fertile, the omen-in-the-hour. Members: sky harmony, biodynamic fertility, hour animal (2h cycle), births / sec. A harmonious sky, the biodynamic almanac's fertile days, the Chinese zodiac's hour-animal turning the timbre every two hours, and the raw fact of new life arriving. Spirit is the vibe of grace and meaning — soft, bright, generative. It is the near-opposite of wealth: value without price.
  • + +
  • wealth — "💰 wealth" · no orbit. The feeling of money as a thing with weight and melody. Members: BTC price, dealgod avg price, dealgod market activity, US national debt. Bitcoin literally playing the lead melody (quantized to a minor pentatonic), your own market's turnover playing its own lead in dorian, activity driving the hats, and the national debt droning underneath as the shadow-side of all wealth. Where spirit is value-without-price, wealth is price-made-audible — and the debt sitting inside it is the reminder that every fortune casts a shadow.
  • +
+ +

Fourteen feelings, ~40 feeds, endless overlap. Grab one and the whole planet tilts toward it.

+ +
+ +

The heavens

+ +

Above the instrument turns the oldest sequencer there is. world_ephemeris.py does not fetch the sky — it computes it, with the Swiss Ephemeris running in Moshier mode: no data files, no downloads, no network, good from 3000 BC to 3000 AD. The planets are generated on demand from the current Julian day, exactly the way the sun worker generates the dawn. This is the opposite of big data — a whole cosmos conjured from a single timestamp, refreshed every 20 seconds. As above, so below; as computed, so sounded.

+ +

Astrology is perfect fuel for an instrument for one honest reason: it is inherently cyclic at wildly different rates. The Moon wheels through all twelve signs in a month; Saturn takes twenty-nine years to close its ring. Feed those angles in and you have a bank of natural LFOs spanning seconds to a lifetime — oscillators no software could make you wait long enough to hear, except that the real sky has already been running them since before the room existed.

+ +
+ +

The moon phase — the tide of space. The worker takes the Moon's ecliptic longitude minus the Sun's, the phase angle, and turns it into illumination with illum = (1 − cos(angle)) / 2 — a clean cosine swell from 0 at new moon to 1 at full. That single number rides astro.moon into master.space at amount 0.6 on an s-curve: the moon phase sets the tide of space. When the disc fills, the whole field floods and the reverb grows oceanic; at the dark of the moon the space contracts to a held breath. It is the slowest breath the instrument takes — one full inhale-and-exhale every 29.5 days — and everything else plays inside it.

+ +

The seven wheels. The worker emits ecliptic longitude (0–360°) for Moon, Sun, Mercury, Venus, Mars, Jupiter and Saturn — each a sawtooth ramp that resets once per orbit as the body crosses 0° Aries. These are the LFOs:

+ +
    +
  • astro.moon_lon — the fast wheel, ~13° a day, a full turn a month → lfo.rate (amount 0.4). The Moon's position in the zodiac literally sets the modulation rate; the wheel drives the wobble.
  • +
  • astro.mars — a red two-year cycle → wavetable.morph (0.3). Mars morphs the timbre — a slow drift of the waveform's shape, keyed to the war-planet's march.
  • +
  • astro.saturn — the 29-year ring, heavily smoothed (min_cutoff 0.08, the most glacial filter in the config) → drone.voices (0.4). Saturn's slow wheel weights the drone. Saturn is time, limit, gravity, the lord of heaviness — so it is the one hand on the drone's mass, thickening it across a span most players will never live to hear complete.
  • +
+ +

Venus and Jupiter are computed too but held in reserve — they feed the aspect engine rather than a cable, present in the sky's math even when they aren't singing.

+ +

Aspects — the angles between the wanderers. Every 20 seconds the worker measures the angular distance between all pairs of bodies and asks how close each pair sits to a named aspect, weighting by orb (nearer = stronger). It sorts them into two moods:

+ +
    +
  • HARD — conjunction (0°, orb 8°), opposition (180°, orb 8°), square (90°, orb 7°): the aspects of tension, friction, the grind of forces pulling against each other. Their summed closeness rides astro.tension into saturation on an exponential curve (0.45): hard aspects = dissonant grit. When Mars squares Saturn the sky itself distorts the signal.
  • +
  • SOFT — trine (120°, orb 7°), sextile (60°, orb 5°): the aspects of ease and flow. Their closeness rides astro.harmony into pad.brightness on an s-curve (0.4): a harmonious sky brightens the pads. A well-aspected heaven opens the light.
  • +
+ +

So the same instant of sky is read twice — once for what strains and once for what agrees — and grit and glow are dealt out in exact proportion to the geometry overhead. Both signals are gently smoothed (min_cutoff 0.2) so an aspect arrives as a swell, not a switch.

+ +

Retrogrades — the backward planets. The ephemeris runs with FLG_SPEED, so it knows not just where each body is but which way it's moving. Any planet (never the Moon) with negative longitude speed is retrograde — apparently walking backward against the stars. Two signals fall out:

+ +
    +
  • astro.mercury_retro — 1 when Mercury is retrograde, else 0 → delay.feedback (0.6). Mercury retrograde smears the delay. Mercury is the messenger, the ruler of signal and communication; when it turns backward the folklore says messages garble and echo — and so the delay's feedback climbs, the past keeps returning, the signal will not resolve. Three or four times a year, for weeks, the instrument's echoes literally get muddier.
  • +
  • astro.retro — the fraction of all bodies currently retrograde → glitch on an exp curve (0.3). The more retrogrades, the more glitch. A sky where many wanderers reverse at once is a sky out of joint, and the instrument stutters in sympathy.
  • +
+ +

In the heavens concept group these live together (astro.moon, tension, harmony, saturn, mars), and can be assigned Neptune's orbit — the whole sky-layer then waxing and waning on Neptune's ~2.7-hour relative pulse, a cosmos breathing inside the cosmos.

+ +
+ +

The almanac

+ +

From the very same computed sky, world_almanac.py reconstructs the oldest working calendar humans ever kept: the biodynamic planting almanac, sowing by the moon. Nothing is fetched — the Moon's sign, phase and declination all fall out of the same Swiss-Ephemeris call, refreshed every 30 seconds. The Moon becomes a gardener walking the beds, and the instrument follows her from row to row.

+ +

For millennia the rule was simple: the sign the Moon is passing through tells you what to plant, and her phase tells you whether to plant it. The zodiac's twelve signs cycle through four elements in a fixed order — fire, earth, air, water — and biodynamic tradition binds each element to a part of the plant. As the Moon crosses roughly one sign every ~2.25 days, she steps through a slow four-part sequence of crop-types:

+ +
    +
  • EARTH signs → ROOT days — Taurus, Virgo, Capricorn. Tend what grows below: carrots, potatoes, the hidden weight.
  • +
  • WATER signs → LEAF days — Cancer, Scorpio, Pisces. Tend the green: lettuce, the parts that drink.
  • +
  • AIR signs → FLOWER days — Gemini, Libra, Aquarius. Tend the bloom, the reaching-outward.
  • +
  • FIRE signs → FRUIT / SEED days — Aries, Leo, Sagittarius. Tend the ripening: tomatoes, grain, the seed that carries on.
  • +
+ +

The worker computes this with sign = moon_longitude // 30, then elem = sign % 4 (0 fire, 1 earth, 2 air, 3 water), and maps it to the crop ["fruit", "root", "flower", "leaf"]. It emits almanac.element as a quantized staircase — 0, ⅓, ⅔, 1 — heavily smoothed (min_cutoff 0.1) so each step is a soft glide. That staircase drives wavetable.morph (amount 0.4): the moon's element steps the timbre. This is the heart of the almanac's sound — the Moon walks the garden as a four-step sequencer of timbre. Root days give one waveform, leaf days another, flower and fruit their own; every ~2¼ days the instrument's fundamental character clicks over to the next bed, and there is no way to rush it, because the Moon sets the pace.

+ +
+ +

Waxing and waning — above ground or below. The same phase angle the ephemeris uses splits the month in two: waxing = 1 when the angle is under 180°. The old rule — sow above-ground crops as the moon fills, root crops as it empties — the sap thought to rise toward a growing moon and sink toward a dwindling one. The instrument carries almanac.waxing as this clean above/below flag, the calendar's simplest bit.

+ +

Ascending and descending — the second month. Beyond phase, the Moon has a whole other cycle the almanac watches: her declination, how high or low she rides against the celestial equator, swinging north and south over ~27.3 days — a rhythm distinct from the 29.5-day phase, so the two beat slowly against each other. The worker pulls it from an equatorial-coordinate call and normalizes declination into almanac.dec (0..1, min_cutoff 0.1), which drives lfo.rate (0.25): the moon rising and falling sets the LFO. In the tradition an ascending Moon is the season of harvest and grafting, a descending Moon the time to plant and transplant — and here it becomes a second, slower hand on the modulation's speed, gently offset from the phase-tide so nothing in the sky ever lines up twice.

+ +

The fertility score. The worker blends three of these into one favourability number — fertile = 0.45·illumination + 0.35·ascending + 0.20·(root-or-leaf day): fullest and brightest when the Moon is bright, climbing north, and standing in a root or leaf sign — the classic good-sowing conjunction. It rides almanac.fertile into pad.brightness on an s-curve (0.3): fertile days brighten the pads. On the almanac's most propitious days the instrument's pads open of their own accord, as if the sound itself were readier to grow.

+ +

These four — element, waxing, declination, fertility — gather in the spirit and light concept groups (almanac.fertile beside astro.harmony, clock.births, zodiac.hour), the bright and living half of the world, where the Moon's slow tour of the garden lends its patience to everything it touches.

+ +
+ +

Playing it — the gestures

+ +

The console is not a picture of the instrument. It is the instrument. Every sphere, every cable, every dial answers to the hand. Nothing here writes to config.json — the edits ride the same websocket the data rides (add_route · remove_route · set_route · make_group), so the modulation matrix rewires beneath your fingers in real time, live, on stage, mid-note.

+ +

Learn these seven gestures and the whole planet is under your hands:

+ +
    +
  • Click any node — toggle it on or off. A source sphere (the sun, an earthquake, Delhi's air, bitcoin's volatility) or a voice (lead, bass, pad, drone, perc): one click mutes it, and the node takes a red slash. Silence the sun and the master filter stops breathing with the solar wind; silence perc and BTC's chaos stops driving the hats. Click again — it returns.
  • +
  • Drag a source onto a voice — lay a new cable. This is composition by hand. Drag quake.depth onto lead.note and deep earthquakes start choosing the melody; drag weather.wind onto drone.voices and Tokyo's gusts thicken the choir. The cable is born live at a default amount, ready to bend.
  • +
  • Shift-click any node — open its tab. The inspector tells you what the thing is (its real feed and label — solar wind speed, PM2.5 over Delhi, the dealgod market's average price), its vibe (which groups claim it), its live value ticking in real time, and every cable in and out — each with an amount slider to lean harder or lighter and a × to unpatch it entirely. This is where a rough idea becomes a mix.
  • +
  • ⌘/Ctrl-click several sources, then group them — mint your own vibe. Multi-select spheres by feeling, not category — a shadow of debt and inflation and quakes and the death rate, a bright of births and moonlight and fertility — and group them into a new named macro you can then mute, freeze, or gain as one hand-sized thing. The factory ships fourteen such vibes (planet, cosmos, human, market, heavens, dark, light, and the seven elemental + seasonal blends); yours join them.
  • +
  • ♪ (top-right) — wake the sound. Browsers hold audio until a human asks. This is the ask. One click and the in-browser synth spins up, and the planet — already flowing as data — becomes audible.
  • +
  • The godtime dial (top) — set the pulse. Drag it to choose a tempo from 40 to 180 BPM, with the real planets of tonight's sky wheeling around it as you turn. Click the dial to lock the tempo where you left it — otherwise the data itself keeps nudging it (bitcoin's velocity, the dealgod market, inflation, each with a small hand on the clock).
  • +
  • Press P — performance mode. The editing chrome vanishes, the readouts declutter, and a rotating line of dispatches from the world (bitcoin at $62,902 · the moon is 81% lit · mercury is retrograde · M4.2 earthquake) rises for the audience. Put the console on the projector, hit P, and conduct.
  • +
  • Press C — chakra view. The sources leave their column and take up their stations on the subtle body: seven wheels on a spine of light, crown to root, each feed orbiting the chakra it belongs to — the sky's machinery at the crown, the omens at the third eye, the species talking at the throat, weather and air at the heart, fire and money at the solar plexus, birth and water at the sacral, quakes and debt and the mortal weight at the root. Each wheel glows with the live average of its members and spins its traditional petals, counter-rotating wheel to wheel. Drag empty space to spin the whole body 360°, drag up/down to tilt, flick and let momentum carry it. Everything still works in there: click a node to mute it, drag it onto a voice to patch, shift-click for its tab. C again and the sources glide home.
  • +
  • Right-click anything — the everything menu. Every node carries its full settings under the right button: mute, solo, a level fader (0–2×), a trim offset, every cable it carries with its amount slider and an unpatch ×, and a nested patch to → list for laying new cables without dragging. Right-click the empty sky for the view menu. And the modifiers, for the fast hands: click mutes · ⇧-click opens the node's tab · ⇧-drag rides the level up and down · ⌥-click solos a source · ⌘-click multi-selects for grouping · ⌘⇧-click resets a node to neutral. People play differently; the instrument shouldn't care which hand you reach with.
  • +
  • Click a wheel — go inside it (mind mode). In chakra view, click any chakra's core and the camera steps into the wheel: its mandala of petals turns around your whole field of view, and that chakra's feeds circle you — drag to look around the full 360°. A vector console appears under your hands: 12 keys of that wheel's own scale (C minor pentatonic at the root, rising key by key to B hirajoshi at the crown), played by clicking, by the Q] row, or by any connected MIDI keyboard — every note runs through the world's own reverb and grit, so you are jamming inside the instrument, in that chakra's mode, while the planet plays around you. travel the spine wheel to wheel; esc steps back out. And for powerful machines, right-click the sky and set graphics to ultra ✦: every orbiting feed grows a glowing comet trail, and the orbits breathe so the trails weave slow spirals.
  • +
+ +
+ +

The godtime dial

+ +

At the top of the console turns a small orrery — a real map of tonight's sky, the Moon and planets in their true longitudes, computed live by the Swiss Ephemeris (Moshier mode, no downloads, valid 3000 BC to 3000 AD). It is beautiful, and it is also the transport. The clock of the whole instrument is a picture of the heavens.

+ +

This is deliberate. In Godstrument time itself is planetary. The dial is the godtime — drag it and you set the tempo anywhere from 40 to 180 BPM, the orrery wheeling to follow your hand; click it to lock that tempo in place. Leave it unlocked and the world conducts: several feeds carry a small hand on the clock — crypto.vel nudges tempo at amount 0.25, the dealgod market's velocity at 0.2, US inflation quietly presses it at 0.2. Lock the dial and you take the baton back; the data still plays, but no longer on the beat.

+ +

Because the orrery is rendered client-side, in each listener's own browser, every listener conducts their own godtime. Two people on the same hub can run the same planetary data at different tempos, each with their own locked or drifting clock. The sky is shared; the pulse is yours.

+ +
+ +

Making it audible — three ways

+ +

The matrix pours out clean control values whether or not anyone is listening. Choosing how to hear it is choosing which instrument the planet plays.

+ +

One — the built-in browser synth. Click and a full voice rack wakes inside the page: lead (bitcoin's price and your market's average price both quantize to it — minor pentatonic and G dorian), bass (quake depth chooses its notes in a low minor), pad (brightened by Tokyo's warmth, daylight, harmony, the birth rate, longer lives), drone (thickened by aircraft aloft, barometric pressure, Saturn's slow wheel, the weight of the national debt), and perc (BTC volatility and market activity drive the hats). Over them sit the effects the world modulates: reverb (earthquakes open the void, room light sizes it), delay (your hand's Y feeds it, Mercury retrograde smears it), saturation (Delhi's air becomes grit, hard aspects add dissonance, wildfires burn it, hunger grinds beneath), and glitch (every Wikipedia edit on Earth, every light flash, every new wildfire fires a burst). Nothing to install; the planet plays a synth in your tab.

+ +

Two — Web MIDI, out into a DAW or hardware. In Chrome or Edge, open the ⚙ panel's WEB MIDI section, enable MIDI, and pick an out port. Every destination now streams as CC or notes straight to your rig — no Python, no IAC bus. The map is fixed and MIDI-learnable at the far end:

+ +
    +
  • Filter cutoff → CC 74 — the sun and your hand open it
  • +
  • Pad brightness → CC 71 · Wavetable morph → CC 70 — timbre and light
  • +
  • Delay → CC 93 · Reverb → CC 91 · Saturation → CC 75 · Granular → CC 76 · Glitch → CC 73 — the space and the grit
  • +
  • Perc density → CC 77 · Drone voices → CC 79 · Tempo nudge → CC 78 · LFO rate → CC 72 · Master space → CC 94 — the body and the pulse
  • +
  • Lead note → channel 0 · Bass note → channel 1 — the two melodic voices, as real note-on/note-off
  • +
+ +

MIDI-learn any of these at your synth and the planet drives your favorite hardware. You can also pick an in port and hit MIDI learn here: click a slider, mute, or sphere in the console, then twist a physical knob, and that knob is bound to that control (saved to your browser). A knob over your open palm becomes a macro over four data feeds at once. Web MIDI needs a secure context — localhost works as-is; a hosted console needs HTTPS. The browser runs the MIDI, so even a remote page drives the MIDI on your laptop.

+ +

Three — Strudel, TouchDesigner, OSC. The hub streams /out/<destination> floats to 127.0.0.1:9001 — point TouchDesigner's OSC In or a Max-for-Live device at that port and drive visuals or a modular from the same matrix. And strudel/godstrument.md is a starter kit that plays a live Strudel track (free, open, no Ableton) straight off the CC map, with a no-MIDI websocket path for a custom web-audio synth. One matrix, many mouths.

+ +
+ +

Saving your instrument

+ +

A patch you have played into being — the cables you dragged, the amounts you leaned, the mutes and freezes, the tempo you locked — is a whole instrument, and it deserves to survive the tab closing.

+ +

Open ⚙ → MY PATCHES and save. The entire live state is written to your account, keyed to your login (monsterrobotparty@gmail.com): every route with its amount and curve, every group and orbit, the running mix of gains and mutes and freezes, and the godtime tempo. From any device, load it back and the exact instrument returns — the same planet, wired the same way, pulsing at the same locked BPM. (Locally, spells live as patches/*.json and cast the same full state from the ⚙ panel's SPELLS section; MY PATCHES is that power, carried to the cloud and back.)

+ +
+ +

So: the sun holds the filter, the earthquake opens the void, bitcoin sings the lead and Delhi's air turns it to grit, every human edit on Earth flickers as a glitch, and the Moon walks slowly through the garden weighting the drone. You did not build these forces — they were already playing. What you built is the listening: a cable dragged here, an amount leaned there, a tempo locked to tonight's true sky. Wake the sound with , conduct with the godtime dial, hide the chrome with P, and save what you've made to carry it anywhere. The instrument was always going to play. Now it plays you back.

+
+