@timmeck/brain-core 1.5.0 → 1.5.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 +1 -1
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -151,7 +151,7 @@ class MyRouter implements IpcRouter {
|
|
|
151
151
|
| [Brain](https://github.com/timmeck/brain) | v2.1.0 | Error memory & code intelligence | 7777/7778 |
|
|
152
152
|
| [Trading Brain](https://github.com/timmeck/trading-brain) | v1.2.0 | Adaptive trading intelligence | 7779/7780 |
|
|
153
153
|
| [Marketing Brain](https://github.com/timmeck/marketing-brain) | v0.4.0 | Content strategy & social media | 7781/7782/7783 |
|
|
154
|
-
| [Brain Core](https://github.com/timmeck/brain-core) | v1.
|
|
154
|
+
| [Brain Core](https://github.com/timmeck/brain-core) | v1.5.0 | Shared infrastructure (this package) | — |
|
|
155
155
|
|
|
156
156
|
All three brains are standalone — brain-core is an **optional** shared dependency that eliminates ~600 lines of duplicated code across the ecosystem.
|
|
157
157
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@timmeck/brain-core",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Shared core infrastructure for the Brain ecosystem — IPC, MCP, CLI, DB connection, and utilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -40,14 +40,20 @@
|
|
|
40
40
|
"test:coverage": "vitest --coverage"
|
|
41
41
|
},
|
|
42
42
|
"keywords": [
|
|
43
|
-
"brain",
|
|
44
|
-
"brain-core",
|
|
45
43
|
"mcp",
|
|
44
|
+
"mcp-server",
|
|
45
|
+
"model-context-protocol",
|
|
46
|
+
"claude",
|
|
46
47
|
"claude-code",
|
|
48
|
+
"cursor",
|
|
49
|
+
"windsurf",
|
|
50
|
+
"cline",
|
|
51
|
+
"ai-tools",
|
|
47
52
|
"ipc",
|
|
48
53
|
"named-pipes",
|
|
49
54
|
"synapse-network",
|
|
50
55
|
"developer-tools",
|
|
56
|
+
"hebbian-learning",
|
|
51
57
|
"shared-infrastructure"
|
|
52
58
|
],
|
|
53
59
|
"author": "Tim Mecklenburg",
|