@rdmind/rdmind 0.1.8-alpha.0 → 0.1.8-alpha.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/cli.js +134 -15
- package/locales/en.js +62 -1
- package/locales/zh.js +55 -2
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -156603,7 +156603,7 @@ function createContentGeneratorConfig(config2, authType, generationConfig) {
|
|
|
156603
156603
|
};
|
|
156604
156604
|
}
|
|
156605
156605
|
async function createContentGenerator(config2, gcConfig, isInitialAuth) {
|
|
156606
|
-
const version3 = "0.1.8-alpha.
|
|
156606
|
+
const version3 = "0.1.8-alpha.3";
|
|
156607
156607
|
const userAgent2 = `QwenCode/${version3} (${process.platform}; ${process.arch})`;
|
|
156608
156608
|
const baseHeaders = {
|
|
156609
156609
|
"User-Agent": userAgent2
|
|
@@ -195649,11 +195649,26 @@ import { promisify as promisify6 } from "node:util";
|
|
|
195649
195649
|
import os19 from "node:os";
|
|
195650
195650
|
import path37 from "node:path";
|
|
195651
195651
|
async function getProcessInfo(pid) {
|
|
195652
|
-
|
|
195653
|
-
|
|
195654
|
-
|
|
195655
|
-
|
|
195656
|
-
|
|
195652
|
+
try {
|
|
195653
|
+
const command2 = `ps -o ppid=,command= -p ${pid}`;
|
|
195654
|
+
const { stdout } = await execAsync(command2);
|
|
195655
|
+
const trimmedStdout = stdout.trim();
|
|
195656
|
+
if (!trimmedStdout) {
|
|
195657
|
+
return { parentPid: 0, name: "", command: "" };
|
|
195658
|
+
}
|
|
195659
|
+
const parts = trimmedStdout.split(/\s+/);
|
|
195660
|
+
const ppidString = parts[0];
|
|
195661
|
+
const parentPid = parseInt(ppidString, 10);
|
|
195662
|
+
const fullCommand = trimmedStdout.substring(ppidString.length).trim();
|
|
195663
|
+
const processName = path37.basename(fullCommand.split(" ")[0]);
|
|
195664
|
+
return {
|
|
195665
|
+
parentPid: isNaN(parentPid) ? 1 : parentPid,
|
|
195666
|
+
name: processName,
|
|
195667
|
+
command: fullCommand
|
|
195668
|
+
};
|
|
195669
|
+
} catch (_e) {
|
|
195670
|
+
return { parentPid: 0, name: "", command: "" };
|
|
195671
|
+
}
|
|
195657
195672
|
}
|
|
195658
195673
|
async function getIdeProcessInfoForUnix() {
|
|
195659
195674
|
const shells = ["zsh", "bash", "sh", "tcsh", "csh", "ksh", "fish", "dash"];
|
|
@@ -231773,8 +231788,8 @@ var init_git_commit = __esm({
|
|
|
231773
231788
|
"packages/core/src/generated/git-commit.ts"() {
|
|
231774
231789
|
"use strict";
|
|
231775
231790
|
init_esbuild_shims();
|
|
231776
|
-
GIT_COMMIT_INFO = "
|
|
231777
|
-
CLI_VERSION = "0.1.8-alpha.
|
|
231791
|
+
GIT_COMMIT_INFO = "ab290da5";
|
|
231792
|
+
CLI_VERSION = "0.1.8-alpha.3";
|
|
231778
231793
|
}
|
|
231779
231794
|
});
|
|
231780
231795
|
|
|
@@ -303385,7 +303400,8 @@ var init_en3 = __esm({
|
|
|
303385
303400
|
"add files": "add files",
|
|
303386
303401
|
Input: "Input",
|
|
303387
303402
|
"for help,": "for help,",
|
|
303388
|
-
"open documentation": "open documentation",
|
|
303403
|
+
"open documentation,": "open documentation,",
|
|
303404
|
+
"switch model": "switch model",
|
|
303389
303405
|
Create: "Create",
|
|
303390
303406
|
"to customize your interactions with RDMind": "to customize your interactions with RDMind",
|
|
303391
303407
|
Press: "Press",
|
|
@@ -303581,6 +303597,55 @@ var init_en3 = __esm({
|
|
|
303581
303597
|
"It's not a bug, it's a feature... of this loading screen.": "It's not a bug, it's a feature... of this loading screen.",
|
|
303582
303598
|
"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.)",
|
|
303583
303599
|
"Constructing additional pylons...": "Constructing additional pylons...",
|
|
303600
|
+
"Summoning the soul of programmers...": "Summoning the soul of programmers...",
|
|
303601
|
+
"Fixing that bug that's not a bug, it's a feature...": "Fixing that bug that's not a bug, it's a feature...",
|
|
303602
|
+
"Removing pinyin comments from code...": "Removing pinyin comments from code...",
|
|
303603
|
+
"Debating whether array index starts from 0 or 1...": "Debating whether array index starts from 0 or 1...",
|
|
303604
|
+
"Thinking about refactoring...": "Thinking about refactoring...",
|
|
303605
|
+
"Cleaning up stack overflow...": "Cleaning up stack overflow...",
|
|
303606
|
+
"Naming variables properly...": "Naming variables properly...",
|
|
303607
|
+
"Commenting code written 3 months ago...": "Commenting code written 3 months ago...",
|
|
303608
|
+
"Praying for no bugs...": "Praying for no bugs...",
|
|
303609
|
+
"Resolving dependencies...": "Resolving dependencies...",
|
|
303610
|
+
"Waiting for product manager to change requirements...": "Waiting for product manager to change requirements...",
|
|
303611
|
+
"Postponing project deadline...": "Postponing project deadline...",
|
|
303612
|
+
'Preparing another "almost done"...': 'Preparing another "almost done"...',
|
|
303613
|
+
"Taking a break...": "Taking a break...",
|
|
303614
|
+
"Making goji berry tea...": "Making goji berry tea...",
|
|
303615
|
+
"Ordering takeout...": "Ordering takeout...",
|
|
303616
|
+
"Pretending to be busy...": "Pretending to be busy...",
|
|
303617
|
+
"Recharging faith...": "Recharging faith...",
|
|
303618
|
+
"Downloading more RAM...": "Downloading more RAM...",
|
|
303619
|
+
"Feeding the server...": "Feeding the server...",
|
|
303620
|
+
"Waking up sleeping code...": "Waking up sleeping code...",
|
|
303621
|
+
"Feeding data to AI...": "Feeding data to AI...",
|
|
303622
|
+
"Opening imagination...": "Opening imagination...",
|
|
303623
|
+
"Boiling water for tea...": "Boiling water for tea...",
|
|
303624
|
+
"Waiting for the elevator...": "Waiting for the elevator...",
|
|
303625
|
+
"Taking a number in queue...": "Taking a number in queue...",
|
|
303626
|
+
"Waiting for traffic light...": "Waiting for traffic light...",
|
|
303627
|
+
"Charging...": "Charging...",
|
|
303628
|
+
"Buffering life...": "Buffering life...",
|
|
303629
|
+
"Contemplating the meaning of life...": "Contemplating the meaning of life...",
|
|
303630
|
+
"What to eat today? Thinking...": "What to eat today? Thinking...",
|
|
303631
|
+
"Pretending to work...": "Pretending to work...",
|
|
303632
|
+
"Let me think, just a moment...": "Let me think, just a moment...",
|
|
303633
|
+
"Brewing inspiration...": "Brewing inspiration...",
|
|
303634
|
+
"Take a deep breath, almost done...": "Take a deep breath, almost done...",
|
|
303635
|
+
"Don't worry, good things take time...": "Don't worry, good things take time...",
|
|
303636
|
+
"Stay calm, exciting things coming...": "Stay calm, exciting things coming...",
|
|
303637
|
+
"Greeting the server...": "Greeting the server...",
|
|
303638
|
+
"Organizing thoughts...": "Organizing thoughts...",
|
|
303639
|
+
"Preparing my words...": "Preparing my words...",
|
|
303640
|
+
"Looking up information...": "Looking up information...",
|
|
303641
|
+
"Sorting out my thoughts...": "Sorting out my thoughts...",
|
|
303642
|
+
"Analyzing the problem...": "Analyzing the problem...",
|
|
303643
|
+
"Looking for the best solution...": "Looking for the best solution...",
|
|
303644
|
+
"Loading...": "Loading...",
|
|
303645
|
+
"Processing, please wait...": "Processing, please wait...",
|
|
303646
|
+
"Almost there...": "Almost there...",
|
|
303647
|
+
"Working hard...": "Working hard...",
|
|
303648
|
+
"Almost... almost...": "Almost... almost...",
|
|
303584
303649
|
"Initialize OpenSpec in a project with RDMind integration": "Initialize OpenSpec in a project with RDMind integration",
|
|
303585
303650
|
"Initialize OpenSpec in the current directory": "Initialize OpenSpec in the current directory",
|
|
303586
303651
|
"Scaffold a new OpenSpec change and validate strictly.": "Scaffold a new OpenSpec change and validate strictly.",
|
|
@@ -304239,7 +304304,8 @@ var init_zh = __esm({
|
|
|
304239
304304
|
"add files": "\u6DFB\u52A0\u6587\u4EF6",
|
|
304240
304305
|
Input: "\u8F93\u5165",
|
|
304241
304306
|
"for help,": "\u83B7\u53D6\u5E2E\u52A9\uFF0C",
|
|
304242
|
-
"open documentation": "\u6253\u5F00\u6587\u6863",
|
|
304307
|
+
"open documentation,": "\u6253\u5F00\u6587\u6863\uFF0C",
|
|
304308
|
+
"switch model": "\u5207\u6362\u6A21\u578B",
|
|
304243
304309
|
Create: "\u521B\u5EFA",
|
|
304244
304310
|
"to customize your interactions with RDMind": "\u81EA\u5B9A\u4E49\u4F60\u4E0E RDMind \u7684\u4EA4\u4E92\u65B9\u5F0F",
|
|
304245
304311
|
Press: "\u6309",
|
|
@@ -304345,7 +304411,7 @@ var init_zh = __esm({
|
|
|
304345
304411
|
"Converting coffee into code...": "\u6B63\u5728\u5C06\u5496\u5561\u8F6C\u6362\u4E3A\u4EE3\u7801...",
|
|
304346
304412
|
"Updating the syntax for reality...": "\u6B63\u5728\u66F4\u65B0\u73B0\u5B9E\u7684\u8BED\u6CD5...",
|
|
304347
304413
|
"Rewiring the synapses...": "\u6B63\u5728\u91CD\u65B0\u8FDE\u63A5\u7A81\u89E6...",
|
|
304348
|
-
"Looking for a misplaced semicolon...": "\u6B63\u5728\u5BFB\u627E\
|
|
304414
|
+
"Looking for a misplaced semicolon...": "\u6B63\u5728\u5BFB\u627E\u6D88\u5931\u7684\u5206\u53F7...",
|
|
304349
304415
|
"Greasin' the cogs of the machine...": "\u6B63\u5728\u7ED9\u673A\u5668\u7684\u9F7F\u8F6E\u4E0A\u6CB9...",
|
|
304350
304416
|
"Pre-heating the servers...": "\u6B63\u5728\u9884\u70ED\u670D\u52A1\u5668...",
|
|
304351
304417
|
"Calibrating the flux capacitor...": "\u6B63\u5728\u6821\u51C6\u901A\u91CF\u7535\u5BB9\u5668...",
|
|
@@ -304435,6 +304501,55 @@ var init_zh = __esm({
|
|
|
304435
304501
|
"It's not a bug, it's a feature... of this loading screen.": "\u8FD9\u4E0D\u662F\u4E00\u4E2A\u9519\u8BEF\uFF0C\u8FD9\u662F\u4E00\u4E2A\u529F\u80FD...\u8FD9\u4E2A\u52A0\u8F7D\u5C4F\u5E55\u7684\u529F\u80FD\u3002",
|
|
304436
304502
|
"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",
|
|
304437
304503
|
"Constructing additional pylons...": "\u6B63\u5728\u5EFA\u9020\u989D\u5916\u7684\u80FD\u91CF\u5854...",
|
|
304504
|
+
"Summoning the soul of programmers...": "\u6B63\u5728\u53EC\u5524\u7A0B\u5E8F\u5458\u7684\u7075\u9B42...",
|
|
304505
|
+
"Fixing that bug that's not a bug, it's a feature...": "\u6B63\u5728\u4FEE\u590D\u90A3\u4E2A\u4E0D\u7B97 bug \u7684 feature...",
|
|
304506
|
+
"Removing pinyin comments from code...": "\u6B63\u5728\u6E05\u9664\u4EE3\u7801\u91CC\u7684\u62FC\u97F3\u6CE8\u91CA...",
|
|
304507
|
+
"Debating whether array index starts from 0 or 1...": "\u6B63\u5728\u4E89\u8BBA\u6570\u7EC4\u4E0B\u6807\u4ECE 0 \u8FD8\u662F\u4ECE 1...",
|
|
304508
|
+
"Thinking about refactoring...": "\u6B63\u5728\u601D\u8003\u8981\u4E0D\u8981\u91CD\u6784...",
|
|
304509
|
+
"Cleaning up stack overflow...": "\u6B63\u5728\u6E05\u7406\u5806\u6808\u6EA2\u51FA...",
|
|
304510
|
+
"Naming variables properly...": "\u6B63\u5728\u7ED9\u53D8\u91CF\u8D77\u4E2A\u597D\u540D\u5B57...",
|
|
304511
|
+
"Commenting code written 3 months ago...": "\u6B63\u5728\u6CE8\u91CA\u4E09\u4E2A\u6708\u524D\u5199\u7684\u4EE3\u7801...",
|
|
304512
|
+
"Praying for no bugs...": "\u6B63\u5728\u7948\u7977\u4E0D\u8981\u6709 bug...",
|
|
304513
|
+
"Resolving dependencies...": "\u6B63\u5728\u89E3\u51B3\u4F9D\u8D56\u5173\u7CFB...",
|
|
304514
|
+
"Waiting for product manager to change requirements...": "\u6B63\u5728\u7B49\u5F85\u4EA7\u54C1\u7ECF\u7406\u6539\u9700\u6C42...",
|
|
304515
|
+
"Postponing project deadline...": "\u6B63\u5728\u5EF6\u671F\u9879\u76EE\u622A\u6B62\u65E5\u671F...",
|
|
304516
|
+
'Preparing another "almost done"...': '\u6B63\u5728\u51C6\u5907\u53C8\u4E00\u6B21"\u5FEB\u597D\u4E86"...',
|
|
304517
|
+
"Taking a break...": "\u6B63\u5728\u6478\u9C7C...",
|
|
304518
|
+
"Making goji berry tea...": "\u6B63\u5728\u6CE1\u67B8\u675E...",
|
|
304519
|
+
"Ordering takeout...": "\u6B63\u5728\u70B9\u5916\u5356...",
|
|
304520
|
+
"Pretending to be busy...": "\u6B63\u5728\u5047\u88C5\u5F88\u5FD9...",
|
|
304521
|
+
"Recharging faith...": "\u6B63\u5728\u5145\u503C\u4FE1\u4EF0...",
|
|
304522
|
+
"Downloading more RAM...": "\u6B63\u5728\u4E0B\u8F7D\u66F4\u591A\u5185\u5B58...",
|
|
304523
|
+
"Feeding the server...": "\u6B63\u5728\u6295\u5582\u670D\u52A1\u5668...",
|
|
304524
|
+
"Waking up sleeping code...": "\u6B63\u5728\u5524\u9192\u6C89\u7761\u7684\u4EE3\u7801...",
|
|
304525
|
+
"Feeding data to AI...": "\u6B63\u5728\u7ED9 AI \u5582\u6570\u636E...",
|
|
304526
|
+
"Opening imagination...": "\u6B63\u5728\u6253\u5F00\u8111\u6D1E...",
|
|
304527
|
+
"Boiling water for tea...": "\u6B63\u5728\u70E7\u5F00\u6C34\u6CE1\u8336...",
|
|
304528
|
+
"Waiting for the elevator...": "\u6B63\u5728\u7B49\u7535\u68AF...",
|
|
304529
|
+
"Taking a number in queue...": "\u6B63\u5728\u6392\u961F\u53D6\u53F7...",
|
|
304530
|
+
"Waiting for traffic light...": "\u6B63\u5728\u7B49\u7EA2\u7EFF\u706F...",
|
|
304531
|
+
"Charging...": "\u6B63\u5728\u5145\u7535\u4E2D...",
|
|
304532
|
+
"Buffering life...": "\u6B63\u5728\u7F13\u51B2\u4EBA\u751F...",
|
|
304533
|
+
"Contemplating the meaning of life...": "\u6B63\u5728\u601D\u8003\u4EBA\u751F\u7684\u610F\u4E49...",
|
|
304534
|
+
"What to eat today? Thinking...": "\u4ECA\u5929\u5403\u4EC0\u4E48\uFF1F\u6B63\u5728\u601D\u8003\u4E2D...",
|
|
304535
|
+
"Pretending to work...": "\u6B63\u5728\u5047\u88C5\u5728\u5DE5\u4F5C...",
|
|
304536
|
+
"Let me think, just a moment...": "\u8BA9\u6211\u60F3\u60F3\uFF0C\u7A0D\u7B49\u4E00\u4E0B...",
|
|
304537
|
+
"Brewing inspiration...": "\u6B63\u5728\u915D\u917F\u7075\u611F...",
|
|
304538
|
+
"Take a deep breath, almost done...": "\u6DF1\u547C\u5438\uFF0C\u9A6C\u4E0A\u5C31\u597D...",
|
|
304539
|
+
"Don't worry, good things take time...": "\u4E0D\u8981\u7740\u6025\uFF0C\u597D\u996D\u4E0D\u6015\u665A...",
|
|
304540
|
+
"Stay calm, exciting things coming...": "\u7A0D\u5B89\u52FF\u8E81\uFF0C\u7CBE\u5F69\u5373\u5C06\u5448\u73B0...",
|
|
304541
|
+
"Greeting the server...": "\u6B63\u5728\u5411\u670D\u52A1\u5668\u95EE\u597D...",
|
|
304542
|
+
"Organizing thoughts...": "\u6B63\u5728\u6574\u7406\u601D\u7EEA...",
|
|
304543
|
+
"Preparing my words...": "\u6B63\u5728\u7EC4\u7EC7\u8BED\u8A00...",
|
|
304544
|
+
"Looking up information...": "\u6B63\u5728\u67E5\u9605\u8D44\u6599...",
|
|
304545
|
+
"Sorting out my thoughts...": "\u8BA9\u6211\u7406\u4E00\u7406\u601D\u8DEF...",
|
|
304546
|
+
"Analyzing the problem...": "\u6B63\u5728\u5206\u6790\u95EE\u9898...",
|
|
304547
|
+
"Looking for the best solution...": "\u6B63\u5728\u5BFB\u627E\u6700\u4F73\u65B9\u6848...",
|
|
304548
|
+
"Loading...": "\u6B63\u5728\u52A0\u8F7D...",
|
|
304549
|
+
"Processing, please wait...": "\u5904\u7406\u4E2D\uFF0C\u8BF7\u7A0D\u5019...",
|
|
304550
|
+
"Almost there...": "\u9A6C\u4E0A\u5C31\u597D...",
|
|
304551
|
+
"Working hard...": "\u6B63\u5728\u52AA\u529B\u5DE5\u4F5C\u4E2D...",
|
|
304552
|
+
"Almost... almost...": "\u5FEB\u4E86\uFF0C\u5FEB\u4E86...",
|
|
304438
304553
|
"Initialize OpenSpec in a project with RDMind integration": "\u5728\u9879\u76EE\u4E2D\u521D\u59CB\u5316 OpenSpec\uFF08\u96C6\u6210 RDMind\uFF09",
|
|
304439
304554
|
"Initialize OpenSpec in the current directory": "\u5728\u5F53\u524D\u76EE\u5F55\u521D\u59CB\u5316 OpenSpec",
|
|
304440
304555
|
"Scaffold a new OpenSpec change and validate strictly.": "\u642D\u5EFA\u65B0\u7684 OpenSpec \u53D8\u66F4\u5E76\u4E25\u683C\u9A8C\u8BC1\u3002",
|
|
@@ -342131,7 +342246,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
342131
342246
|
// packages/cli/src/utils/version.ts
|
|
342132
342247
|
async function getCliVersion() {
|
|
342133
342248
|
const pkgJson = await getPackageJson();
|
|
342134
|
-
return "0.1.8-alpha.
|
|
342249
|
+
return "0.1.8-alpha.3";
|
|
342135
342250
|
}
|
|
342136
342251
|
__name(getCliVersion, "getCliVersion");
|
|
342137
342252
|
|
|
@@ -348678,7 +348793,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
348678
348793
|
|
|
348679
348794
|
// packages/cli/src/generated/git-commit.ts
|
|
348680
348795
|
init_esbuild_shims();
|
|
348681
|
-
var GIT_COMMIT_INFO2 = "
|
|
348796
|
+
var GIT_COMMIT_INFO2 = "ab290da5";
|
|
348682
348797
|
|
|
348683
348798
|
// packages/cli/src/utils/systemInfo.ts
|
|
348684
348799
|
async function getNpmVersion() {
|
|
@@ -384160,7 +384275,11 @@ var Tips = /* @__PURE__ */ __name(({ config: config2 }) => {
|
|
|
384160
384275
|
" ",
|
|
384161
384276
|
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Text3, { bold: true, color: theme.text.accent, children: "/docs" }),
|
|
384162
384277
|
" ",
|
|
384163
|
-
t3("open documentation")
|
|
384278
|
+
t3("open documentation,"),
|
|
384279
|
+
" ",
|
|
384280
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)(Text3, { bold: true, color: theme.text.accent, children: "/model" }),
|
|
384281
|
+
" ",
|
|
384282
|
+
t3("switch model")
|
|
384164
384283
|
] }),
|
|
384165
384284
|
geminiMdFileCount === 0 && /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(Text3, { color: theme.text.primary, children: [
|
|
384166
384285
|
"3. ",
|
|
@@ -404768,7 +404887,7 @@ var GeminiAgent = class {
|
|
|
404768
404887
|
name: APPROVAL_MODE_INFO[mode].name,
|
|
404769
404888
|
description: APPROVAL_MODE_INFO[mode].description
|
|
404770
404889
|
}));
|
|
404771
|
-
const version3 = "0.1.8-alpha.
|
|
404890
|
+
const version3 = "0.1.8-alpha.3";
|
|
404772
404891
|
return {
|
|
404773
404892
|
protocolVersion: PROTOCOL_VERSION,
|
|
404774
404893
|
agentInfo: {
|
package/locales/en.js
CHANGED
|
@@ -872,7 +872,8 @@ export default {
|
|
|
872
872
|
'add files': 'add files',
|
|
873
873
|
Input: 'Input',
|
|
874
874
|
'for help,': 'for help,',
|
|
875
|
-
'open documentation': 'open documentation',
|
|
875
|
+
'open documentation,': 'open documentation,',
|
|
876
|
+
'switch model': 'switch model',
|
|
876
877
|
Create: 'Create',
|
|
877
878
|
'to customize your interactions with RDMind':
|
|
878
879
|
'to customize your interactions with RDMind',
|
|
@@ -1139,6 +1140,66 @@ export default {
|
|
|
1139
1140
|
'Have you tried turning it off and on again? (The loading screen, not me.)':
|
|
1140
1141
|
'Have you tried turning it off and on again? (The loading screen, not me.)',
|
|
1141
1142
|
'Constructing additional pylons...': 'Constructing additional pylons...',
|
|
1143
|
+
'Summoning the soul of programmers...':
|
|
1144
|
+
'Summoning the soul of programmers...',
|
|
1145
|
+
"Fixing that bug that's not a bug, it's a feature...":
|
|
1146
|
+
"Fixing that bug that's not a bug, it's a feature...",
|
|
1147
|
+
'Removing pinyin comments from code...':
|
|
1148
|
+
'Removing pinyin comments from code...',
|
|
1149
|
+
'Debating whether array index starts from 0 or 1...':
|
|
1150
|
+
'Debating whether array index starts from 0 or 1...',
|
|
1151
|
+
'Thinking about refactoring...': 'Thinking about refactoring...',
|
|
1152
|
+
'Cleaning up stack overflow...': 'Cleaning up stack overflow...',
|
|
1153
|
+
'Naming variables properly...': 'Naming variables properly...',
|
|
1154
|
+
'Commenting code written 3 months ago...':
|
|
1155
|
+
'Commenting code written 3 months ago...',
|
|
1156
|
+
'Praying for no bugs...': 'Praying for no bugs...',
|
|
1157
|
+
'Resolving dependencies...': 'Resolving dependencies...',
|
|
1158
|
+
'Waiting for product manager to change requirements...':
|
|
1159
|
+
'Waiting for product manager to change requirements...',
|
|
1160
|
+
'Postponing project deadline...': 'Postponing project deadline...',
|
|
1161
|
+
'Preparing another "almost done"...':
|
|
1162
|
+
'Preparing another "almost done"...',
|
|
1163
|
+
'Taking a break...': 'Taking a break...',
|
|
1164
|
+
'Making goji berry tea...': 'Making goji berry tea...',
|
|
1165
|
+
'Ordering takeout...': 'Ordering takeout...',
|
|
1166
|
+
'Pretending to be busy...': 'Pretending to be busy...',
|
|
1167
|
+
'Recharging faith...': 'Recharging faith...',
|
|
1168
|
+
'Downloading more RAM...': 'Downloading more RAM...',
|
|
1169
|
+
'Feeding the server...': 'Feeding the server...',
|
|
1170
|
+
'Waking up sleeping code...': 'Waking up sleeping code...',
|
|
1171
|
+
'Feeding data to AI...': 'Feeding data to AI...',
|
|
1172
|
+
'Opening imagination...': 'Opening imagination...',
|
|
1173
|
+
'Boiling water for tea...': 'Boiling water for tea...',
|
|
1174
|
+
'Waiting for the elevator...': 'Waiting for the elevator...',
|
|
1175
|
+
'Taking a number in queue...': 'Taking a number in queue...',
|
|
1176
|
+
'Waiting for traffic light...': 'Waiting for traffic light...',
|
|
1177
|
+
'Charging...': 'Charging...',
|
|
1178
|
+
'Buffering life...': 'Buffering life...',
|
|
1179
|
+
'Contemplating the meaning of life...':
|
|
1180
|
+
'Contemplating the meaning of life...',
|
|
1181
|
+
'What to eat today? Thinking...': 'What to eat today? Thinking...',
|
|
1182
|
+
'Pretending to work...': 'Pretending to work...',
|
|
1183
|
+
'Let me think, just a moment...': 'Let me think, just a moment...',
|
|
1184
|
+
'Brewing inspiration...': 'Brewing inspiration...',
|
|
1185
|
+
'Take a deep breath, almost done...':
|
|
1186
|
+
'Take a deep breath, almost done...',
|
|
1187
|
+
"Don't worry, good things take time...":
|
|
1188
|
+
"Don't worry, good things take time...",
|
|
1189
|
+
'Stay calm, exciting things coming...':
|
|
1190
|
+
'Stay calm, exciting things coming...',
|
|
1191
|
+
'Greeting the server...': 'Greeting the server...',
|
|
1192
|
+
'Organizing thoughts...': 'Organizing thoughts...',
|
|
1193
|
+
'Preparing my words...': 'Preparing my words...',
|
|
1194
|
+
'Looking up information...': 'Looking up information...',
|
|
1195
|
+
'Sorting out my thoughts...': 'Sorting out my thoughts...',
|
|
1196
|
+
'Analyzing the problem...': 'Analyzing the problem...',
|
|
1197
|
+
'Looking for the best solution...': 'Looking for the best solution...',
|
|
1198
|
+
'Loading...': 'Loading...',
|
|
1199
|
+
'Processing, please wait...': 'Processing, please wait...',
|
|
1200
|
+
'Almost there...': 'Almost there...',
|
|
1201
|
+
'Working hard...': 'Working hard...',
|
|
1202
|
+
'Almost... almost...': 'Almost... almost...',
|
|
1142
1203
|
'Initialize OpenSpec in a project with RDMind integration':
|
|
1143
1204
|
'Initialize OpenSpec in a project with RDMind integration',
|
|
1144
1205
|
'Initialize OpenSpec in the current directory':
|
package/locales/zh.js
CHANGED
|
@@ -824,7 +824,8 @@ export default {
|
|
|
824
824
|
'add files': '添加文件',
|
|
825
825
|
Input: '输入',
|
|
826
826
|
'for help,': '获取帮助,',
|
|
827
|
-
'open documentation': '
|
|
827
|
+
'open documentation,': '打开文档,',
|
|
828
|
+
'switch model': '切换模型',
|
|
828
829
|
Create: '创建',
|
|
829
830
|
'to customize your interactions with RDMind': '自定义你与 RDMind 的交互方式',
|
|
830
831
|
Press: '按',
|
|
@@ -944,7 +945,7 @@ export default {
|
|
|
944
945
|
'Converting coffee into code...': '正在将咖啡转换为代码...',
|
|
945
946
|
'Updating the syntax for reality...': '正在更新现实的语法...',
|
|
946
947
|
'Rewiring the synapses...': '正在重新连接突触...',
|
|
947
|
-
'Looking for a misplaced semicolon...': '
|
|
948
|
+
'Looking for a misplaced semicolon...': '正在寻找消失的分号...',
|
|
948
949
|
"Greasin' the cogs of the machine...": '正在给机器的齿轮上油...',
|
|
949
950
|
'Pre-heating the servers...': '正在预热服务器...',
|
|
950
951
|
'Calibrating the flux capacitor...': '正在校准通量电容器...',
|
|
@@ -1062,6 +1063,58 @@ export default {
|
|
|
1062
1063
|
'Have you tried turning it off and on again? (The loading screen, not me.)':
|
|
1063
1064
|
'你试过把它关掉再打开吗?(加载屏幕,不是我。)',
|
|
1064
1065
|
'Constructing additional pylons...': '正在建造额外的能量塔...',
|
|
1066
|
+
'Summoning the soul of programmers...': '正在召唤程序员的灵魂...',
|
|
1067
|
+
"Fixing that bug that's not a bug, it's a feature...":
|
|
1068
|
+
'正在修复那个不算 bug 的 feature...',
|
|
1069
|
+
'Removing pinyin comments from code...': '正在清除代码里的拼音注释...',
|
|
1070
|
+
'Debating whether array index starts from 0 or 1...':
|
|
1071
|
+
'正在争论数组下标从 0 还是从 1...',
|
|
1072
|
+
'Thinking about refactoring...': '正在思考要不要重构...',
|
|
1073
|
+
'Cleaning up stack overflow...': '正在清理堆栈溢出...',
|
|
1074
|
+
'Naming variables properly...': '正在给变量起个好名字...',
|
|
1075
|
+
'Commenting code written 3 months ago...': '正在注释三个月前写的代码...',
|
|
1076
|
+
'Praying for no bugs...': '正在祈祷不要有 bug...',
|
|
1077
|
+
'Resolving dependencies...': '正在解决依赖关系...',
|
|
1078
|
+
'Waiting for product manager to change requirements...':
|
|
1079
|
+
'正在等待产品经理改需求...',
|
|
1080
|
+
'Postponing project deadline...': '正在延期项目截止日期...',
|
|
1081
|
+
'Preparing another "almost done"...': '正在准备又一次"快好了"...',
|
|
1082
|
+
'Taking a break...': '正在摸鱼...',
|
|
1083
|
+
'Making goji berry tea...': '正在泡枸杞...',
|
|
1084
|
+
'Ordering takeout...': '正在点外卖...',
|
|
1085
|
+
'Pretending to be busy...': '正在假装很忙...',
|
|
1086
|
+
'Recharging faith...': '正在充值信仰...',
|
|
1087
|
+
'Downloading more RAM...': '正在下载更多内存...',
|
|
1088
|
+
'Feeding the server...': '正在投喂服务器...',
|
|
1089
|
+
'Waking up sleeping code...': '正在唤醒沉睡的代码...',
|
|
1090
|
+
'Feeding data to AI...': '正在给 AI 喂数据...',
|
|
1091
|
+
'Opening imagination...': '正在打开脑洞...',
|
|
1092
|
+
'Boiling water for tea...': '正在烧开水泡茶...',
|
|
1093
|
+
'Waiting for the elevator...': '正在等电梯...',
|
|
1094
|
+
'Taking a number in queue...': '正在排队取号...',
|
|
1095
|
+
'Waiting for traffic light...': '正在等红绿灯...',
|
|
1096
|
+
'Charging...': '正在充电中...',
|
|
1097
|
+
'Buffering life...': '正在缓冲人生...',
|
|
1098
|
+
'Contemplating the meaning of life...': '正在思考人生的意义...',
|
|
1099
|
+
'What to eat today? Thinking...': '今天吃什么?正在思考中...',
|
|
1100
|
+
'Pretending to work...': '正在假装在工作...',
|
|
1101
|
+
'Let me think, just a moment...': '让我想想,稍等一下...',
|
|
1102
|
+
'Brewing inspiration...': '正在酝酿灵感...',
|
|
1103
|
+
'Take a deep breath, almost done...': '深呼吸,马上就好...',
|
|
1104
|
+
"Don't worry, good things take time...": '不要着急,好饭不怕晚...',
|
|
1105
|
+
'Stay calm, exciting things coming...': '稍安勿躁,精彩即将呈现...',
|
|
1106
|
+
'Greeting the server...': '正在向服务器问好...',
|
|
1107
|
+
'Organizing thoughts...': '正在整理思绪...',
|
|
1108
|
+
'Preparing my words...': '正在组织语言...',
|
|
1109
|
+
'Looking up information...': '正在查阅资料...',
|
|
1110
|
+
'Sorting out my thoughts...': '让我理一理思路...',
|
|
1111
|
+
'Analyzing the problem...': '正在分析问题...',
|
|
1112
|
+
'Looking for the best solution...': '正在寻找最佳方案...',
|
|
1113
|
+
'Loading...': '正在加载...',
|
|
1114
|
+
'Processing, please wait...': '处理中,请稍候...',
|
|
1115
|
+
'Almost there...': '马上就好...',
|
|
1116
|
+
'Working hard...': '正在努力工作中...',
|
|
1117
|
+
'Almost... almost...': '快了,快了...',
|
|
1065
1118
|
'Initialize OpenSpec in a project with RDMind integration':
|
|
1066
1119
|
'在项目中初始化 OpenSpec(集成 RDMind)',
|
|
1067
1120
|
'Initialize OpenSpec in the current directory': '在当前目录初始化 OpenSpec',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rdmind/rdmind",
|
|
3
|
-
"version": "0.1.8-alpha.
|
|
3
|
+
"version": "0.1.8-alpha.3",
|
|
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.1.8-alpha.
|
|
23
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.1.8-alpha.3"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|