exomind 0.2.4 → 0.2.6
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/cli.js +15 -7
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
- package/skill/SKILL.md +4 -2
package/dist/cli.js
CHANGED
|
@@ -3119,7 +3119,7 @@ var {
|
|
|
3119
3119
|
// package.json
|
|
3120
3120
|
var package_default = {
|
|
3121
3121
|
name: "exomind",
|
|
3122
|
-
version: "0.2.
|
|
3122
|
+
version: "0.2.6",
|
|
3123
3123
|
description: "ExoMind \u8DE8\u5E73\u53F0\u547D\u4EE4\u884C\u5BA2\u6237\u7AEF \u2014 \u901A\u8FC7 REST \u4E0E ExoMind \u77E5\u8BC6\u5E93\u4EA4\u4E92(ingest/query/search/review),\u66FF\u4EE3 Windows \u4E0D\u53EF\u7528\u7684 MCP \u5BA2\u6237\u7AEF\u3002",
|
|
3124
3124
|
bin: {
|
|
3125
3125
|
exomind: "dist/cli.js"
|
|
@@ -3773,13 +3773,21 @@ async function runDirIngestest(client, opts, dir) {
|
|
|
3773
3773
|
}
|
|
3774
3774
|
cleanupStale(manifest, dir, files);
|
|
3775
3775
|
saveManifest(manifest);
|
|
3776
|
+
const allUpToDate = added + updated === 0 && plan.toSkip.length > 0 && failed === 0;
|
|
3776
3777
|
output(
|
|
3777
|
-
{ added, updated, skipped: plan.toSkip.length, failed, total, dir },
|
|
3778
|
-
() =>
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3778
|
+
{ added, updated, skipped: plan.toSkip.length, failed, total, dir, allUpToDate },
|
|
3779
|
+
() => {
|
|
3780
|
+
console.log(
|
|
3781
|
+
green("\u2713 \u76EE\u5F55\u6444\u5165\u5B8C\u6210") + dim(
|
|
3782
|
+
`: \u65B0\u589E ${added} / \u66F4\u65B0 ${updated} / \u8DF3\u8FC7 ${plan.toSkip.length} / \u5931\u8D25 ${failed} (\u5171 ${total})`
|
|
3783
|
+
)
|
|
3784
|
+
);
|
|
3785
|
+
if (allUpToDate) {
|
|
3786
|
+
console.log(
|
|
3787
|
+
dim("\uFF08\u5168\u90E8\u5DF2\u662F\u6700\u65B0,\u65E0\u9700\u91CD\u6444;\u9664\u975E\u7528\u6237\u660E\u786E\u8981\u6C42\u5F3A\u5236\u5237\u65B0,\u5426\u5219\u4E0D\u8981\u52A0 --force\uFF09")
|
|
3788
|
+
);
|
|
3789
|
+
}
|
|
3790
|
+
}
|
|
3783
3791
|
);
|
|
3784
3792
|
}
|
|
3785
3793
|
|