@tritard/waterbrother 0.14.13 → 0.14.14

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tritard/waterbrother",
3
- "version": "0.14.13",
3
+ "version": "0.14.14",
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/cli.js CHANGED
@@ -5357,7 +5357,8 @@ Be concrete about surfaces — name actual pages/flows. Choose the best stack fo
5357
5357
  }
5358
5358
 
5359
5359
  // Product builder actions: "build", "deploy", "adjust", "show surfaces"
5360
- const product = context.runtime.product || await loadProduct(context.cwd);
5360
+ // Only active in standard/guide mode — expert mode uses the cockpit
5361
+ const product = (currentMode !== "expert") ? (context.runtime.product || await loadProduct(context.cwd)) : null;
5361
5362
  if (product) {
5362
5363
  context.runtime.product = product;
5363
5364
  const lower = line.trim().toLowerCase();