A minimal system for stabilizing subjective state through six sensory modalities and a single XOR‑based optimization step.
SUBIT‑BU is a compact state‑regulation engine. It transforms a user’s momentary condition into a 6‑bit SUBIT‑64 state, applies one minimal optimization step, and returns a more stable state together with a single micro‑action (ACT‑1).
The system is designed to be:
- minimal
- deterministic
- structurally clean
- embodied and intuitive
- mathematically reversible
SUBIT‑BU uses six independent, body‑felt modalities:
- Vector — orientation of attention
- Rhythm — internal tempo
- Structure — number of active elements in awareness
- Action — activation vs. inertia
- Tension — physiological arousal
- Focus — width of attention
These six axes form a complete, minimal basis for describing subjective state.
The six modalities map directly to a 6‑bit code:
[ s = b_5 b_4 b_3 b_2 b_1 b_0 ]
This is the SUBIT‑64 state space (0–63).
SUBIT‑BU performs exactly one optimization step:
- Identify the highest‑order active bit (the leftmost
1). - Construct a mask for that bit.
- Apply XOR:
[ s' = s \oplus m ]
This removes one unit of structural tension and produces a more stable state.
The changed bit determines the corrective action:
- b5 (Vector) → adjust direction of attention
- b4 (Rhythm) → adjust tempo
- b3 (Structure) → simplify by removing one element
- b2 (Action) → start or stop a micro‑action
- b1 (Tension) → reduce intensity
- b0 (Focus) → narrow or stabilize focus
Each ACT‑1 is short, actionable, and immediately performable.
s = 101011₂ = 43
b5
m = 100000₂
s' = 101011 XOR 100000
= 001011₂
= 11
“Shift your attention to a single direction.”
README.md— system overviewSPEC.md— formal specificationENGINE.md— engine descriptionUX.md— interface description
MIT License