@tritard/waterbrother 0.12.7 → 0.12.9

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 +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tritard/waterbrother",
3
- "version": "0.12.7",
3
+ "version": "0.12.9",
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
@@ -5102,7 +5102,7 @@ Be concrete about surfaces — name actual pages/flows. Choose the best stack fo
5102
5102
  context.runtime.product = product;
5103
5103
  const lower = line.trim().toLowerCase();
5104
5104
 
5105
- if (/^(build|build it|build the product|scaffold|go|build this|build that|yes build|ok build|let's build|start building|build i guess|just build|do it|yes)/.test(lower)) {
5105
+ if (/^(build|build it|build the product|scaffold|go|go ahead|build this|build that|yes build|ok build|let's build|start building|build i guess|just build|do it|yes|ok|sure|yep|let's go)/.test(lower)) {
5106
5106
  const productCtx = buildProductContext(product);
5107
5107
  const planned = product.surfaces.filter((s) => s.status === "planned").map((s) => s.name);
5108
5108
 
@@ -5244,7 +5244,7 @@ Be concrete about surfaces — name actual pages/flows. Choose the best stack fo
5244
5244
  }
5245
5245
 
5246
5246
  // Refine: natural language changes to a built product
5247
- if (/^(fix these|fix quality|fix initiatives|fix product)$/.test(lower) && !context.runtime.activeTask) {
5247
+ if (/^(fix these|fix quality|fix initiatives|fix product|fix issues|fix the issues|fix it|fix everything|fix all)$/.test(lower) && !context.runtime.activeTask) {
5248
5248
  // Only handle product fixes when no task is active — otherwise let router handle "fix these" for task reviews
5249
5249
  if (context.runtime.pendingInitiatives?.length > 0) {
5250
5250
  const spinner = createProgressSpinner("fixing product gaps...");
@@ -5270,7 +5270,7 @@ Be concrete about surfaces — name actual pages/flows. Choose the best stack fo
5270
5270
  }
5271
5271
  }
5272
5272
 
5273
- if (/^(fix these|fix quality)$/.test(lower) && !context.runtime.activeTask) {
5273
+ if (/^(fix these|fix quality|fix issues|fix the issues|fix it|fix everything|fix all)$/.test(lower) && !context.runtime.activeTask) {
5274
5274
  const spinner = createProgressSpinner("fixing quality issues...");
5275
5275
  try {
5276
5276
  const findings = await runQualityChecks({ cwd: context.cwd });