GestaltView-AI/recursive_observatory
0
1# Prototype architecture2 3```text4User task5 |6 v7Iteration 18 |9 +--> recursive event #110 | prior state11 | observation12 | interpretation13 | action14 | new information15 |16 v17preserved session state18 |19 v20Iteration 221 |22 +--> recursive event #223 priorEventId -> event #124 corrected interpretation25 changed action26 new next-iteration input27 |28 v29Independent inspector30```31 32## Boundary33 34For this first prototype, the boundary is intentionally simple:35 36- **Observatory UI:** experiment and visualization37- **Recursive event object:** explicit state transition38- **Session state:** temporary persistence point39- **Inspector:** separate function that evaluates the trace40 41## Next GestaltView integration42 43The session state can later be replaced by the GestaltView action surface. The natural persistence boundary is the proposed recursive event endpoint:44 45`POST /actions/recursive/events`46 47That would turn this from a toy observatory into a small inspection instrument connected to the real runtime.48 