@beastmode-develeap/beastmode 0.1.333 → 0.1.335

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.
@@ -15,7 +15,7 @@
15
15
  }
16
16
  </script>
17
17
  <!--BOARD_DATA-->
18
- <script>window.__BUILD_STAMP__ = "20260531-093031-dd2e67c";</script>
18
+ <script>window.__BUILD_STAMP__ = "20260531-140125-07f1319";</script>
19
19
  <link rel="preconnect" href="https://fonts.googleapis.com">
20
20
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
21
21
  <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet">
@@ -4005,7 +4005,7 @@ window.PIPELINE_CONFIG = {
4005
4005
  { key: 'infra', label: 'Infrastructure', taskTypes: ['infra-plan', 'infrastructure'], color: 'var(--orange)' },
4006
4006
  { key: 'other', label: 'Other', taskTypes: ['rollback'], color: 'var(--text-muted)' },
4007
4007
  ],
4008
- overlay_statuses: ['Stuck', 'Awaiting Input', 'Promotion Blocked'],
4008
+ overlay_statuses: ['Stuck', 'Awaiting Input', 'Promotion Blocked', 'Awaiting Spec Revision'],
4009
4009
  };
4010
4010
  window.SWIMLANE_CONFIG = window.PIPELINE_CONFIG.swimlanes;
4011
4011
  // Global aliases for the defensive code at lines ~2755 and ~2795
@@ -4709,6 +4709,7 @@ const STATUSES = [
4709
4709
  'Waiting for Infra Approval', 'Provisioning Infra', 'Infra Ready',
4710
4710
  'Approved & Merge to Main', 'Ready For Review',
4711
4711
  'Verifying Prod with Tests', 'Verifying Epic', 'Waiting for Epic Bugs', 'Awaiting Input',
4712
+ 'Awaiting Spec Revision',
4712
4713
  'Epic Breakdown Posted', 'Stuck', 'Done', 'Superseded',
4713
4714
  ];
4714
4715
 
@@ -4719,6 +4720,7 @@ const KANBAN_COLUMNS = [
4719
4720
  { id: 'Waiting for Spec & Scenarios Approval', label: 'Waiting for Approval', status: 'waiting', color: '#a78bfa', tooltip: 'Spec and test scenarios ready for your review. Comment "approved" to proceed.' },
4720
4721
  { id: 'Waiting for Epic Approval', label: 'Epic Approval', status: 'waiting', color: '#a78bfa', tooltip: 'Epic decomposition plan ready for review. Comment "approved" to create stories.' },
4721
4722
  { id: 'Awaiting Input', label: 'Awaiting Input', status: 'waiting', color: '#f97316', tooltip: 'BeastMode needs your answer to a question before continuing.' },
4723
+ { id: 'Awaiting Spec Revision', label: 'Awaiting Spec Revision', status: 'waiting', color: '#eab308', tooltip: 'The build could not converge on the current spec. Comment a revised spec to re-run the pipeline.' },
4722
4724
  { id: 'Waiting for Infra Approval', label: 'Infra Approval', status: 'waiting', color: '#14b8a6', tooltip: 'Infrastructure recommendation posted. Review and approve to start provisioning.' },
4723
4725
  { id: 'Provisioning Infra', label: 'Provisioning', status: 'active', color: '#06b6d4', tooltip: 'BeastMode is provisioning infrastructure (Terraform apply in progress).' },
4724
4726
  { id: 'Infra Ready', label: 'Infra Ready', status: 'done', color: '#10b981', tooltip: 'Infrastructure provisioned and deploy strategy written. Ready for code tasks.' },
@@ -4799,7 +4801,7 @@ function isOverlayStatus(status) {
4799
4801
  if (!status) return false;
4800
4802
  const overlays = (typeof PIPELINE_CONFIG !== 'undefined' && PIPELINE_CONFIG && PIPELINE_CONFIG.overlay_statuses)
4801
4803
  ? PIPELINE_CONFIG.overlay_statuses
4802
- : ['Stuck', 'Awaiting Input'];
4804
+ : ['Stuck', 'Awaiting Input', 'Awaiting Spec Revision'];
4803
4805
  if (overlays.includes(status)) return true;
4804
4806
  if (status === 'Superseded') return true;
4805
4807
  return false;
@@ -4810,6 +4812,7 @@ function overlayBadgeClass(status) {
4810
4812
  const s = status.toLowerCase();
4811
4813
  if (s === 'stuck') return 'badge-overlay-stuck';
4812
4814
  if (s === 'awaiting input') return 'badge-overlay-awaiting';
4815
+ if (s === 'awaiting spec revision') return 'badge-overlay-awaiting';
4813
4816
  if (s === 'superseded') return 'badge-superseded';
4814
4817
  return '';
4815
4818
  }
@@ -4819,6 +4822,7 @@ function overlayBadgeLabel(status) {
4819
4822
  const s = status.toLowerCase();
4820
4823
  if (s === 'stuck') return '\u26A0 Stuck';
4821
4824
  if (s === 'awaiting input') return '\u23F3 Awaiting Input';
4825
+ if (s === 'awaiting spec revision') return '\u270E Awaiting Spec Revision';
4822
4826
  if (s === 'superseded') return 'Superseded';
4823
4827
  return status;
4824
4828
  }
@@ -4828,6 +4832,7 @@ function overlayKey(status) {
4828
4832
  const s = status.toLowerCase();
4829
4833
  if (s === 'stuck') return 'stuck';
4830
4834
  if (s === 'awaiting input') return 'awaiting-input';
4835
+ if (s === 'awaiting spec revision') return 'awaiting-spec-revision';
4831
4836
  if (s === 'superseded') return 'superseded';
4832
4837
  return null;
4833
4838
  }
@@ -4837,6 +4842,7 @@ function overlayTooltip(status) {
4837
4842
  const s = status.toLowerCase();
4838
4843
  if (s === 'stuck') return 'Task is stuck after max retries. Comment \'reset\' to restart or investigate the failure.';
4839
4844
  if (s === 'awaiting input') return 'BeastMode needs your answer to a question before continuing. Check the task updates.';
4845
+ if (s === 'awaiting spec revision') return 'The build could not converge on the current spec. Comment a revised spec to re-run the pipeline.';
4840
4846
  if (s === 'superseded') return 'This item has been superseded by another item. It is terminal and cannot be reactivated.';
4841
4847
  return '';
4842
4848
  }
@@ -1 +1 @@
1
- dd2e67c793bedfe1cc18f1e3425311bda2ad6065
1
+ 07f1319ebbdaa5bf8a404dea054b9460df9c1111
@@ -1 +1 @@
1
- 20260531-093031-dd2e67c
1
+ 20260531-140125-07f1319
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beastmode-develeap/beastmode",
3
- "version": "0.1.333",
3
+ "version": "0.1.335",
4
4
  "description": "BeastMode Dark Factory — turn intent into verified software",
5
5
  "type": "module",
6
6
  "bin": {