@agentmemory/agentmemory 0.8.0 → 0.8.5

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.
@@ -2,13 +2,13 @@ services:
2
2
  iii-engine:
3
3
  image: iiidev/iii:latest
4
4
  ports:
5
- - "49134:49134"
6
- - "3111:3111"
7
- - "3112:3112"
8
- - "9464:9464"
5
+ - "127.0.0.1:49134:49134"
6
+ - "127.0.0.1:3111:3111"
7
+ - "127.0.0.1:3112:3112"
8
+ - "127.0.0.1:9464:9464"
9
9
  volumes:
10
10
  - iii-data:/data
11
- - ./iii-config.yaml:/app/config.yaml:ro
11
+ - ./iii-config.docker.yaml:/app/config.yaml:ro
12
12
  restart: unless-stopped
13
13
 
14
14
  volumes:
package/iii-config.yaml CHANGED
@@ -10,7 +10,7 @@ modules:
10
10
  - class: modules::api::RestApiModule
11
11
  config:
12
12
  port: 3111
13
- host: 0.0.0.0
13
+ host: 127.0.0.1
14
14
  default_timeout: 180000
15
15
  cors:
16
16
  allowed_origins: ["http://localhost:3111", "http://localhost:3113", "http://127.0.0.1:3111", "http://127.0.0.1:3113"]
@@ -34,7 +34,7 @@ modules:
34
34
  - class: modules::stream::StreamModule
35
35
  config:
36
36
  port: 3112
37
- host: 0.0.0.0
37
+ host: 127.0.0.1
38
38
 
39
39
  - class: modules::observability::OtelModule
40
40
  config:
package/package.json CHANGED
@@ -1,16 +1,23 @@
1
1
  {
2
2
  "name": "@agentmemory/agentmemory",
3
- "version": "0.8.0",
3
+ "version": "0.8.5",
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",
7
7
  "types": "dist/index.d.mts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.mts",
11
+ "import": "./dist/index.mjs"
12
+ },
13
+ "./dist/standalone.mjs": "./dist/standalone.mjs",
14
+ "./package.json": "./package.json"
15
+ },
8
16
  "bin": {
9
- "agentmemory": "dist/cli.mjs",
10
- "agentmemory-mcp": "dist/standalone.mjs"
17
+ "agentmemory": "dist/cli.mjs"
11
18
  },
12
19
  "scripts": {
13
- "build": "tsdown && (cp iii-config.yaml dist/ 2>/dev/null || true) && (cp docker-compose.yml dist/ 2>/dev/null || true)",
20
+ "build": "tsdown && (cp iii-config.yaml dist/ 2>/dev/null || true) && (cp iii-config.docker.yaml dist/ 2>/dev/null || true) && (cp docker-compose.yml dist/ 2>/dev/null || true) && mkdir -p dist/viewer && cp src/viewer/index.html dist/viewer/",
14
21
  "dev": "tsx src/index.ts",
15
22
  "start": "node dist/cli.mjs",
16
23
  "migrate": "node dist/functions/migrate.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentmemory",
3
- "version": "0.8.0",
3
+ "version": "0.8.5",
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",