Godstrument/.claude/launch.json
type-two eaba76edca viz: skin system — 8 traditions on one engine (Source / Spirit / Matter)
A skin = 7-10 stations + source->station mapper + per-station scale, spine or
true 2D map (positioned stations + canonical connective paths). All engine
features (mind mode, vector console, trails, patching) work inside every skin.

- planes: Bailey/D.K. Seven Planes & 49 sub-planes, spectrum-ladder spine,
  Monad / Spiritual Triad / Personality brackets (spec adversarially verified)
- tree: Hermetic Qabalah Tree of Life (Golden Dawn attributions, stated), ten
  sephirot on three pillars, all 22 canonical paths
- lodge: Craft Freemasonry from published sources only — officers E/W/S, dark
  North, Boaz & Jachin at the porch (the player's hands = the candidate)
- ladder: Hermetic seven planetary gates; yggdrasil: the nine worlds;
  lataif: Naqshbandi six subtle centres (wind breathes at Ruh);
  wuxing: Five Phases, sheng ring + dashed ke star
- launch.json: self-contained godstrument-test sandbox entry

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-05 19:35:03 +10:00

36 lines
1.2 KiB
JSON

{
"version": "0.0.1",
"configurations": [
{
"name": "godstrument",
"runtimeExecutable": "/Users/m3ultra/Documents/godstrument/.venv/bin/python",
"runtimeArgs": ["run.py", "--no-browser", "--profile", "warp", "--city", "melbourne", "--dealgod"],
"port": 8088
},
{
"name": "godstrument-local",
"runtimeExecutable": ".venv/bin/python",
"runtimeArgs": ["run.py", "--no-browser", "--profile", "minimal"],
"port": 8088
},
{
"name": "godstrument-local-ro",
"runtimeExecutable": "sh",
"runtimeArgs": ["-c", "GODSTRUMENT_READONLY=1 .venv/bin/python run.py --no-browser --profile minimal"],
"port": 8088
},
{
"name": "viz-static",
"runtimeExecutable": "python3",
"runtimeArgs": ["-m", "http.server", "8899", "--directory", "viz"],
"port": 8899
},
{
"name": "godstrument-test",
"runtimeExecutable": "sh",
"runtimeArgs": ["-c", "python3 -c \"import json; c=json.load(open('config.json')); c['ws_port']=8790; c['http_port']=8890; json.dump(c, open('/tmp/gs_test_config.json','w'))\" && .venv/bin/python run.py --no-browser --profile minimal --config /tmp/gs_test_config.json"],
"port": 8890
}
]
}