yg-team-cli 2.1.5 → 2.1.6
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/dist/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -931,7 +931,7 @@ ${promptText}`;
|
|
|
931
931
|
}
|
|
932
932
|
}
|
|
933
933
|
await fs2.writeFile(tempFile, finalPrompt, "utf-8");
|
|
934
|
-
const result = await execa("claude", [tempFile], {
|
|
934
|
+
const result = await execa("claude", ["--dangerously-skip-permissions", tempFile], {
|
|
935
935
|
stdio: "inherit",
|
|
936
936
|
timeout: options?.timeout || 3e5
|
|
937
937
|
// 默认 5 分钟
|
|
@@ -967,7 +967,7 @@ ${promptText}`;
|
|
|
967
967
|
return `[${role}]: ${msg.content}`;
|
|
968
968
|
}).join("\n\n");
|
|
969
969
|
await fs2.writeFile(tempFile, fullPrompt, "utf-8");
|
|
970
|
-
const result = await execa("claude", [tempFile], {
|
|
970
|
+
const result = await execa("claude", ["--dangerously-skip-permissions", tempFile], {
|
|
971
971
|
stdio: "inherit",
|
|
972
972
|
timeout: options?.timeout || 3e5
|
|
973
973
|
});
|
|
@@ -5684,7 +5684,7 @@ var Table = class {
|
|
|
5684
5684
|
|
|
5685
5685
|
// src/index.ts
|
|
5686
5686
|
var program = new Command16();
|
|
5687
|
-
program.name("team-cli").description("AI-Native \u56E2\u961F\u7814\u53D1\u811A\u624B\u67B6").version("2.1.
|
|
5687
|
+
program.name("team-cli").description("AI-Native \u56E2\u961F\u7814\u53D1\u811A\u624B\u67B6").version("2.1.6");
|
|
5688
5688
|
program.option("-v, --verbose", "\u8BE6\u7EC6\u8F93\u51FA\u6A21\u5F0F").option("--debug", "\u8C03\u8BD5\u6A21\u5F0F");
|
|
5689
5689
|
program.addCommand(initCommand);
|
|
5690
5690
|
program.addCommand(splitPrdCommand);
|