__init__.py
1 """ 2 Flight Protocol Module 3 4 Implements the cognitive flight cycle from the bottom-up architecture: 5 6 FLY HIGH (morning) 7 Generate, explore, diverge 8 ↓ 9 RETAIN (afternoon) 10 Mark what resonates, predict edges 11 ↓ 12 LAND (evening) 13 Ground in specific bullets, commit 14 ↓ 15 BIRTH (compaction) 16 New nodes emerge from synthesis 17 ↓ 18 SAFETY (night) 19 Backup, validate, prepare for next cycle 20 21 This integrates with OODA loops and attention tracking. 22 """ 23 24 from .protocol import FlightPhase, FlightProtocol, FlightState, PhaseTransition 25 from .session import SessionManager, Session, SessionState 26 from .phoenix_extractor import ( 27 PhoenixExtractor, 28 PhoenixState, 29 GravityWell, 30 OpenThread, 31 PathNotTaken, 32 Momentum, 33 extract_phoenix_from_session, 34 ) 35 36 __all__ = [ 37 'FlightPhase', 38 'FlightProtocol', 39 'FlightState', 40 'PhaseTransition', 41 'SessionManager', 42 'Session', 43 'SessionState', 44 'PhoenixExtractor', 45 'PhoenixState', 46 'GravityWell', 47 'OpenThread', 48 'PathNotTaken', 49 'Momentum', 50 'extract_phoenix_from_session', 51 ]