@timmeck/brain-core 2.9.0 → 2.9.1
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.
- package/README.md +6 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,6 +31,7 @@ Brain Core extracts the common infrastructure used across all Brain MCP servers
|
|
|
31
31
|
| **Research Orchestrator** | Feedback loops between 9 research engines |
|
|
32
32
|
| **9 Research Engines** | SelfObserver, AnomalyDetective, HypothesisEngine, CausalGraph, Experiment, KnowledgeDistiller, Counterfactual, AdaptiveStrategy, ResearchAgenda |
|
|
33
33
|
| **DataMiner** | Bootstraps historical DB data into research engines with adapter pattern (new in v2.8) |
|
|
34
|
+
| **Dream Engine** | Offline memory consolidation — replay, prune, compress, decay (new in v2.9) |
|
|
34
35
|
| **Meta-Learning** | Hyper-parameter optimization with Bayesian exploration |
|
|
35
36
|
| **Autonomous Scheduler** | Self-directed research cycle execution |
|
|
36
37
|
| **Webhook Service** | Configurable webhooks with HMAC signing and retry |
|
|
@@ -157,6 +158,7 @@ class MyRouter implements IpcRouter {
|
|
|
157
158
|
│ ├── Engines ── SelfObserver, AnomalyDetective, Experiment, Adaptive, Agenda
|
|
158
159
|
│ ├── Engines ── KnowledgeDistiller, Counterfactual, CrossDomain, Journal
|
|
159
160
|
│ └── Adapters ─ BrainAdapter, TradingAdapter, MarketingAdapter
|
|
161
|
+
├── Dream ──────── DreamEngine, DreamConsolidator (offline consolidation)
|
|
160
162
|
├── Memory ────── BaseMemoryEngine, MemoryRecord, SessionRecord, shared interfaces
|
|
161
163
|
├── Cross-Brain ── CrossBrainClient, CrossBrainNotifier, Correlator
|
|
162
164
|
├── Autonomous ── AutonomousResearchScheduler, MetaLearningEngine
|
|
@@ -171,10 +173,10 @@ class MyRouter implements IpcRouter {
|
|
|
171
173
|
|
|
172
174
|
| Brain | Version | Purpose | Ports |
|
|
173
175
|
|-------|---------|---------|-------|
|
|
174
|
-
| [Brain](https://github.com/timmeck/brain-ecosystem/tree/main/packages/brain) | v3.
|
|
175
|
-
| [Trading Brain](https://github.com/timmeck/brain-ecosystem/tree/main/packages/trading-brain) | v2.
|
|
176
|
-
| [Marketing Brain](https://github.com/timmeck/brain-ecosystem/tree/main/packages/marketing-brain) | v1.
|
|
177
|
-
| [Brain Core](https://github.com/timmeck/brain-ecosystem/tree/main/packages/brain-core) | v2.
|
|
176
|
+
| [Brain](https://github.com/timmeck/brain-ecosystem/tree/main/packages/brain) | v3.10.0 | Error memory, code intelligence & persistent context | 7777/7778 |
|
|
177
|
+
| [Trading Brain](https://github.com/timmeck/brain-ecosystem/tree/main/packages/trading-brain) | v2.10.0 | Adaptive trading intelligence with memory & sessions | 7779/7780 |
|
|
178
|
+
| [Marketing Brain](https://github.com/timmeck/brain-ecosystem/tree/main/packages/marketing-brain) | v1.11.0 | Content strategy & engagement with memory & sessions | 7781/7782/7783 |
|
|
179
|
+
| [Brain Core](https://github.com/timmeck/brain-ecosystem/tree/main/packages/brain-core) | v2.9.0 | Shared infrastructure (this package) | — |
|
|
178
180
|
|
|
179
181
|
All packages live in the [brain-ecosystem](https://github.com/timmeck/brain-ecosystem) monorepo with npm workspaces. Brain Core provides shared infrastructure that eliminates ~2,800 lines of duplicated code across the ecosystem.
|
|
180
182
|
|
package/package.json
CHANGED