claude-flow-novice 2.18.8 → 2.18.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -34,7 +34,7 @@ Event Bus provides a centralized pub/sub system for:
|
|
|
34
34
|
- System-wide notifications
|
|
35
35
|
- Event filtering and statistics
|
|
36
36
|
|
|
37
|
-
Built on the QEEventBus architecture from `.claude/core/event-bus.js`.
|
|
37
|
+
Built on the QEEventBus architecture from `.claude/core/cfn-event-bus.js`.
|
|
38
38
|
|
|
39
39
|
## Available Scripts
|
|
40
40
|
|
|
@@ -238,7 +238,7 @@ Notify all agents when consensus is reached:
|
|
|
238
238
|
Reset event statistics:
|
|
239
239
|
```bash
|
|
240
240
|
node -e "
|
|
241
|
-
const { eventBus } = require('./.claude/core/event-bus.js');
|
|
241
|
+
const { eventBus } = require('./.claude/core/cfn-event-bus.js');
|
|
242
242
|
eventBus.resetStats();
|
|
243
243
|
"
|
|
244
244
|
```
|
|
@@ -19,7 +19,7 @@ Event Bus provides a centralized event-driven communication system for agent coo
|
|
|
19
19
|
### 1. Event Router and Dispatcher
|
|
20
20
|
The Event Bus uses a pub/sub architecture with the following key components:
|
|
21
21
|
|
|
22
|
-
**Event Emitter**: Core EventBus class from `.claude/core/event-bus.js`
|
|
22
|
+
**Event Emitter**: Core EventBus class from `.claude/core/cfn-event-bus.js`
|
|
23
23
|
- `emit(event, data)` - Publish an event
|
|
24
24
|
- `on(event, handler)` - Subscribe to an event
|
|
25
25
|
- `once(event, handler)` - Subscribe to one-time event
|
|
@@ -383,7 +383,7 @@ Event Bus behavior can be configured via:
|
|
|
383
383
|
```bash
|
|
384
384
|
# Reset event statistics to free memory
|
|
385
385
|
node -e "
|
|
386
|
-
const { eventBus } = require('./.claude/core/event-bus.js');
|
|
386
|
+
const { eventBus } = require('./.claude/core/cfn-event-bus.js');
|
|
387
387
|
eventBus.resetStats();
|
|
388
388
|
console.log('Stats reset');
|
|
389
389
|
"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-flow-novice",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.9",
|
|
4
4
|
"description": "Claude Flow Novice - Advanced orchestration platform for multi-agent AI workflows with CFN Loop architecture\n\nIncludes Local RuVector Accelerator and all CFN skills for complete functionality.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|