@agentmemory/agentmemory 0.8.5 → 0.8.7

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.
@@ -0,0 +1,51 @@
1
+ modules:
2
+ - class: modules::state::StateModule
3
+ config:
4
+ adapter:
5
+ class: modules::state::adapters::KvStore
6
+ config:
7
+ store_method: file_based
8
+ file_path: ./data/state_store.db
9
+
10
+ - class: modules::api::RestApiModule
11
+ config:
12
+ port: 3111
13
+ host: 0.0.0.0
14
+ default_timeout: 180000
15
+ cors:
16
+ allowed_origins: ["http://localhost:3111", "http://localhost:3113", "http://127.0.0.1:3111", "http://127.0.0.1:3113"]
17
+ allowed_methods: [GET, POST, PUT, DELETE, OPTIONS]
18
+
19
+ - class: modules::queue::QueueModule
20
+ config:
21
+ adapter:
22
+ class: modules::queue::BuiltinQueueAdapter
23
+
24
+ - class: modules::pubsub::PubSubModule
25
+ config:
26
+ adapter:
27
+ class: modules::pubsub::LocalAdapter
28
+
29
+ - class: modules::cron::CronModule
30
+ config:
31
+ adapter:
32
+ class: modules::cron::KvCronAdapter
33
+
34
+ - class: modules::stream::StreamModule
35
+ config:
36
+ port: 3112
37
+ host: 0.0.0.0
38
+
39
+ - class: modules::observability::OtelModule
40
+ config:
41
+ enabled: true
42
+ service_name: agentmemory
43
+ exporter: memory
44
+ logs_enabled: true
45
+
46
+ - class: modules::shell::ExecModule
47
+ config:
48
+ watch:
49
+ - src/**/*.ts
50
+ exec:
51
+ - node dist/index.mjs
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentmemory/agentmemory",
3
- "version": "0.8.5",
3
+ "version": "0.8.7",
4
4
  "description": "Persistent memory for AI coding agents, powered by iii-engine's three primitives",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",
@@ -41,6 +41,7 @@
41
41
  "dist/",
42
42
  "plugin/",
43
43
  "iii-config.yaml",
44
+ "iii-config.docker.yaml",
44
45
  "docker-compose.yml",
45
46
  "LICENSE",
46
47
  "README.md",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentmemory",
3
- "version": "0.8.5",
3
+ "version": "0.8.7",
4
4
  "description": "Persistent memory for AI coding agents -- captures tool usage, compresses via LLM, injects context into future sessions. 12 hooks, 43 MCP tools, 4 skills, real-time viewer.",
5
5
  "author": {
6
6
  "name": "Rohit Ghumare",