@remnic/core 9.3.642 → 9.3.644
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/access-http.js +3 -3
- package/dist/access-mcp.js +2 -2
- package/dist/{chunk-ACNU2UBF.js → chunk-2GCNTHRA.js} +3 -3
- package/dist/{chunk-5IDVOWBE.js → chunk-GJSNDJHR.js} +14 -2
- package/dist/chunk-GJSNDJHR.js.map +1 -0
- package/dist/{chunk-6DDBW2V4.js → chunk-S2SEPLLA.js} +2 -2
- package/dist/{chunk-6L46YAEZ.js → chunk-T4WDJPEZ.js} +45 -14
- package/dist/chunk-T4WDJPEZ.js.map +1 -0
- package/dist/cli.js +4 -4
- package/dist/index.js +4 -4
- package/dist/mcp-memory-inspector-app.d.ts +1 -0
- package/dist/mcp-memory-inspector-app.js +1 -1
- package/dist/schemas.d.ts +22 -22
- package/dist/transfer/types.d.ts +12 -12
- package/package.json +1 -1
- package/src/access-mcp.ts +16 -0
- package/src/mcp-memory-inspector-app.ts +79 -17
- package/dist/chunk-5IDVOWBE.js.map +0 -1
- package/dist/chunk-6L46YAEZ.js.map +0 -1
- /package/dist/{chunk-ACNU2UBF.js.map → chunk-2GCNTHRA.js.map} +0 -0
- /package/dist/{chunk-6DDBW2V4.js.map → chunk-S2SEPLLA.js.map} +0 -0
package/dist/access-http.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
EngramAccessHttpServer
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-S2SEPLLA.js";
|
|
4
4
|
import "./chunk-SEDEKFYQ.js";
|
|
5
5
|
import "./chunk-2QSZNTDO.js";
|
|
6
6
|
import "./chunk-RSUYKGGZ.js";
|
|
@@ -9,8 +9,8 @@ import "./chunk-TMSXWOBZ.js";
|
|
|
9
9
|
import "./chunk-J64TK33U.js";
|
|
10
10
|
import "./chunk-7RXCMVFQ.js";
|
|
11
11
|
import "./chunk-7WV3F5DQ.js";
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
12
|
+
import "./chunk-GJSNDJHR.js";
|
|
13
|
+
import "./chunk-T4WDJPEZ.js";
|
|
14
14
|
import "./chunk-D24OXEPB.js";
|
|
15
15
|
import "./chunk-AK4DSORQ.js";
|
|
16
16
|
import "./chunk-GDASG7NC.js";
|
package/dist/access-mcp.js
CHANGED
|
@@ -209,13 +209,13 @@ import {
|
|
|
209
209
|
} from "./chunk-OADWQ5CR.js";
|
|
210
210
|
import {
|
|
211
211
|
EngramAccessHttpServer
|
|
212
|
-
} from "./chunk-
|
|
212
|
+
} from "./chunk-S2SEPLLA.js";
|
|
213
213
|
import {
|
|
214
214
|
WearablesInputError
|
|
215
215
|
} from "./chunk-7WV3F5DQ.js";
|
|
216
216
|
import {
|
|
217
217
|
EngramMcpServer
|
|
218
|
-
} from "./chunk-
|
|
218
|
+
} from "./chunk-GJSNDJHR.js";
|
|
219
219
|
import {
|
|
220
220
|
EngramAccessService
|
|
221
221
|
} from "./chunk-AK4DSORQ.js";
|
|
@@ -7152,4 +7152,4 @@ export {
|
|
|
7152
7152
|
resolveMemoryDirForNamespace,
|
|
7153
7153
|
registerCli
|
|
7154
7154
|
};
|
|
7155
|
-
//# sourceMappingURL=chunk-
|
|
7155
|
+
//# sourceMappingURL=chunk-2GCNTHRA.js.map
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
REMNIC_CHATGPT_MEMORY_INSPECTOR_WIDGET_URI,
|
|
6
6
|
buildChatGptMemoryInspectorActionRequest,
|
|
7
7
|
buildChatGptMemoryInspectorResult
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-T4WDJPEZ.js";
|
|
9
9
|
import {
|
|
10
10
|
buildCitationGuidance
|
|
11
11
|
} from "./chunk-D24OXEPB.js";
|
|
@@ -565,6 +565,10 @@ var EngramMcpServer = class {
|
|
|
565
565
|
type: "array",
|
|
566
566
|
items: { type: "string" },
|
|
567
567
|
description: "Optional current user-context scopes, such as repo, work, personal, client, or private."
|
|
568
|
+
},
|
|
569
|
+
allowUnverifiedPreview: {
|
|
570
|
+
type: "boolean",
|
|
571
|
+
description: "If true, the inspector may show recalled preview text when X-ray provenance is missing or unavailable. Explicitly blocked memories remain redacted."
|
|
568
572
|
}
|
|
569
573
|
},
|
|
570
574
|
required: ["query"],
|
|
@@ -2327,6 +2331,14 @@ ${body}`;
|
|
|
2327
2331
|
if (currentContextScopes !== void 0) {
|
|
2328
2332
|
input.currentContextScopes = currentContextScopes;
|
|
2329
2333
|
}
|
|
2334
|
+
if (args.allowUnverifiedPreview !== void 0 && args.allowUnverifiedPreview !== null) {
|
|
2335
|
+
if (typeof args.allowUnverifiedPreview !== "boolean") {
|
|
2336
|
+
throw new EngramAccessInputError(
|
|
2337
|
+
"allowUnverifiedPreview must be a boolean"
|
|
2338
|
+
);
|
|
2339
|
+
}
|
|
2340
|
+
input.allowUnverifiedPreview = args.allowUnverifiedPreview;
|
|
2341
|
+
}
|
|
2330
2342
|
const recallSessionKey = resolveChatGptInspectorRecallSessionKey(
|
|
2331
2343
|
input.sessionKey,
|
|
2332
2344
|
effectivePrincipal
|
|
@@ -3090,4 +3102,4 @@ ${body}`;
|
|
|
3090
3102
|
export {
|
|
3091
3103
|
EngramMcpServer
|
|
3092
3104
|
};
|
|
3093
|
-
//# sourceMappingURL=chunk-
|
|
3105
|
+
//# sourceMappingURL=chunk-GJSNDJHR.js.map
|