exomind 0.2.1 → 0.2.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/cli.js +6 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
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.3",
|
|
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"
|
|
@@ -4222,6 +4222,11 @@ program2.command("hook").description("UserPromptSubmit \u94A9\u5B50(\u7531 Claud
|
|
|
4222
4222
|
});
|
|
4223
4223
|
program2.command("install").description("\u5B89\u88C5 Claude Code skill(\u53EF\u9009 --with-hook \u5199\u5165 UserPromptSubmit)").option("--with-hook", "\u540C\u65F6\u5199\u5165 ~/.claude/settings.json \u7684 hook").action(run(install));
|
|
4224
4224
|
async function main() {
|
|
4225
|
+
const first = process.argv[2];
|
|
4226
|
+
if (first && /^--?v(ersion)?$/i.test(first)) {
|
|
4227
|
+
console.log(VERSION);
|
|
4228
|
+
process.exit(0);
|
|
4229
|
+
}
|
|
4225
4230
|
await program2.parseAsync(process.argv);
|
|
4226
4231
|
}
|
|
4227
4232
|
main().catch((e) => handleError(e));
|