@beastmode-develeap/beastmode 0.1.184 → 0.1.185

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__ = "20260507-111524-815ff2c";</script>
18
+ <script>window.__BUILD_STAMP__ = "20260507-112735-1581edf";</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">
@@ -460,6 +460,7 @@ body {
460
460
  display: grid;
461
461
  grid-template-columns: 1fr 380px;
462
462
  gap: 24px;
463
+ min-height: 0;
463
464
  }
464
465
  .page-dashboard-main { min-width: 0; }
465
466
  .page-dashboard-sidebar { min-width: 0; }
@@ -527,7 +528,7 @@ body {
527
528
 
528
529
  .stat-grid {
529
530
  display: grid;
530
- grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
531
+ grid-template-columns: repeat(3, 1fr);
531
532
  gap: 16px;
532
533
  margin-bottom: 24px;
533
534
  }
@@ -3007,6 +3008,7 @@ input[type="range"]::-webkit-slider-thumb {
3007
3008
  padding: 10px 12px;
3008
3009
  border-radius: var(--radius-sm);
3009
3010
  transition: background 0.15s;
3011
+ overflow: hidden;
3010
3012
  }
3011
3013
  .run-item:hover { background: var(--bg-card-hover); }
3012
3014
  .run-id {
@@ -3018,6 +3020,8 @@ input[type="range"]::-webkit-slider-thumb {
3018
3020
  overflow: hidden;
3019
3021
  text-overflow: ellipsis;
3020
3022
  margin-bottom: 4px;
3023
+ max-width: 100%;
3024
+ display: block;
3021
3025
  }
3022
3026
  .run-meta {
3023
3027
  display: flex;
@@ -3145,6 +3149,9 @@ input[type="range"]::-webkit-slider-thumb {
3145
3149
  .page-dashboard-sidebar {
3146
3150
  order: 1;
3147
3151
  }
3152
+ .stat-grid {
3153
+ grid-template-columns: repeat(2, 1fr);
3154
+ }
3148
3155
  }
3149
3156
 
3150
3157
  @media (max-width: 900px) {
@@ -3873,6 +3880,7 @@ function DashboardPage({ selectedProject, onProjectChange }) {
3873
3880
  const [recentItems, setRecentItems] = useState([]);
3874
3881
  const [runs, setRuns] = useState([]);
3875
3882
  const [projects, setProjects] = useState([]);
3883
+ const [runnerCount, setRunnerCount] = useState(0);
3876
3884
  const [loading, setLoading] = useState(true);
3877
3885
  const [error, setError] = useState(null);
3878
3886
 
@@ -3896,6 +3904,9 @@ function DashboardPage({ selectedProject, onProjectChange }) {
3896
3904
  .finally(() => setLoading(false));
3897
3905
  }
3898
3906
  fetchDashboard();
3907
+ api('GET', '/api/debug/runner')
3908
+ .then(data => setRunnerCount(data && typeof data.count === 'number' ? data.count : 0))
3909
+ .catch(() => setRunnerCount(0));
3899
3910
  const interval = setInterval(fetchDashboard, 30000);
3900
3911
  return () => clearInterval(interval);
3901
3912
  }, [selectedProject]);
@@ -3949,6 +3960,11 @@ function DashboardPage({ selectedProject, onProjectChange }) {
3949
3960
  <div class="stat-label">Hooks</div>
3950
3961
  <div class="stat-dot"></div>
3951
3962
  </div>
3963
+ <div class="stat-card" data-testid="stat-runners">
3964
+ <div class="stat-value">${runnerCount}</div>
3965
+ <div class="stat-label">Runners</div>
3966
+ <div class="stat-dot"></div>
3967
+ </div>
3952
3968
  </div>
3953
3969
 
3954
3970
  ${selectedProject === 'all' && projects.length > 0 && html`
@@ -4061,7 +4077,7 @@ function DashboardPage({ selectedProject, onProjectChange }) {
4061
4077
  <div class="activity-item" key=${item.id}>
4062
4078
  <div class="activity-name">${item.name || item.title}</div>
4063
4079
  <div class="activity-meta">
4064
- <span class=${'badge-sm'}>${item.status || 'New'}</span>
4080
+ <span class=${'badge-sm'}>${item.status ?? (item.column_values && item.column_values.status) ?? 'New'}</span>
4065
4081
  <span class="activity-time">${timeAgo(item.updated_at || item.created_at)}</span>
4066
4082
  </div>
4067
4083
  </div>
@@ -1 +1 @@
1
- 815ff2c0332fa7fb381aeea85d35dc093494243e
1
+ 1581edf3a327311574081c9eed3dc4b7e96f8db7
@@ -1 +1 @@
1
- 20260507-111524-815ff2c
1
+ 20260507-112735-1581edf
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beastmode-develeap/beastmode",
3
- "version": "0.1.184",
3
+ "version": "0.1.185",
4
4
  "description": "BeastMode Dark Factory — turn intent into verified software",
5
5
  "type": "module",
6
6
  "bin": {