@timmeck/brain 2.2.0 → 2.2.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 +14 -11
- package/package.json +5 -4
- package/brain.log +0 -4284
- package/smithery.yaml +0 -10
package/README.md
CHANGED
|
@@ -3,14 +3,10 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@timmeck/brain)
|
|
4
4
|
[](https://www.npmjs.com/package/@timmeck/brain)
|
|
5
5
|
[](LICENSE)
|
|
6
|
-
[](https://github.com/timmeck/brain)
|
|
7
|
-
[](https://smithery.ai/server/@timmeck/brain)
|
|
6
|
+
[](https://github.com/timmeck/brain-ecosystem)
|
|
8
7
|
|
|
9
8
|
**Adaptive Error Memory, Code Intelligence & Persistent Context MCP Server for Claude Code**
|
|
10
9
|
|
|
11
|
-
<!-- TODO: Replace with actual recording once setup wizard is recorded -->
|
|
12
|
-
<!--  -->
|
|
13
|
-
|
|
14
10
|
## Quick Start
|
|
15
11
|
|
|
16
12
|
```bash
|
|
@@ -352,17 +348,17 @@ Brain now maintains **persistent context** across sessions:
|
|
|
352
348
|
|
|
353
349
|
## Brain Ecosystem
|
|
354
350
|
|
|
355
|
-
Brain is part of the **Brain Ecosystem** — a
|
|
351
|
+
Brain is part of the **[Brain Ecosystem](https://github.com/timmeck/brain-ecosystem)** — a monorepo of MCP servers that give Claude Code persistent, self-learning memory.
|
|
356
352
|
|
|
357
353
|
| Brain | Purpose | Ports |
|
|
358
354
|
|-------|---------|-------|
|
|
359
|
-
| **Brain** | Error memory, code intelligence & persistent context | **7777** / 7778 |
|
|
360
|
-
| [Trading Brain](https://github.com/timmeck/trading-brain) | Adaptive trading intelligence | 7779 / 7780 |
|
|
361
|
-
| [Marketing Brain](https://github.com/timmeck/marketing-brain) | Content strategy & engagement | 7781 / 7782 |
|
|
362
|
-
| [Brain Core](https://github.com/timmeck/brain-core) v1.6.
|
|
355
|
+
| **Brain** v2.2.1 | Error memory, code intelligence & persistent context | **7777** / 7778 |
|
|
356
|
+
| [Trading Brain](https://github.com/timmeck/brain-ecosystem/tree/main/packages/trading-brain) v1.3.2 | Adaptive trading intelligence with memory & sessions | 7779 / 7780 |
|
|
357
|
+
| [Marketing Brain](https://github.com/timmeck/brain-ecosystem/tree/main/packages/marketing-brain) v0.5.2 | Content strategy & engagement with memory & sessions | 7781 / 7782 / 7783 |
|
|
358
|
+
| [Brain Core](https://github.com/timmeck/brain-ecosystem/tree/main/packages/brain-core) v1.6.1 | Shared infrastructure (IPC, MCP, REST, CLI, math, synapses, memory) | — |
|
|
363
359
|
| [Brain Hub](https://timmeck.github.io/brain-hub/) | Ecosystem landing page | — |
|
|
364
360
|
|
|
365
|
-
|
|
361
|
+
All packages live in the [brain-ecosystem](https://github.com/timmeck/brain-ecosystem) monorepo with npm workspaces. [Brain Core](https://www.npmjs.com/package/@timmeck/brain-core) provides shared infrastructure (IPC, MCP, REST API, CLI, math, synapse algorithms, memory types) used by all brains, eliminating ~2,800 lines of duplicated code.
|
|
366
362
|
|
|
367
363
|
### Cross-Brain Communication
|
|
368
364
|
|
|
@@ -379,6 +375,13 @@ Brains discover and query each other at runtime via IPC named pipes. Use `brain
|
|
|
379
375
|
- **Winston** — Structured logging
|
|
380
376
|
- **Vitest** — Testing
|
|
381
377
|
|
|
378
|
+
## Support
|
|
379
|
+
|
|
380
|
+
If Brain helps you, consider giving it a star — it helps others discover the project and keeps development going.
|
|
381
|
+
|
|
382
|
+
[](https://github.com/timmeck/brain-ecosystem)
|
|
383
|
+
[](https://github.com/sponsors/timmeck)
|
|
384
|
+
|
|
382
385
|
## License
|
|
383
386
|
|
|
384
387
|
[MIT](LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@timmeck/brain",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Adaptive error memory and code intelligence system with Hebbian synapse network, hybrid search, and REST API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "tsc",
|
|
12
12
|
"dev": "tsx src/index.ts",
|
|
13
|
-
"test": "vitest",
|
|
13
|
+
"test": "vitest run",
|
|
14
14
|
"lint": "eslint src/",
|
|
15
15
|
"lint:fix": "eslint src/ --fix",
|
|
16
16
|
"test:coverage": "vitest --coverage"
|
|
@@ -37,12 +37,13 @@
|
|
|
37
37
|
"license": "MIT",
|
|
38
38
|
"repository": {
|
|
39
39
|
"type": "git",
|
|
40
|
-
"url": "https://github.com/timmeck/brain"
|
|
40
|
+
"url": "https://github.com/timmeck/brain-ecosystem",
|
|
41
|
+
"directory": "packages/brain"
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
44
|
"@huggingface/transformers": "^3.8.1",
|
|
44
45
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
45
|
-
"@timmeck/brain-core": "
|
|
46
|
+
"@timmeck/brain-core": "*",
|
|
46
47
|
"better-sqlite3": "^11.7.0",
|
|
47
48
|
"chalk": "^5.6.2",
|
|
48
49
|
"commander": "^13.0.0",
|