@signetai/signet-memory-openclaw 0.77.2 → 0.77.3
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/dist/index.js +10 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -8558,6 +8558,16 @@ var $stringify = publicApi.stringify;
|
|
|
8558
8558
|
var $visit = visit.visit;
|
|
8559
8559
|
var $visitAsync = visit.visitAsync;
|
|
8560
8560
|
var DEFAULT_BASE_PATH = join2(homedir2(), ".agents");
|
|
8561
|
+
var PIPELINE_PROVIDER_CHOICES = [
|
|
8562
|
+
"none",
|
|
8563
|
+
"ollama",
|
|
8564
|
+
"claude-code",
|
|
8565
|
+
"codex",
|
|
8566
|
+
"opencode",
|
|
8567
|
+
"anthropic",
|
|
8568
|
+
"openrouter"
|
|
8569
|
+
];
|
|
8570
|
+
var PIPELINE_PROVIDER_SET = new Set(PIPELINE_PROVIDER_CHOICES);
|
|
8561
8571
|
var LOCAL_BINDS = new Set(["127.0.0.1", "localhost", "::1", "::ffff:127.0.0.1"]);
|
|
8562
8572
|
var native = null;
|
|
8563
8573
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/signet-memory-openclaw",
|
|
3
|
-
"version": "0.77.
|
|
3
|
+
"version": "0.77.3",
|
|
4
4
|
"description": "Signet adapter for OpenClaw — runtime plugin for AI agent memory",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@sinclair/typebox": "0.34.47"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@signet/core": "0.77.
|
|
39
|
+
"@signet/core": "0.77.3",
|
|
40
40
|
"@types/node": "^22.0.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|