@rdmind/rdmind 0.0.20-alpha.0 → 0.0.20-alpha.1

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.
Files changed (2) hide show
  1. package/cli.js +6 -3
  2. package/package.json +2 -2
package/cli.js CHANGED
@@ -183747,7 +183747,7 @@ function createContentGeneratorConfig(config, authType, generationConfig) {
183747
183747
  };
183748
183748
  }
183749
183749
  async function createContentGenerator(config, gcConfig, sessionId2) {
183750
- const version2 = "0.0.20-alpha.0";
183750
+ const version2 = "0.0.20-alpha.1";
183751
183751
  const userAgent2 = `QwenCode/${version2} (${process.platform}; ${process.arch})`;
183752
183752
  const baseHeaders = {
183753
183753
  "User-Agent": userAgent2
@@ -319943,7 +319943,7 @@ init_esbuild_shims();
319943
319943
 
319944
319944
  // packages/cli/src/generated/git-commit.ts
319945
319945
  init_esbuild_shims();
319946
- var GIT_COMMIT_INFO2 = "7c8b6298";
319946
+ var GIT_COMMIT_INFO2 = "ee8c0a30";
319947
319947
 
319948
319948
  // packages/cli/src/ui/components/AboutBox.tsx
319949
319949
  var import_jsx_runtime43 = __toESM(require_jsx_runtime(), 1);
@@ -342045,7 +342045,7 @@ __name(getPackageJson, "getPackageJson");
342045
342045
  // packages/cli/src/utils/version.ts
342046
342046
  async function getCliVersion() {
342047
342047
  const pkgJson = await getPackageJson();
342048
- return "0.0.20-alpha.0";
342048
+ return "0.0.20-alpha.1";
342049
342049
  }
342050
342050
  __name(getCliVersion, "getCliVersion");
342051
342051
 
@@ -349547,6 +349547,9 @@ var FileCommandLoader = class {
349547
349547
  );
349548
349548
  allCommands.push(...commands);
349549
349549
  } catch (error) {
349550
+ if (error instanceof Error && error.name === "AbortError") {
349551
+ return [];
349552
+ }
349550
349553
  if (error.code !== "ENOENT") {
349551
349554
  console.error(
349552
349555
  `[FileCommandLoader] Error loading commands from ${dirInfo.path}:`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rdmind/rdmind",
3
- "version": "0.0.20-alpha.0",
3
+ "version": "0.0.20-alpha.1",
4
4
  "description": "RDMind - AI-powered coding assistant",
5
5
  "type": "module",
6
6
  "main": "cli.js",
@@ -18,7 +18,7 @@
18
18
  "LICENSE"
19
19
  ],
20
20
  "config": {
21
- "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.0.20-alpha.0"
21
+ "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.0.20-alpha.1"
22
22
  },
23
23
  "publishConfig": {
24
24
  "access": "public"