@d5render/cli 0.1.68 → 0.1.69
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/bin/d5cli +3 -0
- package/package.json +1 -1
package/bin/d5cli
CHANGED
|
@@ -8,6 +8,7 @@ import { createHash } from "node:crypto";
|
|
|
8
8
|
|
|
9
9
|
//#region package.json
|
|
10
10
|
var name$1 = "@d5render/cli";
|
|
11
|
+
var version = "0.1.69";
|
|
11
12
|
|
|
12
13
|
//#endregion
|
|
13
14
|
//#region packages/env.ts
|
|
@@ -124,6 +125,7 @@ async function sendding(title, text) {
|
|
|
124
125
|
//#endregion
|
|
125
126
|
//#region review/helper.ts
|
|
126
127
|
const NAME = name$1.replaceAll("/", "_");
|
|
128
|
+
const VERSION = version;
|
|
127
129
|
const TEMP = join(env.CI_PROJECT_DIR || "", `../../.${NAME}`);
|
|
128
130
|
const common_review_prompt = `Load code-review skills, then call the mcp tool '${name}-${getHash}' to load code-review commits.
|
|
129
131
|
Then use chinese(中文) to call the mcp tool '${name}-${report}', only main agent can call the tool '${name}-${report}', **prevent** subagent from calling tool '${name}-${report}`;
|
|
@@ -314,6 +316,7 @@ async function cli() {
|
|
|
314
316
|
const httpsProxy = env.HTTPS_PROXY || env.https_proxy || "";
|
|
315
317
|
if (httpProxy) env.HTTP_PROXY = httpProxy;
|
|
316
318
|
if (httpsProxy) env.HTTPS_PROXY = httpsProxy;
|
|
319
|
+
console.log("@d5render/cli version:", VERSION);
|
|
317
320
|
const child = spawn(bind, [
|
|
318
321
|
...tools,
|
|
319
322
|
"-p",
|