@timmeck/brain 3.36.54 → 3.36.56
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/dist/brain.d.ts +0 -3
- package/dist/brain.js +47 -606
- package/dist/brain.js.map +1 -1
- package/dist/init/dashboard-init.d.ts +24 -0
- package/dist/init/dashboard-init.js +112 -0
- package/dist/init/dashboard-init.js.map +1 -0
- package/dist/init/engine-factory.d.ts +33 -0
- package/dist/init/engine-factory.js +348 -0
- package/dist/init/engine-factory.js.map +1 -0
- package/dist/init/events-init.d.ts +5 -0
- package/dist/init/events-init.js +104 -0
- package/dist/init/events-init.js.map +1 -0
- package/dist/init/lifecycle.d.ts +65 -0
- package/dist/init/lifecycle.js +117 -0
- package/dist/init/lifecycle.js.map +1 -0
- package/dist/ipc/router.d.ts +3 -0
- package/dist/ipc/router.js +28 -0
- package/dist/ipc/router.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
**Autonomous Error Memory, Code Intelligence & Self-Improving AI for Claude Code — 162 MCP Tools, 72+ Engines**
|
|
9
9
|
|
|
10
|
-
Brain is an MCP server that gives Claude Code a persistent, self-improving memory. It remembers errors, learns solutions, and runs 72+ autonomous engines in a 51-step feedback cycle. It observes itself, detects anomalies, forms and tests hypotheses, distills principles, reasons in chains, feels emotions, evolves strategies genetically, debates itself, challenges its own principles (Advocatus Diaboli), gets curious about knowledge gaps, syncs knowledge via Borg collective, loads community plugins, absorbs code from GitHub repos, extracts reusable features, recommends missing features, and modifies its own source code. Multi-provider LLM (Anthropic + Ollama). RAG vector search across all knowledge. Knowledge Graph with transitive inference. RLHF feedback learning. Tool-use learning. User modeling. Proactive suggestions. Code assimilation with feature extraction + recommendation. Autonomous web research missions. Live tech radar scanning. 162 MCP tools. 3,316 tests.
|
|
10
|
+
Brain is an MCP server that gives Claude Code a persistent, self-improving memory. It remembers errors, learns solutions, and runs 72+ autonomous engines in a 51-step feedback cycle. It observes itself, detects anomalies, forms and tests hypotheses, distills principles, reasons in chains, feels emotions, evolves strategies genetically, debates itself, challenges its own principles (Advocatus Diaboli), gets curious about knowledge gaps, syncs knowledge via Borg collective, loads community plugins, absorbs code from GitHub repos, extracts reusable features, recommends missing features, and modifies its own source code. Multi-provider LLM (Anthropic + Ollama). RAG vector search across all knowledge. Knowledge Graph with transitive inference. RLHF feedback learning. Tool-use learning. User modeling. Proactive suggestions. Code assimilation with feature extraction + recommendation. Autonomous web research missions. Live tech radar scanning. ChatEngine provides natural language access to all subsystems via NLU routing. SubAgentFactory creates specialized agents for focused tasks. 162 MCP tools. 3,316 tests.
|
|
11
11
|
|
|
12
12
|
## Quick Start
|
|
13
13
|
|
package/dist/brain.d.ts
CHANGED
|
@@ -38,10 +38,7 @@ export declare class BrainCore {
|
|
|
38
38
|
private restartWindowStart;
|
|
39
39
|
start(configPath?: string): void;
|
|
40
40
|
private logCrash;
|
|
41
|
-
private runRetentionCleanup;
|
|
42
41
|
private cleanup;
|
|
43
42
|
restart(): void;
|
|
44
43
|
stop(): void;
|
|
45
|
-
private setupCrossBrainSubscriptions;
|
|
46
|
-
private setupEventListeners;
|
|
47
44
|
}
|