@qoder-ai/qmind-cli 1.1.1 → 1.1.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @qoder-ai/qmind-cli
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - c3a3a0f: Remove a redundant module-boundary note from the CLI package README.
8
+
3
9
  ## 1.1.1
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -2,8 +2,6 @@
2
2
 
3
3
  QMind 命令行工具,可用于登录、管理知识库和来源、检索内容、运行 RAG/编译任务,以及把本地目录同步到知识库。
4
4
 
5
- 本包只提供 `qmind` 可执行命令,不提供 JavaScript/TypeScript 模块导出。不要从 `@qoder-ai/qmind-cli` import `createQMindCliHost`、`runQMindCli` 或其他 API;需要在应用中集成 QMind 时,请使用 `@ali/qmind-sdk`。
6
-
7
5
  ## 安装
8
6
 
9
7
  需要 Node.js `>=20.18.1`:
package/dist/qmind.js CHANGED
@@ -2024,7 +2024,7 @@ function requestsJsonOutput(argv) {
2024
2024
  }
2025
2025
  //#endregion
2026
2026
  //#region src/build-info.ts
2027
- const QMIND_CLI_VERSION = "1.1.1";
2027
+ const QMIND_CLI_VERSION = "1.1.2";
2028
2028
  const QMIND_CLI_BUILD_TIME = "development";
2029
2029
  const QMIND_CLI_UPDATE_BASE_URL = typeof __QMIND_CLI_UPDATE_BASE_URL__ === "string" ? __QMIND_CLI_UPDATE_BASE_URL__ : "https://qoder-ide-cn.oss-cn-hangzhou.aliyuncs.com/qmind/cli/";
2030
2030
  function qmindCliPlatform() {
@@ -4833,7 +4833,7 @@ function registerUpdateCommand(context, program) {
4833
4833
  publicKey: String(raw.publicKey ?? "")
4834
4834
  });
4835
4835
  if (result.updated) context.io.stdout(`[self-update] updated ${QMIND_CLI_VERSION} -> ${result.version}\n`);
4836
- else if (result.version === "1.1.1".replace(/^v/, "")) context.io.stdout(`[self-update] already current: ${result.version}\n`);
4836
+ else if (result.version === "1.1.2".replace(/^v/, "")) context.io.stdout(`[self-update] already current: ${result.version}\n`);
4837
4837
  else context.io.stdout(`[self-update] verified available version: ${result.version}\n`);
4838
4838
  });
4839
4839
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qoder-ai/qmind-cli",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "QMind command line interface",
5
5
  "bin": {
6
6
  "qmind": "bin/cli.js"