@rdmind/rdmind 0.0.28-alpha.17 → 0.0.28-alpha.18

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/cli.js CHANGED
@@ -147562,7 +147562,7 @@ function createContentGeneratorConfig(config, authType, generationConfig) {
147562
147562
  };
147563
147563
  }
147564
147564
  async function createContentGenerator(config, gcConfig, sessionId2, isInitialAuth) {
147565
- const version2 = "0.0.28-alpha.17";
147565
+ const version2 = "0.0.28-alpha.18";
147566
147566
  const userAgent2 = `QwenCode/${version2} (${process.platform}; ${process.arch})`;
147567
147567
  const baseHeaders = {
147568
147568
  "User-Agent": userAgent2
@@ -222537,7 +222537,7 @@ var init_git_commit = __esm({
222537
222537
  "use strict";
222538
222538
  init_esbuild_shims();
222539
222539
  GIT_COMMIT_INFO = "b4320675";
222540
- CLI_VERSION = "0.0.28-alpha.17";
222540
+ CLI_VERSION = "0.0.28-alpha.18";
222541
222541
  }
222542
222542
  });
222543
222543
 
@@ -288202,7 +288202,10 @@ var init_en2 = __esm({
288202
288202
  "Have you tried turning it off and on again? (The loading screen, not me.)": "Have you tried turning it off and on again? (The loading screen, not me.)",
288203
288203
  "Constructing additional pylons...": "Constructing additional pylons...",
288204
288204
  "Initialize OpenSpec in a project with RDMind integration": "Initialize OpenSpec in a project with RDMind integration",
288205
- "Initialize OpenSpec in the current directory": "Initialize OpenSpec in the current directory"
288205
+ "Initialize OpenSpec in the current directory": "Initialize OpenSpec in the current directory",
288206
+ "Scaffold a new OpenSpec change and validate strictly.": "Scaffold a new OpenSpec change and validate strictly.",
288207
+ "Implement an approved OpenSpec change and keep tasks in sync.": "Implement an approved OpenSpec change and keep tasks in sync.",
288208
+ "Archive a deployed OpenSpec change and update specs.": "Archive a deployed OpenSpec change and update specs."
288206
288209
  };
288207
288210
  }
288208
288211
  });
@@ -289057,7 +289060,10 @@ var init_zh = __esm({
289057
289060
  "Have you tried turning it off and on again? (The loading screen, not me.)": "\u4F60\u8BD5\u8FC7\u628A\u5B83\u5173\u6389\u518D\u6253\u5F00\u5417\uFF1F\uFF08\u52A0\u8F7D\u5C4F\u5E55\uFF0C\u4E0D\u662F\u6211\u3002\uFF09",
289058
289061
  "Constructing additional pylons...": "\u6B63\u5728\u5EFA\u9020\u989D\u5916\u7684\u80FD\u91CF\u5854...",
289059
289062
  "Initialize OpenSpec in a project with RDMind integration": "\u5728\u9879\u76EE\u4E2D\u521D\u59CB\u5316 OpenSpec\uFF08\u96C6\u6210 RDMind\uFF09",
289060
- "Initialize OpenSpec in the current directory": "\u5728\u5F53\u524D\u76EE\u5F55\u521D\u59CB\u5316 OpenSpec"
289063
+ "Initialize OpenSpec in the current directory": "\u5728\u5F53\u524D\u76EE\u5F55\u521D\u59CB\u5316 OpenSpec",
289064
+ "Scaffold a new OpenSpec change and validate strictly.": "\u642D\u5EFA\u65B0\u7684 OpenSpec \u53D8\u66F4\u5E76\u4E25\u683C\u9A8C\u8BC1\u3002",
289065
+ "Implement an approved OpenSpec change and keep tasks in sync.": "\u5B9E\u65BD\u5DF2\u6279\u51C6\u7684 OpenSpec \u53D8\u66F4\u5E76\u4FDD\u6301\u4EFB\u52A1\u540C\u6B65\u3002",
289066
+ "Archive a deployed OpenSpec change and update specs.": "\u5F52\u6863\u5DF2\u90E8\u7F72\u7684 OpenSpec \u53D8\u66F4\u5E76\u66F4\u65B0\u89C4\u8303\u3002"
289061
289067
  };
289062
289068
  }
289063
289069
  });
@@ -316752,7 +316758,7 @@ __name(getPackageJson, "getPackageJson");
316752
316758
  // packages/cli/src/utils/version.ts
316753
316759
  async function getCliVersion() {
316754
316760
  const pkgJson = await getPackageJson();
316755
- return "0.0.28-alpha.17";
316761
+ return "0.0.28-alpha.18";
316756
316762
  }
316757
316763
  __name(getCliVersion, "getCliVersion");
316758
316764
 
@@ -329689,9 +329695,17 @@ var MarkdownCommandLoader = class {
329689
329695
  }
329690
329696
  const validDef = validationResult.data;
329691
329697
  const commandName = validDef.name.startsWith("/") ? validDef.name.substring(1) : validDef.name;
329698
+ let description = validDef.description;
329699
+ if (commandName === "openspec-proposal") {
329700
+ description = t2("Scaffold a new OpenSpec change and validate strictly.");
329701
+ } else if (commandName === "openspec-apply") {
329702
+ description = t2("Implement an approved OpenSpec change and keep tasks in sync.");
329703
+ } else if (commandName === "openspec-archive") {
329704
+ description = t2("Archive a deployed OpenSpec change and update specs.");
329705
+ }
329692
329706
  return {
329693
329707
  name: commandName,
329694
- description: validDef.description,
329708
+ description,
329695
329709
  kind: "file" /* FILE */,
329696
329710
  action: /* @__PURE__ */ __name(async (context2, args) => {
329697
329711
  const prompt = content.trim() + (args ? `
package/locales/en.js CHANGED
@@ -1154,4 +1154,10 @@ export default {
1154
1154
  'Initialize OpenSpec in a project with RDMind integration',
1155
1155
  'Initialize OpenSpec in the current directory':
1156
1156
  'Initialize OpenSpec in the current directory',
1157
+ 'Scaffold a new OpenSpec change and validate strictly.':
1158
+ 'Scaffold a new OpenSpec change and validate strictly.',
1159
+ 'Implement an approved OpenSpec change and keep tasks in sync.':
1160
+ 'Implement an approved OpenSpec change and keep tasks in sync.',
1161
+ 'Archive a deployed OpenSpec change and update specs.':
1162
+ 'Archive a deployed OpenSpec change and update specs.',
1157
1163
  };
package/locales/zh.js CHANGED
@@ -1076,4 +1076,10 @@ export default {
1076
1076
  '在项目中初始化 OpenSpec(集成 RDMind)',
1077
1077
  'Initialize OpenSpec in the current directory':
1078
1078
  '在当前目录初始化 OpenSpec',
1079
+ 'Scaffold a new OpenSpec change and validate strictly.':
1080
+ '搭建新的 OpenSpec 变更并严格验证。',
1081
+ 'Implement an approved OpenSpec change and keep tasks in sync.':
1082
+ '实施已批准的 OpenSpec 变更并保持任务同步。',
1083
+ 'Archive a deployed OpenSpec change and update specs.':
1084
+ '归档已部署的 OpenSpec 变更并更新规范。',
1079
1085
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rdmind/rdmind",
3
- "version": "0.0.28-alpha.17",
3
+ "version": "0.0.28-alpha.18",
4
4
  "description": "RDMind - AI-powered coding assistant",
5
5
  "type": "module",
6
6
  "main": "cli.js",
@@ -20,7 +20,7 @@
20
20
  "locales"
21
21
  ],
22
22
  "config": {
23
- "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.0.28-alpha.17"
23
+ "sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.0.28-alpha.18"
24
24
  },
25
25
  "publishConfig": {
26
26
  "access": "public"