@beastmode-develeap/beastmode 0.1.75 → 0.1.77
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/dist/web/board.html +8 -4
- package/package.json +1 -1
package/dist/web/board.html
CHANGED
|
@@ -2186,8 +2186,8 @@ window.PIPELINE_CONFIG = {
|
|
|
2186
2186
|
'code': ['New', 'Ready', 'Working on it', 'Waiting for Spec & Scenarios Approval', 'Ready For Review', 'Approved & Merge to Main', 'Verifying Prod with Tests', 'Done'],
|
|
2187
2187
|
'bug': ['New', 'Ready', 'Working on it', 'Waiting for Spec & Scenarios Approval', 'Ready For Review', 'Approved & Merge to Main', 'Verifying Prod with Tests', 'Done'],
|
|
2188
2188
|
'bug-gc': ['New', 'Ready', 'Working on it', 'Waiting for Spec & Scenarios Approval', 'Ready For Review', 'Approved & Merge to Main', 'Verifying Prod with Tests', 'Done'],
|
|
2189
|
-
'epic': ['New', 'Ready', 'In Progress', 'Waiting for Epic Approval', 'Epic Breakdown Posted', 'Done'],
|
|
2190
|
-
'deep-planning': ['New', 'Ready', 'In Progress', 'Waiting for Epic Approval', 'Epic Breakdown Posted', 'Done'],
|
|
2189
|
+
'epic': ['New', 'Ready', 'In Progress', 'Waiting for Epic Approval', 'Epic Breakdown Posted', 'Verifying Epic', 'Waiting for Epic Bugs', 'Done'],
|
|
2190
|
+
'deep-planning': ['New', 'Ready', 'In Progress', 'Waiting for Epic Approval', 'Epic Breakdown Posted', 'Verifying Epic', 'Waiting for Epic Bugs', 'Done'],
|
|
2191
2191
|
'infra-plan': ['New', 'Ready', 'Working on it', 'Waiting for Infra Approval', 'Done'],
|
|
2192
2192
|
'infrastructure': ['New', 'Ready', 'Working on it', 'Waiting for Infra Approval', 'Provisioning Infra', 'Infra Ready', 'Ready For Review', 'Approved & Merge to Main', 'Verifying Prod with Tests', 'Done'],
|
|
2193
2193
|
'rollback': ['New', 'Ready', 'Working on it', 'Done'],
|
|
@@ -2785,7 +2785,7 @@ const STATUSES = [
|
|
|
2785
2785
|
'Waiting for Spec & Scenarios Approval', 'Waiting for Epic Approval',
|
|
2786
2786
|
'Waiting for Infra Approval', 'Provisioning Infra', 'Infra Ready',
|
|
2787
2787
|
'Approved & Merge to Main', 'Ready For Review',
|
|
2788
|
-
'Verifying Prod with Tests', 'Awaiting Input',
|
|
2788
|
+
'Verifying Prod with Tests', 'Verifying Epic', 'Waiting for Epic Bugs', 'Awaiting Input',
|
|
2789
2789
|
'Epic Breakdown Posted', 'Stuck', 'Done',
|
|
2790
2790
|
];
|
|
2791
2791
|
|
|
@@ -2802,6 +2802,8 @@ const KANBAN_COLUMNS = [
|
|
|
2802
2802
|
{ id: 'Ready For Review', label: 'Ready for Review', status: 'review', color: '#22d3ee', tooltip: 'PR created and being auto-reviewed against the spec and satisfaction results.' },
|
|
2803
2803
|
{ id: 'Approved & Merge to Main', label: 'Approved & Merge', status: 'active', color: '#34d399', tooltip: 'PR approved. Merging, running CI, and deploying.' },
|
|
2804
2804
|
{ id: 'Verifying Prod with Tests', label: 'Verifying Prod', status: 'active', color: '#38bdf8', tooltip: 'Running holdout scenarios against live production to verify the deploy.' },
|
|
2805
|
+
{ id: 'Verifying Epic', label: 'Verifying Epic', status: 'active', color: '#7c3aed', tooltip: 'Running epic-scoped cross-story scenarios against live production via Playwright MCP (Gap 23).' },
|
|
2806
|
+
{ id: 'Waiting for Epic Bugs', label: 'Epic Bugs', status: 'waiting', color: '#f59e0b', tooltip: 'Epic verification found failures. Bug-gc tasks spawned to fix them. Will re-verify when all done.' },
|
|
2805
2807
|
{ id: 'Epic Breakdown Posted', label: 'Epic Breakdown', status: 'done', color: '#c084fc', tooltip: 'Epic decomposed into stories. Stories are running independently.' },
|
|
2806
2808
|
{ id: 'Done', label: 'Done', status: 'done', color: '#22c55e', tooltip: 'Task completed and verified in production.' },
|
|
2807
2809
|
{ id: 'Stuck', label: 'Stuck', status: 'stuck', color: '#f87171', tooltip: 'Task failed after max retries. Needs human help or comment "reset" to restart.' },
|
|
@@ -4023,7 +4025,9 @@ function stageLabel(stage, extra) {
|
|
|
4023
4025
|
if (!stage || typeof stage !== 'string') return { label: 'Unknown', cls: 'badge-muted' };
|
|
4024
4026
|
const s = stage.toLowerCase();
|
|
4025
4027
|
if (s === 'done' || s === 'ship') return { label: 'Shipped', cls: 'badge-success' };
|
|
4026
|
-
if (s.includes('
|
|
4028
|
+
if (s.includes('verifying epic')) return { label: 'Verifying Epic', cls: 'badge-warning' };
|
|
4029
|
+
if (s.includes('epic bugs')) return { label: 'Epic Bugs', cls: 'badge-info' };
|
|
4030
|
+
if (s.includes('build') || (s.includes('verify') && !s.includes('prod') && !s.includes('epic'))) return { label: 'Building', cls: 'badge-warning' };
|
|
4027
4031
|
if (s.includes('awaiting') || s.includes('waiting') || s.includes('approval')) return { label: 'Awaiting Approval', cls: 'badge-info' };
|
|
4028
4032
|
if (s.includes('spec') || s.includes('phase1')) return { label: 'Spec Phase', cls: 'badge-info' };
|
|
4029
4033
|
if (s === 'stuck') return { label: 'Stuck', cls: 'badge-danger' };
|