@beastmode-develeap/beastmode 0.1.355 → 0.1.357

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__ = "20260604-124200-b14ee96";</script>
18
+ <script>window.__BUILD_STAMP__ = "20260604-144139-e7e55c7";</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">
@@ -4284,7 +4284,7 @@ function Sidebar({ currentHash, factoryName, theme, onToggleTheme, selectedProje
4284
4284
  }, []);
4285
4285
 
4286
4286
  const links = [
4287
- { path: '#/', icon: 'dashboard', label: 'Dashboard' },
4287
+ { path: '#/dashboard', icon: 'dashboard', label: 'Dashboard' },
4288
4288
  ...(selectedProject !== 'all' ? [{ path: '#/board', icon: 'board', label: 'Board' }] : []),
4289
4289
  ...(selectedProject !== 'all' ? [{ path: '#/strategy', icon: 'strategy', label: 'Strategy' }] : []),
4290
4290
  { path: '#/runs', icon: 'runs', label: 'Runs' },
@@ -12028,9 +12028,6 @@ function OnboardingTour() {
12028
12028
  try {
12029
12029
  if (localStorage.getItem('beastmode-tour-completed')) return;
12030
12030
  } catch (_) { return; }
12031
- if (!location.hash || location.hash === '#/' || location.hash === '#') {
12032
- navigate('#/board');
12033
- }
12034
12031
  const t = setTimeout(() => {
12035
12032
  if (!cancelled) setCurrentStep(0);
12036
12033
  }, 600);
@@ -12228,6 +12225,7 @@ function App() {
12228
12225
  case '#/quick-brainstorm': navigate('#/strategy-start/free-form'); page = html`<${SkeletonLoader} type="page" />`; break;
12229
12226
  case '#/settings': page = html`<${SettingsPage} selectedProject=${selectedProject} />`; break;
12230
12227
  case '#/help': page = html`<${HelpPage} />`; break;
12228
+ case '#/dashboard': page = html`<${DashboardPage} selectedProject=${selectedProject} onProjectChange=${setSelectedProject} />`; break;
12231
12229
  default:
12232
12230
  if (route.startsWith('#/strategy-start/')) {
12233
12231
  const sessionType = route.replace('#/strategy-start/', '');
@@ -12236,7 +12234,11 @@ function App() {
12236
12234
  const sessionId = route.replace('#/strategy-session/', '');
12237
12235
  page = html`<${ChatPage} selectedProject=${selectedProject} resumeSession=${sessionId} />`;
12238
12236
  } else {
12239
- page = html`<${DashboardPage} selectedProject=${selectedProject} onProjectChange=${setSelectedProject} />`;
12237
+ // FR-1: the home/default route (''/'#'/'#/') renders the full-screen
12238
+ // Captain view — the same surface served at #/chat — not the dashboard
12239
+ // and not the board. display:contents keeps the wrapper layout-neutral
12240
+ // so ChatPage fills .main exactly as it does at #/chat.
12241
+ page = html`<div data-testid="captain-fullscreen" style="display:contents"><${ChatPage} selectedProject=${selectedProject} /></div>`;
12240
12242
  }
12241
12243
  break;
12242
12244
  }
@@ -1 +1 @@
1
- b14ee96bece97e70e4a91ca53597bf87ed635601
1
+ e7e55c7e187a939b5e43c3380a54d7f3eff2abec
@@ -1 +1 @@
1
- 20260604-124200-b14ee96
1
+ 20260604-144139-e7e55c7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beastmode-develeap/beastmode",
3
- "version": "0.1.355",
3
+ "version": "0.1.357",
4
4
  "description": "BeastMode Dark Factory — turn intent into verified software",
5
5
  "type": "module",
6
6
  "bin": {