@rdmind/rdmind 0.1.9-alpha.3 → 0.1.9
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 +12 -11
- package/package.json +2 -2
package/cli.js
CHANGED
|
@@ -156101,7 +156101,7 @@ __export(geminiContentGenerator_exports2, {
|
|
|
156101
156101
|
createGeminiContentGenerator: () => createGeminiContentGenerator
|
|
156102
156102
|
});
|
|
156103
156103
|
function createGeminiContentGenerator(config2, gcConfig) {
|
|
156104
|
-
const version2 = "0.1.9
|
|
156104
|
+
const version2 = "0.1.9";
|
|
156105
156105
|
const userAgent2 = config2.userAgent || `QwenCode/${version2} (${process.platform}; ${process.arch})`;
|
|
156106
156106
|
const baseHeaders = {
|
|
156107
156107
|
"User-Agent": userAgent2
|
|
@@ -233805,8 +233805,8 @@ var init_git_commit = __esm({
|
|
|
233805
233805
|
"packages/core/src/generated/git-commit.ts"() {
|
|
233806
233806
|
"use strict";
|
|
233807
233807
|
init_esbuild_shims();
|
|
233808
|
-
GIT_COMMIT_INFO = "
|
|
233809
|
-
CLI_VERSION = "0.1.9
|
|
233808
|
+
GIT_COMMIT_INFO = "9eaa1a61";
|
|
233809
|
+
CLI_VERSION = "0.1.9";
|
|
233810
233810
|
}
|
|
233811
233811
|
});
|
|
233812
233812
|
|
|
@@ -344137,7 +344137,7 @@ __name(getPackageJson, "getPackageJson");
|
|
|
344137
344137
|
// packages/cli/src/utils/version.ts
|
|
344138
344138
|
async function getCliVersion() {
|
|
344139
344139
|
const pkgJson = await getPackageJson();
|
|
344140
|
-
return "0.1.9
|
|
344140
|
+
return "0.1.9";
|
|
344141
344141
|
}
|
|
344142
344142
|
__name(getCliVersion, "getCliVersion");
|
|
344143
344143
|
|
|
@@ -352410,7 +352410,7 @@ var formatDuration = /* @__PURE__ */ __name((milliseconds) => {
|
|
|
352410
352410
|
|
|
352411
352411
|
// packages/cli/src/generated/git-commit.ts
|
|
352412
352412
|
init_esbuild_shims();
|
|
352413
|
-
var GIT_COMMIT_INFO2 = "
|
|
352413
|
+
var GIT_COMMIT_INFO2 = "9eaa1a61";
|
|
352414
352414
|
|
|
352415
352415
|
// packages/cli/src/utils/systemInfo.ts
|
|
352416
352416
|
async function getNpmVersion() {
|
|
@@ -353626,21 +353626,22 @@ var javaCommand = {
|
|
|
353626
353626
|
};
|
|
353627
353627
|
var createCommand = {
|
|
353628
353628
|
name: "create",
|
|
353629
|
-
description: "\u521B\u5EFA\u9879\u76EE\u811A\u624B\u67B6\uFF0C\u7528\u6CD5\uFF1A/create java sns <\u9879\u76EE\u540D>",
|
|
353629
|
+
description: "\u521B\u5EFA\u9879\u76EE\u811A\u624B\u67B6\uFF0C\u7528\u6CD5\uFF1A/create java sns <\u9879\u76EE\u540D> \u6216 /create idl <\u9879\u76EE\u540D>",
|
|
353630
353630
|
kind: "built-in" /* BUILT_IN */,
|
|
353631
353631
|
subCommands: [javaCommand, idlCommand],
|
|
353632
353632
|
action: /* @__PURE__ */ __name(async (context2, args) => {
|
|
353633
|
-
const
|
|
353634
|
-
if (
|
|
353633
|
+
const trimmedArgs = args.trim();
|
|
353634
|
+
if (!trimmedArgs) {
|
|
353635
353635
|
context2.ui.addItem(
|
|
353636
353636
|
{
|
|
353637
|
-
type: "
|
|
353638
|
-
text: "\
|
|
353637
|
+
type: "info" /* INFO */,
|
|
353638
|
+
text: "\u{1F4CB} \u521B\u5EFA\u9879\u76EE\u811A\u624B\u67B6\n\n\u53EF\u7528\u7684\u9879\u76EE\u7C7B\u578B\uFF1A\n\u2022 java - Java\u9879\u76EE\uFF08DDD\u67B6\u6784\uFF09\n\u2022 idl - IDL\u9879\u76EE\uFF08Thrift\u63A5\u53E3\u5B9A\u4E49\uFF09\n\n\u4F7F\u7528\u683C\u5F0F\uFF1A\n\u2022 /create java sns <\u9879\u76EE\u540D>\n\u2022 /create java fls <\u9879\u76EE\u540D>\n\u2022 /create idl <\u9879\u76EE\u540D>\n\n\u793A\u4F8B\uFF1A\n\u2022 /create java sns user-service\n\u2022 /create idl angelos_idl"
|
|
353639
353639
|
},
|
|
353640
353640
|
Date.now()
|
|
353641
353641
|
);
|
|
353642
353642
|
return;
|
|
353643
353643
|
}
|
|
353644
|
+
const parts = trimmedArgs.split(/\s+/);
|
|
353644
353645
|
const firstArg = parts[0].toLowerCase();
|
|
353645
353646
|
if (firstArg === "java") {
|
|
353646
353647
|
const remainingArgs = parts.slice(1).join(" ");
|
|
@@ -408464,7 +408465,7 @@ var GeminiAgent = class {
|
|
|
408464
408465
|
name: APPROVAL_MODE_INFO[mode].name,
|
|
408465
408466
|
description: APPROVAL_MODE_INFO[mode].description
|
|
408466
408467
|
}));
|
|
408467
|
-
const version2 = "0.1.9
|
|
408468
|
+
const version2 = "0.1.9";
|
|
408468
408469
|
return {
|
|
408469
408470
|
protocolVersion: PROTOCOL_VERSION,
|
|
408470
408471
|
agentInfo: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rdmind/rdmind",
|
|
3
|
-
"version": "0.1.9
|
|
3
|
+
"version": "0.1.9",
|
|
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.9
|
|
23
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.1.9"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|