@tritard/waterbrother 0.9.7 → 0.9.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tritard/waterbrother",
3
- "version": "0.9.7",
3
+ "version": "0.9.8",
4
4
  "description": "Waterbrother: Grok-powered coding CLI with local tools, sessions, operator modes, and approval controls",
5
5
  "type": "module",
6
6
  "bin": {
package/src/experiment.js CHANGED
@@ -63,7 +63,7 @@ export async function runMetric({ command, extract, cwd }) {
63
63
  let stdout, stderr;
64
64
 
65
65
  if (isWin) {
66
- // Use PowerShell on Windows for access to proper commands
66
+ // Use PowerShell on Windows for proper command support
67
67
  const result = await execFileAsync("powershell.exe", ["-NoProfile", "-Command", command], execOpts);
68
68
  stdout = String(result.stdout || "");
69
69
  stderr = String(result.stderr || "");