Topology A (EOAM)
Event Bus
dir_core.event_bus
In-memory Event Bus for agent/runtime communication.
Swappable: same subscribe/dispatch interface can be backed by Kafka/PubSub later. See docs/00-do-not-publish/event_bus.py for original reference.
DIR Topologies §2: Event-Oriented Agent Mesh (EOAM) uses event bus for decentralized agent activation. Agents subscribe to topics matching their Responsibility Contract scope.
Event
dataclass
Event with type, payload, and metadata (DIR Topologies §2.2).
Source code in src/dir_core/event_bus.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | |
EventBus
Synchronous in-memory EventBus implementing EventBusProtocol. Replace with a Kafka/PubSub-backed implementation using the same interface.
Features: - Scope-based filtering (EOAM semantic routing) - Priority ordering - DFID correlation logging
Source code in src/dir_core/event_bus.py
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | |
publish(event_type, payload, metadata=None)
Convenience: create Event and dispatch.
Source code in src/dir_core/event_bus.py
181 182 183 184 185 186 187 188 189 | |
EventBusProtocol
Bases: Protocol
Protocol for swappable EventBus implementations (DIR §10.2).
Source code in src/dir_core/event_bus.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | |
dispatch(event)
Dispatch event to subscribers. Returns number of listeners notified.
Source code in src/dir_core/event_bus.py
82 83 84 | |
publish(event_type, payload, metadata=None)
Convenience: create Event and dispatch.
Source code in src/dir_core/event_bus.py
86 87 88 89 90 91 92 93 | |
subscribe(event_type, callback, scope=None)
Subscribe to events of given type, optionally filtered by scope.
Source code in src/dir_core/event_bus.py
65 66 67 68 69 70 71 72 | |
unsubscribe(event_type, callback)
Remove subscription.
Source code in src/dir_core/event_bus.py
74 75 76 77 78 79 80 | |
EventMetadata
dataclass
Metadata for event routing and tracing (DIR Topologies §2.2).
Source code in src/dir_core/event_bus.py
25 26 27 28 29 30 31 32 33 34 | |
LoggingEventBus
Wrapper that logs all events for debugging/audit.
Source code in src/dir_core/event_bus.py
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | |
Subscription
dataclass
Subscription with optional scope filter.
Source code in src/dir_core/event_bus.py
101 102 103 104 105 | |
create_event_bus(backend=None, with_logging=False)
Factory for creating EventBus instances.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
backend
|
Optional[str]
|
"memory" (default), or future: "kafka", "pubsub" |
None
|
with_logging
|
bool
|
Wrap in LoggingEventBus for audit |
False
|
Environment
EVENT_BUS_BACKEND: Override backend selection
Source code in src/dir_core/event_bus.py
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 | |
Wakeup Predicates
dir_core.wakeup
Wake-up Predicates (DIR Topologies §2.3) — Signal Suppression.
Low-cost heuristics evaluated BEFORE activating expensive LLM agents. If any predicate returns False, the agent is not woken up (Token Burn prevention).
WakeupPredicate
dataclass
Low-cost heuristic to prevent Token Burn.
Evaluated BEFORE activating expensive LLM agent. If predicate returns False, agent is not woken up.
Source code in src/dir_core/wakeup.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | |
is_relevant_instrument(payload, instruments)
Wake up only for specific instruments.
Source code in src/dir_core/wakeup.py
49 50 51 52 53 | |
price_change_significant(payload, threshold=0.005)
Wake up only if price change > threshold (0.5% default).
Source code in src/dir_core/wakeup.py
34 35 36 37 38 39 | |
should_wake(payload, predicates)
Evaluate all wake-up predicates. All must pass for agent to wake.
Source code in src/dir_core/wakeup.py
56 57 58 59 60 61 62 63 | |
volatility_elevated(payload, threshold=0.03)
Wake up only if volatility is elevated.
Source code in src/dir_core/wakeup.py
42 43 44 45 46 | |