@agenr/openclaw-plugin 1.3.0 → 1.5.0
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/LICENSE +661 -0
- package/dist/anthropic-RE4XNAKE.js +5515 -0
- package/dist/azure-openai-responses-IQLXOCZS.js +190 -0
- package/dist/chunk-6DQXEU2A.js +32306 -0
- package/dist/chunk-EAQYK3U2.js +41 -0
- package/dist/chunk-HNWLZUWE.js +31 -0
- package/dist/chunk-JRUUYSFL.js +262 -0
- package/dist/chunk-OLOUBEE5.js +14022 -0
- package/dist/chunk-P5HNPYGQ.js +174 -0
- package/dist/chunk-RD7BUOBD.js +416 -0
- package/dist/chunk-RWWH2U4W.js +7056 -0
- package/dist/chunk-SEOMNQGB.js +86 -0
- package/dist/chunk-SQLXP7LT.js +4792 -0
- package/dist/chunk-URGOKODJ.js +17 -0
- package/dist/dist-R6ESEJ6P.js +1244 -0
- package/dist/google-NAVXTQLO.js +371 -0
- package/dist/google-gemini-cli-NKYJWHX2.js +712 -0
- package/dist/google-vertex-ZBJ2EDRH.js +414 -0
- package/dist/index.js +14765 -6613
- package/dist/mistral-SBQYC4J5.js +38407 -0
- package/dist/multipart-parser-DV373IRF.js +371 -0
- package/dist/openai-codex-responses-XN3T3DEN.js +712 -0
- package/dist/openai-completions-75ZFOFU6.js +657 -0
- package/dist/openai-responses-DCK4BVNT.js +198 -0
- package/dist/src-T5RRS2HN.js +1408 -0
- package/openclaw.plugin.json +28 -1
- package/package.json +7 -7
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "agenr",
|
|
3
3
|
"name": "agenr",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"description": "agenr memory plugin for OpenClaw",
|
|
6
6
|
"kind": "memory",
|
|
7
7
|
"contracts": {
|
|
@@ -15,6 +15,18 @@
|
|
|
15
15
|
"configPath": {
|
|
16
16
|
"label": "Config path",
|
|
17
17
|
"help": "Optional path to agenr's config.json. Defaults to AGENR_CONFIG_PATH, then config.json next to dbPath when dbPath is set, then ~/.agenr/config.json."
|
|
18
|
+
},
|
|
19
|
+
"continuityModel": {
|
|
20
|
+
"label": "Continuity summary model",
|
|
21
|
+
"help": "Optional model override for continuity summary generation (provider/model format). Falls back to the agent's primary model when unset."
|
|
22
|
+
},
|
|
23
|
+
"episodeModel": {
|
|
24
|
+
"label": "Episode summary model",
|
|
25
|
+
"help": "Optional model override for episode summary generation (provider/model format). Falls back to the agent's primary model when unset."
|
|
26
|
+
},
|
|
27
|
+
"claimExtractionModel": {
|
|
28
|
+
"label": "Claim extraction model",
|
|
29
|
+
"help": "Model used for claim-key extraction when storing entries. Uses OpenClaw's configured auth. Format: provider/model (for example, openai/gpt-5.4-nano). Defaults to the agent's primary model."
|
|
18
30
|
}
|
|
19
31
|
},
|
|
20
32
|
"configSchema": {
|
|
@@ -28,6 +40,21 @@
|
|
|
28
40
|
"configPath": {
|
|
29
41
|
"type": "string",
|
|
30
42
|
"minLength": 1
|
|
43
|
+
},
|
|
44
|
+
"continuityModel": {
|
|
45
|
+
"type": "string",
|
|
46
|
+
"minLength": 1,
|
|
47
|
+
"description": "Model override for continuity summary generation (e.g. 'openai/gpt-5.4-mini'). Falls back to the agent's primary model."
|
|
48
|
+
},
|
|
49
|
+
"episodeModel": {
|
|
50
|
+
"type": "string",
|
|
51
|
+
"minLength": 1,
|
|
52
|
+
"description": "Model override for episode summary generation (e.g. 'openai/gpt-5.4-mini'). Falls back to the agent's primary model."
|
|
53
|
+
},
|
|
54
|
+
"claimExtractionModel": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"minLength": 1,
|
|
57
|
+
"description": "Model override for claim-key extraction at store time (e.g. 'openai/gpt-5.4-mini'). Uses OpenClaw auth and falls back to the agent's primary model."
|
|
31
58
|
}
|
|
32
59
|
}
|
|
33
60
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenr/openclaw-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "agenr memory plugin for OpenClaw",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -16,10 +16,6 @@
|
|
|
16
16
|
"./dist/index.js"
|
|
17
17
|
]
|
|
18
18
|
},
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "tsup --config tsup.config.ts",
|
|
21
|
-
"build:debug": "tsup --config tsup.config.ts --sourcemap"
|
|
22
|
-
},
|
|
23
19
|
"dependencies": {
|
|
24
20
|
"@libsql/client": "^0.17.2",
|
|
25
21
|
"openclaw": "^2026.3.24"
|
|
@@ -27,5 +23,9 @@
|
|
|
27
23
|
"engines": {
|
|
28
24
|
"node": ">=24"
|
|
29
25
|
},
|
|
30
|
-
"license": "AGPL-3.0"
|
|
31
|
-
|
|
26
|
+
"license": "AGPL-3.0",
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "tsup --config tsup.config.ts",
|
|
29
|
+
"build:debug": "tsup --config tsup.config.ts --sourcemap"
|
|
30
|
+
}
|
|
31
|
+
}
|