PHB God‑Code Vortex is a modular, evolving symbolic engine that generates:
- Coherence & Stability curves
- Codex Pages
- Voxel layers
- Veil simulator states
- Energy signatures
- Portal states
- Full JSON evolution packets
The system includes a P2P network layer that allows multiple Termux devices to:
- broadcast their PHB evolution JSON
- receive evolution packets from peers
- store shared state in
gcs/network_state.json - evolve together in real time
This creates a distributed Codex organism.
``` git clone https://github.com/jvoidial/phb-godcode-vortex.git cd phb-godcode-vortex ```
``` bash installer.sh ```
This will:
- update Termux
- install Python + git
- sync the repository
- prepare the P2P layer
- create required directories
- ensure all scripts are executable
- create `network_state.json` if missing
``` ./gcs/run_phb_p2p.sh ```
This will:
- Run the PHB engine
- Start the P2P listener
- Auto‑extract FINAL JSON
- Auto‑broadcast to peers
- Store incoming JSON in `gcs/network_state.json`
Every device running:
``` ./gcs/run_phb_p2p.sh ```
will:
- generate its own PHB evolution
- broadcast JSON
- receive JSON
- update shared state
This forms a distributed symbolic mesh.
``` phb-godcode-vortex/ ├── installer.sh ├── gcs/ │ ├── run_phb_p2p.sh │ ├── network_state.json │ ├── phb_auto_broadcast.py │ └── scripts/ │ ├── p2p_listener.py │ ├── p2p_send_auto.py │ └── p2p_send.py └── engine/ ```
Jacob — creator of the PHB symbolic engine and distributed Codex mesh.