@remnic/cli 9.69.39 → 9.69.40
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 +15 -1
- package/package.json +32 -32
package/dist/index.js
CHANGED
|
@@ -2837,12 +2837,21 @@ async function saveConvergeIdentityCache(cachePath, manifest, citationTemplate,
|
|
|
2837
2837
|
identityResolutionVersion: file.identityResolutionVersion
|
|
2838
2838
|
} : {}
|
|
2839
2839
|
}));
|
|
2840
|
+
const inManifest = new Set(files.map((entry) => entry.path));
|
|
2840
2841
|
for (const entry of files) {
|
|
2841
2842
|
const classification = classifications?.get(entry.path);
|
|
2842
2843
|
if (classification === void 0) continue;
|
|
2843
2844
|
entry.statIdentity = classification.statIdentity;
|
|
2844
2845
|
entry.excluded = classification.excluded;
|
|
2845
2846
|
}
|
|
2847
|
+
for (const [pathName, classification] of classifications ?? []) {
|
|
2848
|
+
if (inManifest.has(pathName)) continue;
|
|
2849
|
+
files.push({
|
|
2850
|
+
...loaded?.get(pathName) ?? { path: pathName, sha256: "" },
|
|
2851
|
+
statIdentity: classification.statIdentity,
|
|
2852
|
+
excluded: classification.excluded
|
|
2853
|
+
});
|
|
2854
|
+
}
|
|
2846
2855
|
if (loaded !== void 0 && loaded.size === files.length && files.every((entry) => {
|
|
2847
2856
|
const previous = loaded.get(entry.path);
|
|
2848
2857
|
if (previous === void 0) return false;
|
|
@@ -2878,7 +2887,8 @@ async function saveConvergeIdentityCache(cachePath, manifest, citationTemplate,
|
|
|
2878
2887
|
...entry.memory ? {} : {
|
|
2879
2888
|
...typeof entry.normalizerVersion === "number" ? { normalizerVersion: entry.normalizerVersion } : {},
|
|
2880
2889
|
...typeof entry.identityResolutionVersion === "number" ? { identityResolutionVersion: entry.identityResolutionVersion } : {}
|
|
2881
|
-
}
|
|
2890
|
+
},
|
|
2891
|
+
...entry.statIdentity !== void 0 && entry.excluded !== void 0 ? { statIdentity: entry.statIdentity, excluded: entry.excluded } : {}
|
|
2882
2892
|
});
|
|
2883
2893
|
}
|
|
2884
2894
|
}
|
|
@@ -9447,6 +9457,10 @@ Options:
|
|
|
9447
9457
|
local = deterministic screen/fence (default)
|
|
9448
9458
|
ollama = native /api/chat
|
|
9449
9459
|
openai-compat = /v1/chat/completions
|
|
9460
|
+
(api.openai.com / integrate.api.nvidia.com require
|
|
9461
|
+
https + provider key; other hosts require
|
|
9462
|
+
REMNIC_OPENAI_COMPAT_API_KEY and https, except
|
|
9463
|
+
loopback HTTP on 127.0.0.1 or localhost)
|
|
9450
9464
|
--base-url URL Endpoint (default: http://127.0.0.1:11434)
|
|
9451
9465
|
--model NAME Model id (default: qwen3.8-27b-64k:latest)
|
|
9452
9466
|
--request-timeout-ms N Per-call timeout (default: 300000)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remnic/cli",
|
|
3
|
-
"version": "9.69.
|
|
3
|
+
"version": "9.69.40",
|
|
4
4
|
"description": "CLI for Remnic memory — init, query, doctor, daemon management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -26,26 +26,26 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"yaml": "^2.4.2",
|
|
29
|
-
"@remnic/
|
|
30
|
-
"@remnic/
|
|
31
|
-
"@remnic/
|
|
29
|
+
"@remnic/plugin-pi": "^9.69.40",
|
|
30
|
+
"@remnic/server": "^9.69.40",
|
|
31
|
+
"@remnic/core": "^9.69.40"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@remnic/bench": "^9.69.
|
|
35
|
-
"@remnic/plugin-openclaw": "^9.69.
|
|
36
|
-
"@remnic/export-weclone": "^9.69.
|
|
37
|
-
"@remnic/import-weclone": "^9.69.
|
|
38
|
-
"@remnic/import-chatgpt": "^9.69.
|
|
39
|
-
"@remnic/import-claude": "^9.69.
|
|
40
|
-
"@remnic/import-gemini": "^9.69.
|
|
41
|
-
"@remnic/import-lossless-claw": "^9.69.
|
|
42
|
-
"@remnic/import-mem0": "^9.69.
|
|
43
|
-
"@remnic/import-supermemory": "^9.69.
|
|
44
|
-
"@remnic/import-okf": "^9.69.
|
|
45
|
-
"@remnic/connector-limitless": "^9.69.
|
|
46
|
-
"@remnic/connector-bee": "^9.69.
|
|
47
|
-
"@remnic/connector-omi": "^9.69.
|
|
48
|
-
"@remnic/capture-audio": "^9.69.
|
|
34
|
+
"@remnic/bench": "^9.69.40",
|
|
35
|
+
"@remnic/plugin-openclaw": "^9.69.40",
|
|
36
|
+
"@remnic/export-weclone": "^9.69.40",
|
|
37
|
+
"@remnic/import-weclone": "^9.69.40",
|
|
38
|
+
"@remnic/import-chatgpt": "^9.69.40",
|
|
39
|
+
"@remnic/import-claude": "^9.69.40",
|
|
40
|
+
"@remnic/import-gemini": "^9.69.40",
|
|
41
|
+
"@remnic/import-lossless-claw": "^9.69.40",
|
|
42
|
+
"@remnic/import-mem0": "^9.69.40",
|
|
43
|
+
"@remnic/import-supermemory": "^9.69.40",
|
|
44
|
+
"@remnic/import-okf": "^9.69.40",
|
|
45
|
+
"@remnic/connector-limitless": "^9.69.40",
|
|
46
|
+
"@remnic/connector-bee": "^9.69.40",
|
|
47
|
+
"@remnic/connector-omi": "^9.69.40",
|
|
48
|
+
"@remnic/capture-audio": "^9.69.40"
|
|
49
49
|
},
|
|
50
50
|
"peerDependenciesMeta": {
|
|
51
51
|
"@remnic/bench": {
|
|
@@ -97,19 +97,19 @@
|
|
|
97
97
|
"devDependencies": {
|
|
98
98
|
"tsup": "^8.5.1",
|
|
99
99
|
"typescript": "^5.9.3",
|
|
100
|
-
"@remnic/bench": "9.69.
|
|
101
|
-
"@remnic/plugin-openclaw": "9.69.
|
|
102
|
-
"@remnic/export-weclone": "9.69.
|
|
103
|
-
"@remnic/import-
|
|
104
|
-
"@remnic/import-gemini": "9.69.
|
|
105
|
-
"@remnic/import-
|
|
106
|
-
"@remnic/import-
|
|
107
|
-
"@remnic/import-
|
|
108
|
-
"@remnic/import-
|
|
109
|
-
"@remnic/
|
|
110
|
-
"@remnic/connector-bee": "9.69.
|
|
111
|
-
"@remnic/connector-omi": "9.69.
|
|
112
|
-
"@remnic/
|
|
100
|
+
"@remnic/bench": "9.69.40",
|
|
101
|
+
"@remnic/plugin-openclaw": "9.69.40",
|
|
102
|
+
"@remnic/export-weclone": "9.69.40",
|
|
103
|
+
"@remnic/import-chatgpt": "9.69.40",
|
|
104
|
+
"@remnic/import-gemini": "9.69.40",
|
|
105
|
+
"@remnic/import-claude": "9.69.40",
|
|
106
|
+
"@remnic/import-weclone": "9.69.40",
|
|
107
|
+
"@remnic/import-lossless-claw": "9.69.40",
|
|
108
|
+
"@remnic/import-mem0": "9.69.40",
|
|
109
|
+
"@remnic/connector-limitless": "9.69.40",
|
|
110
|
+
"@remnic/connector-bee": "9.69.40",
|
|
111
|
+
"@remnic/connector-omi": "9.69.40",
|
|
112
|
+
"@remnic/import-supermemory": "9.69.40"
|
|
113
113
|
},
|
|
114
114
|
"license": "MIT",
|
|
115
115
|
"repository": {
|