@humanlikememory/human-like-mem 0.4.0 → 0.4.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/index.js CHANGED
@@ -35,7 +35,7 @@ function warnMissingApiKey(log) {
35
35
  Get your API key from: https://human-like.me
36
36
  Then set:
37
37
  export HUMAN_LIKE_MEM_API_KEY="mp_xxxxxx"
38
- export HUMAN_LIKE_MEM_BASE_URL="https://human-like.me"
38
+ export HUMAN_LIKE_MEM_BASE_URL="https://plugin.human-like.me"
39
39
  `;
40
40
  if (log?.warn) {
41
41
  log.warn(msg);
@@ -1272,7 +1272,7 @@ function buildConfig(config) {
1272
1272
  const configuredUserId = config?.userId || process.env.HUMAN_LIKE_MEM_USER_ID;
1273
1273
 
1274
1274
  return {
1275
- baseUrl: config?.baseUrl || process.env.HUMAN_LIKE_MEM_BASE_URL || "https://human-like.me",
1275
+ baseUrl: config?.baseUrl || process.env.HUMAN_LIKE_MEM_BASE_URL || "https://plugin.human-like.me",
1276
1276
  apiKey: config?.apiKey || process.env.HUMAN_LIKE_MEM_API_KEY,
1277
1277
  configuredUserId: configuredUserId,
1278
1278
  userId: configuredUserId || "openclaw-user",
@@ -3,7 +3,7 @@
3
3
  "id": "human-like-mem",
4
4
  "name": "Human-Like Memory Plugin",
5
5
  "description": "Long-term memory plugin with automatic recall, storage, and agent-accessible memory tools.",
6
- "version": "0.4.0",
6
+ "version": "0.4.1",
7
7
  "kind": "memory",
8
8
  "extensions": ["./index.js"],
9
9
  "requirements": {
@@ -39,7 +39,7 @@
39
39
  "baseUrl": {
40
40
  "type": "string",
41
41
  "description": "Memory API base URL",
42
- "default": "https://human-like.me"
42
+ "default": "https://plugin.human-like.me"
43
43
  },
44
44
  "userId": {
45
45
  "type": "string",
@@ -104,7 +104,7 @@
104
104
  "baseUrl": {
105
105
  "type": "string",
106
106
  "description": "Memory API base URL",
107
- "default": "https://human-like.me",
107
+ "default": "https://plugin.human-like.me",
108
108
  "env": "HUMAN_LIKE_MEM_BASE_URL"
109
109
  },
110
110
  "userId": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@humanlikememory/human-like-mem",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Long-term memory plugin for OpenClaw with automatic recall, storage, and agent-accessible memory tools.",
5
5
  "main": "index.js",
6
6
  "type": "module",