snow-ai 0.7.10 → 0.7.11
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/bundle/cli.mjs +2 -4
- package/bundle/package.json +1 -1
- package/package.json +1 -1
package/bundle/cli.mjs
CHANGED
|
@@ -459641,9 +459641,7 @@ Received args: ${JSON.stringify(args2, null, 2)}
|
|
|
459641
459641
|
AI Tip: You MUST specify the workingDirectory where the command should run. Use the project root path or a specific directory path.`);
|
|
459642
459642
|
}
|
|
459643
459643
|
if (typeof args2.enableAiSummary !== "boolean") {
|
|
459644
|
-
|
|
459645
|
-
Received args: ${JSON.stringify(args2, null, 2)}
|
|
459646
|
-
AI Tip: You MUST provide a boolean 'enableAiSummary'. Use false by default, or true when output may need AI cleanup.`);
|
|
459644
|
+
args2.enableAiSummary = false;
|
|
459647
459645
|
}
|
|
459648
459646
|
terminalService2.setWorkingDirectory(args2.workingDirectory);
|
|
459649
459647
|
setTerminalExecutionState2({
|
|
@@ -601472,7 +601470,7 @@ var require_package3 = __commonJS({
|
|
|
601472
601470
|
"package.json"(exports2, module2) {
|
|
601473
601471
|
module2.exports = {
|
|
601474
601472
|
name: "snow-ai",
|
|
601475
|
-
version: "0.7.
|
|
601473
|
+
version: "0.7.11",
|
|
601476
601474
|
description: "Agentic coding in your terminal",
|
|
601477
601475
|
license: "MIT",
|
|
601478
601476
|
bin: {
|
package/bundle/package.json
CHANGED