← Back to Harmonopoly

Golden Bachdoor Hit Factory · SynthOBS nest

HARMONOPOLY

Game · tech · math

A live-action style board game driven by the Sun — not by dice. This page explains what you play, how the phone helpers nest, and the simple math under the hood. Written so anyone can follow; formulas are optional detail.

Play Harmonopoly Whiteboard Solar pipe (JSON)

On this page
  1. What the game is
  2. How a turn works
  3. Path up and down
  4. Nested agents (Goldilocks)
  5. Token use · flat vs nested (100k players)
  6. Math & EGS φ
  7. Technology stack
  8. Privacy & honesty
  9. Repo files

1. What the game is

Harmonopoly is the Goldilocks Rush: a circular board of 12 zones. Players act as holographic valets. A zone only becomes a just-right field when every player has resonated there — full table chord, not a solo 3-chip buy.

There is no dice. Each turn you press Check the Sun. The game fetches live public space weather. That snapshot picks where you land and what kind of turn you get (soft drift, just-right window, big surge, or sunspot-bound).

You win when all 12 zones reach full resonance. The best helper of the table is who contributed the most attunes, fair trades, and surge grounds.

2. How a turn works

  1. Active player presses Check the Sun.
  2. Phone asks the public solar pipe for current sunspot / region data.
  3. Nested Sun helper maps that data to a zone (1–12) and a beat.
  4. If the zone is dark → add your resonance (small focus cost). It only lights when all players have attuned there — then the whole table gets a bloom.
  5. If the zone is fully resonant → shared harvest or fair trade into the table field (tips stay honor-based).
  6. If the beat is a big solar surge → ground it with chips or pause until you help as valet (honor).

Optional adult add-ons (18+) stay on the device only. Consent first. Skip is always allowed.

What a lit section means

The 12 wedges are not deeds you buy with a tax. Each section is a resonance chamber. Partial fill (amber) = some players have attuned. Green check = full resonance — every seat at the table is in that chord. The last attune triggers a bloom: every player gains chips. After that, landings are shared harvests, not rent to one owner.

3. Path up and down

Every Check the Sun shows a progress rail — like a download bar, but for attention and the Sun:

StepPlain nameWhat it means
1Your turnYou pressed the button / you finish the choice
2Your body in the gameRoot / Crown local sliders — grounding vs high focus
3This phone / screenBoard math and landing
4Sun right nowLive (or labeled backup) space weather

Path goes 1→4 while fetching, then 4→1 as the result lands back on you. If you pause (“out of phase”), the path sticks near the bottom until an honor reset.

4. Nested agents (Goldilocks)

Modern flat multi-agent setups often chat every agent to every other agent — cost grows like N × (N−1) / 2. Harmonopoly does the opposite: a small nested tree, just the right depth and count.

Digital Pru (ship orchestrator)
└── SynthOBS (sandbox technical operator)
    └── Table master          ← outer loop (scale φ)
        ├── Sun helper        ← Check the Sun / land / beat
        ├── Fair-trade helper ← light zones / chips / tips
        └── Surge helper      ← ground surges / honor unlock

In the play UI, the Nested helpers panel shows who is awake and who is sleeping. That is the architecture of omniversal nested computing, applied at game scale — Goldilocks, not maximal.

4b. Token use · flat vs nested (100,000 concurrent players)

Here is a simulated comparison of LLM-style tokens in (what you send: prompt + context) and tokens out (what the model writes back) for one full wave of play — every concurrent player takes one Check-the-Sun equivalent.

Setup: 100,000 players · tables of 4 · 25,000 tables · φ = 1.618 · nested max children = 3.

What each side means

DesignHow talk worksWho burns tokens
Flat agentic Each of 4 players has 3 peer agents (12 agents). They mesh-sync: every agent can talk to every other. Links = N(N−1)/2 = 66 undirected · 132 directed messages per table per wave. Every link carries a fat history context (~900 tokens in, ~180 out).
Nested (ours) Table master + 3 helpers. Zero peer-to-peer links. Per turn: master + one awake leaf. Other leaves sleep as micro-snapshots (0 LLM tokens). Only 2 awake calls per turn (~360 in, ~138 out).

One wave · 100,000 players

Metric Flat mesh Nested Goldilocks
Tokens in 2,970,000,000 36,000,000
Tokens out 594,000,000 13,800,000
Tokens total 3,564,000,000 49,800,000
Per-player total (approx.) ~35,640 ~498

Plain speak: nested uses about 72× fewer tokens than the flat mesh for the same 100k-player wave (~98.6% less). Sleeping helpers cost almost nothing; flat peers keep paying the sync tax.

Per table (so you can check the math)

FlatNested
Agents awake / involved12 mesh2 per turn (master + 1 leaf)
Peer links66 undirected0
Tokens in / table / wave118,8001,440
Tokens out / table / wave23,760552
Flat links:  C = N(N − 1)/2  with N = 12 → 66
Nested law:  Scale_parent = φ · Scale_child · flatPeerLinks = 0
Re-run:      node scripts/harmonopoly-token-sim.mjs
Artifact:    research/harmonopoly-nested-token-sim/data/token_sim_100k.json

Honesty: these are topology estimates from the assumptions in the script — not live OpenAI/Anthropic invoices. Solar weather GETs are separate public pipe traffic (not counted in the LLM token columns above).

Sun gifts & asks (Monopoly → Goldilocks OS)

Each Check the Sun draws an OS-flavored Chance/Chest card on a treasure lane (Health, Relationships, Wealth, Purpose, Experiences, Knowledge, Creative, Spirit, Libre). Challenges work like taxes: pay chips into the tip pool, or meet the ask with Truth or Dare instead. Target questions are rated by the table (resonant / partial / off-key) — tips and penalties follow that Fair Exchange rating. Earnings are tips and contribution distributions, not landlord rent. Answers stay spoken · on-device · not uploaded.

5. Math & EGS φ

EGS φ (phi)1.618033988749895 — El Gran Sol’s fractal constant in this stack. Plain speak: a balance ratio so parent layers stay a bit larger than child layers without exploding complexity.

Scale law used for nesting:

Scale_parent = φ · Scale_child

Landing map (no dice)

From the solar payload we read sunspot number (SSN), region area sum, stress factor, and a stability score (HSI). With player role bias and turn index:

base = floor(SSN · φ + areaSum / φ + stress · 10) mod 12
land = (base + roleBias + turnIndex) mod 12

roleBias: Fast mover +2 · Steady bridge 0 · Quiet seeder −3

Beat (story of the turn)

Live space weather sets a storm intensity (stability, stress, complex regions). That mixes with your turn number so the same sun snapshot does not always mean the same beat. Surges are the rare high lane — not every Check the Sun.

Lane (mixed)Beat (plain)
High (~top fifth)Big solar surge
Middle bandJust-right window (cheaper light-up)
Lower mid + live regionsBound to a live sunspot
ElseSoft drift

Hydrogen line (catalog name)

1420.405 MHz is our shared channel label (holographic hydrogen line) across SynthOBS / Digital Pru papers. In Harmonopoly it is a coherence story name, not a claim that your phone transmits on that frequency.

6. Technology stack

PieceWhat it does
/harmonopolyPlay surface (hot-seat · localStorage)
harmonopoly-nested-agents.jsNest runtime · wake/freeze · solar map
GET /api/dph-wavefield-solarPublic NOAA-backed wavefield pipe (with labeled fallback)
agents/Harmonopoly.*.jjDeclarative nest under SynthOBS
localStorage harmonopoly-table-v1Table state on this device only

No accounts. No analytics of your prompts. Center = pipes only (solar JSON). Edge = names, chips, adult prompts, house play.

7. Privacy & honesty

TierMeaning
OperationalButton fetch, board state, nest wake/sleep on device
Public weatherSunspot / region numbers from the solar API when live
Narrative / game geometryφ landing map, beats, “best helper” scoring
Not claimedRF control of the room, medical effects, or peer-reviewed latency tables as hardware fact

Fair Exchange is always on: trades are mutual; tips can flow back; pause clears by helping, not by paying a server.

8. Repo files

Play now Under the hood

NSPFRNP ⊃ SynthOBS ⊃ Harmonopoly nest ⊃ Goldilocks Rush → ∞^∞