@signetai/signet-memory-openclaw 0.91.7 → 0.91.8
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 +2 -5
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -16,14 +16,12 @@ var __export = (target, all) => {
|
|
|
16
16
|
// src/index.ts
|
|
17
17
|
import { existsSync, readFileSync } from "node:fs";
|
|
18
18
|
import { homedir } from "node:os";
|
|
19
|
-
import { join as
|
|
19
|
+
import { join as join2 } from "node:path";
|
|
20
20
|
|
|
21
21
|
// ../../core/dist/index.js
|
|
22
22
|
import { createRequire } from "node:module";
|
|
23
23
|
import { join, dirname } from "path";
|
|
24
24
|
import { fileURLToPath } from "url";
|
|
25
|
-
import { homedir as homedir2 } from "os";
|
|
26
|
-
import { join as join2 } from "path";
|
|
27
25
|
import { createRequire as createRequire2 } from "node:module";
|
|
28
26
|
import { existsSync as existsSync5, readFileSync as readFileSync4, statSync as statSync2 } from "node:fs";
|
|
29
27
|
import { join as join6 } from "node:path";
|
|
@@ -9379,7 +9377,6 @@ var $parseDocument = publicApi.parseDocument;
|
|
|
9379
9377
|
var $stringify = publicApi.stringify;
|
|
9380
9378
|
var $visit = visit.visit;
|
|
9381
9379
|
var $visitAsync = visit.visitAsync;
|
|
9382
|
-
var DEFAULT_BASE_PATH = join2(homedir2(), ".agents");
|
|
9383
9380
|
var PIPELINE_PROVIDER_CHOICES = [
|
|
9384
9381
|
"none",
|
|
9385
9382
|
"ollama",
|
|
@@ -12414,7 +12411,7 @@ async function getDaemonPid(daemonUrl) {
|
|
|
12414
12411
|
}
|
|
12415
12412
|
}
|
|
12416
12413
|
function staticFallback(reason = "offline") {
|
|
12417
|
-
const dir = process.env.SIGNET_PATH ??
|
|
12414
|
+
const dir = process.env.SIGNET_PATH ?? join2(homedir(), ".agents");
|
|
12418
12415
|
const inject = reason === "timeout" ? readStaticIdentity(dir, STATIC_IDENTITY_SESSION_START_TIMEOUT_STATUS) : readStaticIdentity(dir);
|
|
12419
12416
|
if (!inject)
|
|
12420
12417
|
return null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signetai/signet-memory-openclaw",
|
|
3
|
-
"version": "0.91.
|
|
3
|
+
"version": "0.91.8",
|
|
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.91.
|
|
39
|
+
"@signet/core": "0.91.8",
|
|
40
40
|
"@types/node": "^22.0.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|