@beastmode-develeap/beastmode 0.1.377 → 0.1.379
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
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
}
|
|
16
16
|
</script>
|
|
17
17
|
<!--BOARD_DATA-->
|
|
18
|
-
<script>window.__BUILD_STAMP__ = "20260606-
|
|
18
|
+
<script>window.__BUILD_STAMP__ = "20260606-173945-1537d9a";</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">
|
|
@@ -4710,7 +4710,7 @@ const STATUSES = [
|
|
|
4710
4710
|
'Approved & Merge to Main', 'Ready For Review',
|
|
4711
4711
|
'Verifying Prod with Tests', 'Verifying Epic', 'Waiting for Epic Bugs', 'Awaiting Input',
|
|
4712
4712
|
'Awaiting Spec Revision',
|
|
4713
|
-
'Epic Breakdown Posted', 'Stuck', 'Done', 'Superseded',
|
|
4713
|
+
'Epic Breakdown Posted', 'Stuck', 'Done', 'Superseded', 'Parked',
|
|
4714
4714
|
];
|
|
4715
4715
|
|
|
4716
4716
|
const KANBAN_COLUMNS = [
|
|
@@ -4732,6 +4732,7 @@ const KANBAN_COLUMNS = [
|
|
|
4732
4732
|
{ id: 'Epic Breakdown Posted', label: 'Epic Breakdown', status: 'done', color: '#c084fc', tooltip: 'Epic decomposed into stories. Stories are running independently.' },
|
|
4733
4733
|
{ id: 'Done', label: 'Done', status: 'done', color: '#22c55e', tooltip: 'Task completed and verified in production.' },
|
|
4734
4734
|
{ id: 'Stuck', label: 'Stuck', status: 'stuck', color: '#f87171', tooltip: 'Task failed after max retries. Needs human help or comment "reset" to restart.' },
|
|
4735
|
+
{ id: 'Parked', label: 'Parked', status: 'dormant', color: '#6366f1', tooltip: 'Parked: long-term / vision items set aside. Visible here but not picked up by the daemon. Move to Ready to un-park.' },
|
|
4735
4736
|
];
|
|
4736
4737
|
|
|
4737
4738
|
function normalizeDt(s) {
|
|
@@ -5722,7 +5723,7 @@ function ItemDetailSidebar({ item, onClose, onStatusChange, selectedProject, all
|
|
|
5722
5723
|
const taskType = item.task_type || 'code';
|
|
5723
5724
|
const stages = typeStages[taskType] || typeStages['code'] || STATUSES;
|
|
5724
5725
|
const overlays = new Set(pipelineConfig.overlay_statuses || []);
|
|
5725
|
-
const allowed = new Set([...stages, ...overlays, 'Superseded']);
|
|
5726
|
+
const allowed = new Set([...stages, ...overlays, 'Superseded', 'Parked']);
|
|
5726
5727
|
if (item.status) allowed.add(item.status);
|
|
5727
5728
|
return STATUSES.filter(s => allowed.has(s));
|
|
5728
5729
|
}, [pipelineConfig, item.task_type, item.status]);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
1537d9a110e09d9e77abe7cef6784f43b490a5c3
|
package/dist/web/build-stamp.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
20260606-
|
|
1
|
+
20260606-173945-1537d9a
|