@agenr/openclaw-plugin 1.4.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 +14735 -6655
- 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 +9 -0
- package/package.json +7 -7
package/openclaw.plugin.json
CHANGED
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
"episodeModel": {
|
|
24
24
|
"label": "Episode summary model",
|
|
25
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."
|
|
26
30
|
}
|
|
27
31
|
},
|
|
28
32
|
"configSchema": {
|
|
@@ -46,6 +50,11 @@
|
|
|
46
50
|
"type": "string",
|
|
47
51
|
"minLength": 1,
|
|
48
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."
|
|
49
58
|
}
|
|
50
59
|
}
|
|
51
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
|
+
}
|