maxsimcli 1.3.0 → 2.0.1

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.
Files changed (23) hide show
  1. package/README.md +31 -0
  2. package/dist/assets/CHANGELOG.md +31 -1
  3. package/dist/assets/dashboard/node_modules/.pnpm/postcss@8.4.31/node_modules/postcss/package.json +0 -0
  4. package/dist/assets/dashboard/package.json +8 -1
  5. package/dist/assets/dashboard/packages/dashboard/.next/BUILD_ID +1 -1
  6. package/dist/assets/dashboard/packages/dashboard/.next/build-manifest.json +2 -2
  7. package/dist/assets/dashboard/packages/dashboard/.next/prerender-manifest.json +3 -3
  8. package/dist/assets/dashboard/packages/dashboard/.next/server/app/_not-found.html +1 -1
  9. package/dist/assets/dashboard/packages/dashboard/.next/server/app/_not-found.rsc +1 -1
  10. package/dist/assets/dashboard/packages/dashboard/.next/server/app/index.html +1 -1
  11. package/dist/assets/dashboard/packages/dashboard/.next/server/app/index.rsc +1 -1
  12. package/dist/assets/dashboard/packages/dashboard/.next/server/pages/404.html +1 -1
  13. package/dist/assets/dashboard/packages/dashboard/.next/server/pages/500.html +1 -1
  14. package/dist/assets/dashboard/packages/dashboard/.next/server/server-reference-manifest.json +1 -1
  15. package/dist/assets/hooks/maxsim-check-update.cjs +0 -0
  16. package/dist/assets/hooks/maxsim-context-monitor.cjs +0 -0
  17. package/dist/assets/hooks/maxsim-statusline.cjs +0 -0
  18. package/dist/cli.cjs +0 -0
  19. package/dist/install.cjs +3 -2
  20. package/dist/install.cjs.map +1 -1
  21. package/package.json +13 -9
  22. /package/dist/assets/dashboard/.next/static/{AAz2O-e9kToP5WUv1m4FP → SFApXNydjuLsra2OK1Tfx}/_buildManifest.js +0 -0
  23. /package/dist/assets/dashboard/.next/static/{AAz2O-e9kToP5WUv1m4FP → SFApXNydjuLsra2OK1Tfx}/_ssgManifest.js +0 -0
package/README.md CHANGED
@@ -134,6 +134,37 @@ Loop **discuss → plan → execute → verify** until done. Archive the milesto
134
134
  | `/maxsim:pause-work` | Create handoff when stopping mid-phase |
135
135
  | `/maxsim:resume-work` | Restore from last session |
136
136
 
137
+ ### Live Dashboard
138
+
139
+ | Command | Description |
140
+ |---------|-------------|
141
+ | `npx maxsimcli dashboard` | Launch the live project dashboard |
142
+
143
+ MAXSIM includes a real-time web dashboard that shows phase progress, open tasks, blockers,
144
+ and allows inline plan editing.
145
+
146
+ ```bash
147
+ npx maxsimcli dashboard
148
+ ```
149
+
150
+ The dashboard auto-detects a free port starting from 3333 and opens your browser.
151
+ It watches `.planning/` for changes and updates in real-time via WebSocket.
152
+
153
+ - **Auto-installed** during `npx maxsimcli@latest` -- no separate setup needed
154
+ - **Works with both global and local installs**
155
+ - **Auto-opens browser** on launch
156
+ - **Detects running instances** -- won't start a duplicate server
157
+ - **Auto-launches** during `/maxsim:execute-phase`
158
+
159
+ **Features:**
160
+ - Real-time updates via WebSocket -- edit a `.planning/` file and the dashboard refreshes instantly
161
+ - Phase overview with animated progress bars and milestone stats
162
+ - Phase drill-down with plan tasks and toggleable checkboxes
163
+ - Inline CodeMirror Markdown editor for plan files (Ctrl+S to save)
164
+ - Todos panel -- create, complete, and manage todos
165
+ - Blockers panel -- view and resolve blockers from STATE.md
166
+ - Swiss Style Design dark theme
167
+
137
168
  ### Phase Management
138
169
 
139
170
  | Command | Description |
@@ -1,3 +1,33 @@
1
+ # [2.0.0](https://github.com/maystudios/maxsim/compare/v1.3.0...v2.0.0) (2026-02-25)
2
+
3
+
4
+ * feat!: release v2.0.0 — E2E-validated npm delivery with live dashboard ([13fa7a4](https://github.com/maystudios/maxsim/commit/13fa7a479e3e75d20e30b46406d42684f0bee7eb))
5
+
6
+
7
+ ### Bug Fixes
8
+
9
+ * **ci:** call semantic-release binary directly to avoid pnpm recursive exec ([bdf4108](https://github.com/maystudios/maxsim/commit/bdf41089d16b41cfe8ed591fa092916437391052))
10
+ * **ci:** set NODE_AUTH_TOKEN so setup-node npmrc auth works with semantic-release ([bc30224](https://github.com/maystudios/maxsim/commit/bc302246bf31f295bb457ba39664c9b0b2ed10e1))
11
+ * **ci:** use pnpm exec semantic-release to resolve local plugins ([bd62749](https://github.com/maystudios/maxsim/commit/bd6274991b35e156ca4b4551732b813f0f2f979b))
12
+ * **e2e:** add title frontmatter and 02-integration dir to mock fixture ([2563892](https://github.com/maystudios/maxsim/commit/2563892b3a9931bd1c98c5f7c4491a0182e9c822))
13
+
14
+
15
+ ### Features
16
+
17
+ * **ci:** add E2E gate to publish workflow — failing tests block release ([c2dd048](https://github.com/maystudios/maxsim/commit/c2dd048dc6d737fb23e0ba652537a2d3196bae8b))
18
+ * **e2e:** add dashboard.test.ts with 5 read API endpoint assertions ([f3df880](https://github.com/maystudios/maxsim/commit/f3df8803e2c2e123b781a25ecde7b9fbba57ae80))
19
+
20
+
21
+ ### BREAKING CHANGES
22
+
23
+ * Minimum Node.js version raised to >=22.0.0. Complete
24
+ rewrite from CJS monolith to pnpm workspace with TypeScript packages.
25
+ Dashboard now ships inside the npm tarball as a Next.js standalone build.
26
+ E2E test suite validates the full install lifecycle from npm consumer
27
+ perspective. CI gate blocks publish when E2E fails.
28
+
29
+ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
30
+
1
31
  ## 1.3.0 (2026-02-24)
2
32
 
3
33
  ### 🚀 Features
@@ -234,4 +264,4 @@ This was a version bump only, there were no code changes.
234
264
  ### ❤️ Thank You
235
265
 
236
266
  - Claude Sonnet 4.6
237
- - Sven
267
+ - Sven
@@ -51,12 +51,19 @@
51
51
  "@inquirer/prompts": "^8.3.0",
52
52
  "@nx/js": "22.5.1",
53
53
  "@nx/vitest": "22.5.1",
54
+ "@semantic-release/changelog": "^6.0.3",
55
+ "@semantic-release/commit-analyzer": "^13.0.1",
56
+ "@semantic-release/git": "^10.0.1",
57
+ "@semantic-release/github": "^11.0.1",
58
+ "@semantic-release/npm": "^12.0.1",
59
+ "@semantic-release/release-notes-generator": "^14.0.3",
54
60
  "@types/node": "^25.3.0",
55
61
  "@vitest/coverage-v8": "^4.0.18",
56
62
  "chalk": "^5.6.2",
57
63
  "esbuild": "^0.24.0",
58
64
  "nx": "22.5.1",
59
65
  "ora": "^9.3.0",
66
+ "semantic-release": "^24.2.5",
60
67
  "tsdown": "^0.20.3",
61
68
  "typescript": "^5.9.3",
62
69
  "vitest": "^4.0.18"
@@ -68,6 +75,6 @@
68
75
  "test": "nx run-many --target=test",
69
76
  "e2e": "node scripts/e2e-test.cjs",
70
77
  "e2e:publish": "node scripts/e2e-test.cjs --bump-and-publish",
71
- "release": "nx release && pnpm publish --filter maxsimcli --no-git-checks"
78
+ "release": "semantic-release"
72
79
  }
73
80
  }
@@ -1 +1 @@
1
- AAz2O-e9kToP5WUv1m4FP
1
+ SFApXNydjuLsra2OK1Tfx
@@ -5,8 +5,8 @@
5
5
  "devFiles": [],
6
6
  "ampDevFiles": [],
7
7
  "lowPriorityFiles": [
8
- "static/AAz2O-e9kToP5WUv1m4FP/_buildManifest.js",
9
- "static/AAz2O-e9kToP5WUv1m4FP/_ssgManifest.js"
8
+ "static/SFApXNydjuLsra2OK1Tfx/_buildManifest.js",
9
+ "static/SFApXNydjuLsra2OK1Tfx/_ssgManifest.js"
10
10
  ],
11
11
  "rootMainFiles": [
12
12
  "static/chunks/webpack-73318435590a84a9.js",
@@ -54,8 +54,8 @@
54
54
  "dynamicRoutes": {},
55
55
  "notFoundRoutes": [],
56
56
  "preview": {
57
- "previewModeId": "3afeb688f6cae94ff053523ce7a085d5",
58
- "previewModeSigningKey": "30af3fa433e57a6f8adc85927582dfb14d71dc204d6b135ea693f48bf1304edf",
59
- "previewModeEncryptionKey": "e95c6f4b8b3951033606bfa29df612bcbdcfe261105ff6253793aef60e71e7ff"
57
+ "previewModeId": "955ded3c5106715252fa8fb0efd56ff6",
58
+ "previewModeSigningKey": "f9dc7f478dae9b0e2dacc0f9c4a41e0083988218bbffee589545f221cc457736",
59
+ "previewModeEncryptionKey": "e1a349d6ab41ee0226ad59d1275403db7493a42270c371ef8076e84b35eaaa7d"
60
60
  }
61
61
  }
@@ -1 +1 @@
1
- <!DOCTYPE html><!--AAz2O_e9kToP5WUv1m4FP--><html lang="en" class="__variable_f367f3 __variable_3c557b"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/bb3ef058b751a6ad-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/e4af272ccee01ff0-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/c9e9cb8d084f06ac.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-73318435590a84a9.js"/><script src="/_next/static/chunks/4d67e943-e6a0fd3b5c397505.js" async=""></script><script src="/_next/static/chunks/690-74e5df42203c3ac7.js" async=""></script><script src="/_next/static/chunks/main-app-6b9bd1992c146060.js" async=""></script><script src="/_next/static/chunks/app/layout-ed940397e445e353.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>MAXSIM Dashboard</title><meta name="description" content="Live project dashboard for MAXSIM"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-background text-foreground antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-73318435590a84a9.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[4934,[\"177\",\"static/chunks/app/layout-ed940397e445e353.js\"],\"WebSocketProvider\"]\n3:I[9653,[],\"\"]\n4:I[1329,[],\"\"]\n5:I[9096,[],\"OutletBoundary\"]\n7:I[913,[],\"AsyncMetadataOutlet\"]\n9:I[9096,[],\"ViewportBoundary\"]\nb:I[9096,[],\"MetadataBoundary\"]\nc:\"$Sreact.suspense\"\ne:I[5719,[],\"\"]\n:HL[\"/_next/static/media/bb3ef058b751a6ad-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/e4af272ccee01ff0-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/c9e9cb8d084f06ac.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"AAz2O-e9kToP5WUv1m4FP\",\"p\":\"\",\"c\":[\"\",\"_not-found\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/c9e9cb8d084f06ac.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"__variable_f367f3 __variable_3c557b\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-background text-foreground antialiased\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L5\",null,{\"children\":[\"$L6\",[\"$\",\"$L7\",null,{\"promise\":\"$@8\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$c\",null,{\"fallback\":null,\"children\":\"$Ld\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$e\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n6:null\n"])</script><script>self.__next_f.push([1,"8:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"MAXSIM Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Live project dashboard for MAXSIM\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"d:\"$8:metadata\"\n"])</script></body></html>
1
+ <!DOCTYPE html><!--SFApXNydjuLsra2OK1Tfx--><html lang="en" class="__variable_f367f3 __variable_3c557b"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/bb3ef058b751a6ad-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/e4af272ccee01ff0-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/c9e9cb8d084f06ac.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-73318435590a84a9.js"/><script src="/_next/static/chunks/4d67e943-e6a0fd3b5c397505.js" async=""></script><script src="/_next/static/chunks/690-74e5df42203c3ac7.js" async=""></script><script src="/_next/static/chunks/main-app-6b9bd1992c146060.js" async=""></script><script src="/_next/static/chunks/app/layout-ed940397e445e353.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>MAXSIM Dashboard</title><meta name="description" content="Live project dashboard for MAXSIM"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-background text-foreground antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-73318435590a84a9.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[4934,[\"177\",\"static/chunks/app/layout-ed940397e445e353.js\"],\"WebSocketProvider\"]\n3:I[9653,[],\"\"]\n4:I[1329,[],\"\"]\n5:I[9096,[],\"OutletBoundary\"]\n7:I[913,[],\"AsyncMetadataOutlet\"]\n9:I[9096,[],\"ViewportBoundary\"]\nb:I[9096,[],\"MetadataBoundary\"]\nc:\"$Sreact.suspense\"\ne:I[5719,[],\"\"]\n:HL[\"/_next/static/media/bb3ef058b751a6ad-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/e4af272ccee01ff0-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/c9e9cb8d084f06ac.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"SFApXNydjuLsra2OK1Tfx\",\"p\":\"\",\"c\":[\"\",\"_not-found\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/c9e9cb8d084f06ac.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"__variable_f367f3 __variable_3c557b\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-background text-foreground antialiased\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L5\",null,{\"children\":[\"$L6\",[\"$\",\"$L7\",null,{\"promise\":\"$@8\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$c\",null,{\"fallback\":null,\"children\":\"$Ld\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$e\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n6:null\n"])</script><script>self.__next_f.push([1,"8:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"MAXSIM Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Live project dashboard for MAXSIM\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"d:\"$8:metadata\"\n"])</script></body></html>
@@ -11,7 +11,7 @@ e:I[5719,[],""]
11
11
  :HL["/_next/static/media/bb3ef058b751a6ad-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
12
12
  :HL["/_next/static/media/e4af272ccee01ff0-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
13
13
  :HL["/_next/static/css/c9e9cb8d084f06ac.css","style"]
14
- 0:{"P":null,"b":"AAz2O-e9kToP5WUv1m4FP","p":"","c":["","_not-found"],"i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/c9e9cb8d084f06ac.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"__variable_f367f3 __variable_3c557b","children":["$","body",null,{"className":"bg-background text-foreground antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":["/_not-found",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L5",null,{"children":["$L6",["$","$L7",null,{"promise":"$@8"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],[["$","$L9",null,{"children":"$La"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$Lb",null,{"children":["$","div",null,{"hidden":true,"children":["$","$c",null,{"fallback":null,"children":"$Ld"}]}]}]]}],false]],"m":"$undefined","G":["$e",[]],"s":false,"S":true}
14
+ 0:{"P":null,"b":"SFApXNydjuLsra2OK1Tfx","p":"","c":["","_not-found"],"i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/c9e9cb8d084f06ac.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"__variable_f367f3 __variable_3c557b","children":["$","body",null,{"className":"bg-background text-foreground antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":["/_not-found",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L5",null,{"children":["$L6",["$","$L7",null,{"promise":"$@8"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],[["$","$L9",null,{"children":"$La"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$Lb",null,{"children":["$","div",null,{"hidden":true,"children":["$","$c",null,{"fallback":null,"children":"$Ld"}]}]}]]}],false]],"m":"$undefined","G":["$e",[]],"s":false,"S":true}
15
15
  a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
16
16
  6:null
17
17
  8:{"metadata":[["$","title","0",{"children":"MAXSIM Dashboard"}],["$","meta","1",{"name":"description","content":"Live project dashboard for MAXSIM"}]],"error":null,"digest":"$undefined"}
@@ -1 +1 @@
1
- <!DOCTYPE html><!--AAz2O_e9kToP5WUv1m4FP--><html lang="en" class="__variable_f367f3 __variable_3c557b"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/bb3ef058b751a6ad-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/e4af272ccee01ff0-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/c9e9cb8d084f06ac.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-73318435590a84a9.js"/><script src="/_next/static/chunks/4d67e943-e6a0fd3b5c397505.js" async=""></script><script src="/_next/static/chunks/690-74e5df42203c3ac7.js" async=""></script><script src="/_next/static/chunks/main-app-6b9bd1992c146060.js" async=""></script><script src="/_next/static/chunks/app/layout-ed940397e445e353.js" async=""></script><script src="/_next/static/chunks/1e97858d-8f9862bf6e8392c4.js" async=""></script><script src="/_next/static/chunks/201-f8a322a9e47f34de.js" async=""></script><script src="/_next/static/chunks/app/page-7d14d86bc5334ec8.js" async=""></script><meta name="next-size-adjust" content=""/><title>MAXSIM Dashboard</title><meta name="description" content="Live project dashboard for MAXSIM"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-background text-foreground antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex h-screen overflow-hidden"><div class="hidden md:flex"><aside class="flex h-full w-64 shrink-0 flex-col border-r border-border bg-card"><div class="border-b border-border px-4 py-4"><button type="button" class="flex flex-col gap-0.5 text-left"><span class="font-mono text-lg font-bold tracking-tight text-foreground">MAXSIM</span><span class="font-mono text-[10px] text-muted-foreground">Dashboard</span></button></div><div class="flex-1 overflow-y-auto py-2"><div class="px-3 pb-1"><span class="font-mono text-[10px] uppercase tracking-widest text-muted-foreground">Phases</span></div><nav class="flex flex-col gap-0.5 px-1"></nav></div><div class="border-t border-border px-1 py-2"><button type="button" class="flex w-full items-center justify-between rounded-sm px-3 py-2 text-left text-sm transition-colors hover:bg-card-hover text-muted-foreground"><span class="font-mono text-xs uppercase tracking-wide">Todos</span></button><button type="button" class="flex w-full items-center justify-between rounded-sm px-3 py-2 text-left text-sm transition-colors hover:bg-card-hover text-muted-foreground"><span class="font-mono text-xs uppercase tracking-wide">Blockers</span></button></div><div class="border-t border-border px-4 py-3"><div class="flex items-center gap-2"><span class="inline-block h-2 w-2 rounded-full bg-danger"></span><span class="font-mono text-[10px] text-muted-foreground">Disconnected</span></div></div></aside></div><main class="flex-1 overflow-y-auto p-6"><div class="flex flex-col gap-6"><div class="flex flex-col gap-4 border-b border-border pb-5"><div class="h-3 w-40 animate-pulse rounded-sm bg-muted"></div><div class="h-2 w-full animate-pulse rounded-sm bg-muted"></div><div class="flex gap-8"><div class="h-8 w-20 animate-pulse rounded-sm bg-muted"></div><div class="h-8 w-32 animate-pulse rounded-sm bg-muted"></div><div class="ml-auto flex gap-6"><div class="h-6 w-24 animate-pulse rounded-sm bg-muted"></div><div class="h-6 w-20 animate-pulse rounded-sm bg-muted"></div></div></div></div><div class="flex flex-col gap-3"><div class="flex justify-between px-4"><div class="h-3 w-16 animate-pulse rounded-sm bg-muted"></div><div class="h-3 w-6 animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div></div></div></main></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-73318435590a84a9.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[4934,[\"177\",\"static/chunks/app/layout-ed940397e445e353.js\"],\"WebSocketProvider\"]\n3:I[9653,[],\"\"]\n4:I[1329,[],\"\"]\n5:I[7868,[],\"ClientPageRoot\"]\n6:I[4098,[\"552\",\"static/chunks/1e97858d-8f9862bf6e8392c4.js\",\"201\",\"static/chunks/201-f8a322a9e47f34de.js\",\"974\",\"static/chunks/app/page-7d14d86bc5334ec8.js\"],\"default\"]\n9:I[9096,[],\"OutletBoundary\"]\nb:I[913,[],\"AsyncMetadataOutlet\"]\nd:I[9096,[],\"ViewportBoundary\"]\nf:I[9096,[],\"MetadataBoundary\"]\n10:\"$Sreact.suspense\"\n12:I[5719,[],\"\"]\n:HL[\"/_next/static/media/bb3ef058b751a6ad-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/e4af272ccee01ff0-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/c9e9cb8d084f06ac.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"AAz2O-e9kToP5WUv1m4FP\",\"p\":\"\",\"c\":[\"\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/c9e9cb8d084f06ac.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"__variable_f367f3 __variable_3c557b\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-background text-foreground antialiased\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L5\",null,{\"Component\":\"$6\",\"searchParams\":{},\"params\":{},\"promises\":[\"$@7\",\"$@8\"]}],null,[\"$\",\"$L9\",null,{\"children\":[\"$La\",[\"$\",\"$Lb\",null,{\"promise\":\"$@c\"}]]}]]}],{},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Ld\",null,{\"children\":\"$Le\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Lf\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$10\",null,{\"fallback\":null,\"children\":\"$L11\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$12\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"7:{}\n8:\"$0:f:0:1:2:children:1:props:children:0:props:params\"\n"])</script><script>self.__next_f.push([1,"e:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\na:null\n"])</script><script>self.__next_f.push([1,"c:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"MAXSIM Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Live project dashboard for MAXSIM\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"11:\"$c:metadata\"\n"])</script></body></html>
1
+ <!DOCTYPE html><!--SFApXNydjuLsra2OK1Tfx--><html lang="en" class="__variable_f367f3 __variable_3c557b"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/bb3ef058b751a6ad-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/e4af272ccee01ff0-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/c9e9cb8d084f06ac.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-73318435590a84a9.js"/><script src="/_next/static/chunks/4d67e943-e6a0fd3b5c397505.js" async=""></script><script src="/_next/static/chunks/690-74e5df42203c3ac7.js" async=""></script><script src="/_next/static/chunks/main-app-6b9bd1992c146060.js" async=""></script><script src="/_next/static/chunks/app/layout-ed940397e445e353.js" async=""></script><script src="/_next/static/chunks/1e97858d-8f9862bf6e8392c4.js" async=""></script><script src="/_next/static/chunks/201-f8a322a9e47f34de.js" async=""></script><script src="/_next/static/chunks/app/page-7d14d86bc5334ec8.js" async=""></script><meta name="next-size-adjust" content=""/><title>MAXSIM Dashboard</title><meta name="description" content="Live project dashboard for MAXSIM"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-background text-foreground antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex h-screen overflow-hidden"><div class="hidden md:flex"><aside class="flex h-full w-64 shrink-0 flex-col border-r border-border bg-card"><div class="border-b border-border px-4 py-4"><button type="button" class="flex flex-col gap-0.5 text-left"><span class="font-mono text-lg font-bold tracking-tight text-foreground">MAXSIM</span><span class="font-mono text-[10px] text-muted-foreground">Dashboard</span></button></div><div class="flex-1 overflow-y-auto py-2"><div class="px-3 pb-1"><span class="font-mono text-[10px] uppercase tracking-widest text-muted-foreground">Phases</span></div><nav class="flex flex-col gap-0.5 px-1"></nav></div><div class="border-t border-border px-1 py-2"><button type="button" class="flex w-full items-center justify-between rounded-sm px-3 py-2 text-left text-sm transition-colors hover:bg-card-hover text-muted-foreground"><span class="font-mono text-xs uppercase tracking-wide">Todos</span></button><button type="button" class="flex w-full items-center justify-between rounded-sm px-3 py-2 text-left text-sm transition-colors hover:bg-card-hover text-muted-foreground"><span class="font-mono text-xs uppercase tracking-wide">Blockers</span></button></div><div class="border-t border-border px-4 py-3"><div class="flex items-center gap-2"><span class="inline-block h-2 w-2 rounded-full bg-danger"></span><span class="font-mono text-[10px] text-muted-foreground">Disconnected</span></div></div></aside></div><main class="flex-1 overflow-y-auto p-6"><div class="flex flex-col gap-6"><div class="flex flex-col gap-4 border-b border-border pb-5"><div class="h-3 w-40 animate-pulse rounded-sm bg-muted"></div><div class="h-2 w-full animate-pulse rounded-sm bg-muted"></div><div class="flex gap-8"><div class="h-8 w-20 animate-pulse rounded-sm bg-muted"></div><div class="h-8 w-32 animate-pulse rounded-sm bg-muted"></div><div class="ml-auto flex gap-6"><div class="h-6 w-24 animate-pulse rounded-sm bg-muted"></div><div class="h-6 w-20 animate-pulse rounded-sm bg-muted"></div></div></div></div><div class="flex flex-col gap-3"><div class="flex justify-between px-4"><div class="h-3 w-16 animate-pulse rounded-sm bg-muted"></div><div class="h-3 w-6 animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div><div class="flex flex-col gap-2 px-4 py-3"><div class="flex gap-3"><div class="h-4 w-4 animate-pulse rounded-full bg-muted"></div><div class="h-4 w-8 animate-pulse rounded-sm bg-muted"></div><div class="h-4 w-40 animate-pulse rounded-sm bg-muted"></div></div><div class="h-1.5 w-full animate-pulse rounded-sm bg-muted"></div></div></div></div></main></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-73318435590a84a9.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[4934,[\"177\",\"static/chunks/app/layout-ed940397e445e353.js\"],\"WebSocketProvider\"]\n3:I[9653,[],\"\"]\n4:I[1329,[],\"\"]\n5:I[7868,[],\"ClientPageRoot\"]\n6:I[4098,[\"552\",\"static/chunks/1e97858d-8f9862bf6e8392c4.js\",\"201\",\"static/chunks/201-f8a322a9e47f34de.js\",\"974\",\"static/chunks/app/page-7d14d86bc5334ec8.js\"],\"default\"]\n9:I[9096,[],\"OutletBoundary\"]\nb:I[913,[],\"AsyncMetadataOutlet\"]\nd:I[9096,[],\"ViewportBoundary\"]\nf:I[9096,[],\"MetadataBoundary\"]\n10:\"$Sreact.suspense\"\n12:I[5719,[],\"\"]\n:HL[\"/_next/static/media/bb3ef058b751a6ad-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/e4af272ccee01ff0-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/c9e9cb8d084f06ac.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"SFApXNydjuLsra2OK1Tfx\",\"p\":\"\",\"c\":[\"\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/c9e9cb8d084f06ac.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"__variable_f367f3 __variable_3c557b\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-background text-foreground antialiased\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L5\",null,{\"Component\":\"$6\",\"searchParams\":{},\"params\":{},\"promises\":[\"$@7\",\"$@8\"]}],null,[\"$\",\"$L9\",null,{\"children\":[\"$La\",[\"$\",\"$Lb\",null,{\"promise\":\"$@c\"}]]}]]}],{},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Ld\",null,{\"children\":\"$Le\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Lf\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$10\",null,{\"fallback\":null,\"children\":\"$L11\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$12\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"7:{}\n8:\"$0:f:0:1:2:children:1:props:children:0:props:params\"\n"])</script><script>self.__next_f.push([1,"e:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\na:null\n"])</script><script>self.__next_f.push([1,"c:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"MAXSIM Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Live project dashboard for MAXSIM\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"11:\"$c:metadata\"\n"])</script></body></html>
@@ -13,7 +13,7 @@ f:I[9096,[],"MetadataBoundary"]
13
13
  :HL["/_next/static/media/bb3ef058b751a6ad-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
14
14
  :HL["/_next/static/media/e4af272ccee01ff0-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
15
15
  :HL["/_next/static/css/c9e9cb8d084f06ac.css","style"]
16
- 0:{"P":null,"b":"AAz2O-e9kToP5WUv1m4FP","p":"","c":["",""],"i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/c9e9cb8d084f06ac.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"__variable_f367f3 __variable_3c557b","children":["$","body",null,{"className":"bg-background text-foreground antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","searchParams":{},"params":{},"promises":["$@7","$@8"]}],null,["$","$L9",null,{"children":["$La",["$","$Lb",null,{"promise":"$@c"}]]}]]}],{},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Ld",null,{"children":"$Le"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$Lf",null,{"children":["$","div",null,{"hidden":true,"children":["$","$10",null,{"fallback":null,"children":"$L11"}]}]}]]}],false]],"m":"$undefined","G":["$12",[]],"s":false,"S":true}
16
+ 0:{"P":null,"b":"SFApXNydjuLsra2OK1Tfx","p":"","c":["",""],"i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/c9e9cb8d084f06ac.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"__variable_f367f3 __variable_3c557b","children":["$","body",null,{"className":"bg-background text-foreground antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","searchParams":{},"params":{},"promises":["$@7","$@8"]}],null,["$","$L9",null,{"children":["$La",["$","$Lb",null,{"promise":"$@c"}]]}]]}],{},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Ld",null,{"children":"$Le"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$Lf",null,{"children":["$","div",null,{"hidden":true,"children":["$","$10",null,{"fallback":null,"children":"$L11"}]}]}]]}],false]],"m":"$undefined","G":["$12",[]],"s":false,"S":true}
17
17
  7:{}
18
18
  8:"$0:f:0:1:2:children:1:props:children:0:props:params"
19
19
  e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
@@ -1 +1 @@
1
- <!DOCTYPE html><!--AAz2O_e9kToP5WUv1m4FP--><html lang="en" class="__variable_f367f3 __variable_3c557b"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/bb3ef058b751a6ad-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/e4af272ccee01ff0-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/c9e9cb8d084f06ac.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-73318435590a84a9.js"/><script src="/_next/static/chunks/4d67e943-e6a0fd3b5c397505.js" async=""></script><script src="/_next/static/chunks/690-74e5df42203c3ac7.js" async=""></script><script src="/_next/static/chunks/main-app-6b9bd1992c146060.js" async=""></script><script src="/_next/static/chunks/app/layout-ed940397e445e353.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>MAXSIM Dashboard</title><meta name="description" content="Live project dashboard for MAXSIM"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-background text-foreground antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-73318435590a84a9.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[4934,[\"177\",\"static/chunks/app/layout-ed940397e445e353.js\"],\"WebSocketProvider\"]\n3:I[9653,[],\"\"]\n4:I[1329,[],\"\"]\n5:I[9096,[],\"OutletBoundary\"]\n7:I[913,[],\"AsyncMetadataOutlet\"]\n9:I[9096,[],\"ViewportBoundary\"]\nb:I[9096,[],\"MetadataBoundary\"]\nc:\"$Sreact.suspense\"\ne:I[5719,[],\"\"]\n:HL[\"/_next/static/media/bb3ef058b751a6ad-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/e4af272ccee01ff0-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/c9e9cb8d084f06ac.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"AAz2O-e9kToP5WUv1m4FP\",\"p\":\"\",\"c\":[\"\",\"_not-found\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/c9e9cb8d084f06ac.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"__variable_f367f3 __variable_3c557b\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-background text-foreground antialiased\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L5\",null,{\"children\":[\"$L6\",[\"$\",\"$L7\",null,{\"promise\":\"$@8\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$c\",null,{\"fallback\":null,\"children\":\"$Ld\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$e\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n6:null\n"])</script><script>self.__next_f.push([1,"8:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"MAXSIM Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Live project dashboard for MAXSIM\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"d:\"$8:metadata\"\n"])</script></body></html>
1
+ <!DOCTYPE html><!--SFApXNydjuLsra2OK1Tfx--><html lang="en" class="__variable_f367f3 __variable_3c557b"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/bb3ef058b751a6ad-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/e4af272ccee01ff0-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/c9e9cb8d084f06ac.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-73318435590a84a9.js"/><script src="/_next/static/chunks/4d67e943-e6a0fd3b5c397505.js" async=""></script><script src="/_next/static/chunks/690-74e5df42203c3ac7.js" async=""></script><script src="/_next/static/chunks/main-app-6b9bd1992c146060.js" async=""></script><script src="/_next/static/chunks/app/layout-ed940397e445e353.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>MAXSIM Dashboard</title><meta name="description" content="Live project dashboard for MAXSIM"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="bg-background text-foreground antialiased"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-73318435590a84a9.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[4934,[\"177\",\"static/chunks/app/layout-ed940397e445e353.js\"],\"WebSocketProvider\"]\n3:I[9653,[],\"\"]\n4:I[1329,[],\"\"]\n5:I[9096,[],\"OutletBoundary\"]\n7:I[913,[],\"AsyncMetadataOutlet\"]\n9:I[9096,[],\"ViewportBoundary\"]\nb:I[9096,[],\"MetadataBoundary\"]\nc:\"$Sreact.suspense\"\ne:I[5719,[],\"\"]\n:HL[\"/_next/static/media/bb3ef058b751a6ad-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/e4af272ccee01ff0-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/c9e9cb8d084f06ac.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"SFApXNydjuLsra2OK1Tfx\",\"p\":\"\",\"c\":[\"\",\"_not-found\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/c9e9cb8d084f06ac.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"__variable_f367f3 __variable_3c557b\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-background text-foreground antialiased\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L5\",null,{\"children\":[\"$L6\",[\"$\",\"$L7\",null,{\"promise\":\"$@8\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$c\",null,{\"fallback\":null,\"children\":\"$Ld\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$e\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n6:null\n"])</script><script>self.__next_f.push([1,"8:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"MAXSIM Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Live project dashboard for MAXSIM\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"d:\"$8:metadata\"\n"])</script></body></html>
@@ -1 +1 @@
1
- <!DOCTYPE html><html><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><title data-next-head="">500: Internal Server Error</title><noscript data-n-css=""></noscript><script defer="" noModule="" src="/_next/static/chunks/polyfills-42372ed130431b0a.js"></script><script src="/_next/static/chunks/webpack-73318435590a84a9.js" defer=""></script><script src="/_next/static/chunks/framework-bec628f2b7cc8f6d.js" defer=""></script><script src="/_next/static/chunks/main-790db736f48e7597.js" defer=""></script><script src="/_next/static/chunks/pages/_app-f4d560c9dbc22e4e.js" defer=""></script><script src="/_next/static/chunks/pages/_error-492bd157be5771d5.js" defer=""></script><script src="/_next/static/AAz2O-e9kToP5WUv1m4FP/_buildManifest.js" defer=""></script><script src="/_next/static/AAz2O-e9kToP5WUv1m4FP/_ssgManifest.js" defer=""></script></head><body><div id="__next"><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error<!-- -->.</h2></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":500}},"page":"/_error","query":{},"buildId":"AAz2O-e9kToP5WUv1m4FP","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
1
+ <!DOCTYPE html><html><head><meta charSet="utf-8" data-next-head=""/><meta name="viewport" content="width=device-width" data-next-head=""/><title data-next-head="">500: Internal Server Error</title><noscript data-n-css=""></noscript><script defer="" noModule="" src="/_next/static/chunks/polyfills-42372ed130431b0a.js"></script><script src="/_next/static/chunks/webpack-73318435590a84a9.js" defer=""></script><script src="/_next/static/chunks/framework-bec628f2b7cc8f6d.js" defer=""></script><script src="/_next/static/chunks/main-790db736f48e7597.js" defer=""></script><script src="/_next/static/chunks/pages/_app-f4d560c9dbc22e4e.js" defer=""></script><script src="/_next/static/chunks/pages/_error-492bd157be5771d5.js" defer=""></script><script src="/_next/static/SFApXNydjuLsra2OK1Tfx/_buildManifest.js" defer=""></script><script src="/_next/static/SFApXNydjuLsra2OK1Tfx/_ssgManifest.js" defer=""></script></head><body><div id="__next"><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error<!-- -->.</h2></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":500}},"page":"/_error","query":{},"buildId":"SFApXNydjuLsra2OK1Tfx","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html>
@@ -1 +1 @@
1
- {"node":{},"edge":{},"encryptionKey":"TyVraTVKdSq9wZUWPYDZm9kF0D3rQDc4XYkrJI1Wn1Y="}
1
+ {"node":{},"edge":{},"encryptionKey":"yPvPVMJ+lBunoCDFbYaL/LzGDdqaXhMrKBiyj2/vfGg="}
File without changes
File without changes
File without changes
package/dist/cli.cjs CHANGED
File without changes
package/dist/install.cjs CHANGED
@@ -6485,13 +6485,14 @@ var require_dist = /* @__PURE__ */ __commonJSMin(((exports) => {
6485
6485
  var require_package = /* @__PURE__ */ __commonJSMin(((exports, module) => {
6486
6486
  module.exports = {
6487
6487
  "name": "maxsimcli",
6488
- "version": "1.3.0",
6488
+ "version": "2.0.0",
6489
6489
  "private": false,
6490
6490
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode, Gemini and Codex by MayStudios.",
6491
6491
  "bin": { "maxsimcli": "dist/install.cjs" },
6492
6492
  "main": "./dist/cli.cjs",
6493
6493
  "types": "./dist/cli.d.cts",
6494
- "files": ["dist"],
6494
+ "files": ["dist", "README.md"],
6495
+ "scripts": { "prepublishOnly": "node -e \"require('fs').copyFileSync('../../README.md', './README.md')\"" },
6495
6496
  "engines": { "node": ">=22.0.0" },
6496
6497
  "keywords": [
6497
6498
  "claude",