gsd-pi 2.75.0 → 2.76.0

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 (824) hide show
  1. package/README.md +186 -149
  2. package/dist/claude-cli-check.d.ts +10 -0
  3. package/dist/claude-cli-check.js +13 -3
  4. package/dist/headless-events.d.ts +1 -1
  5. package/dist/headless-events.js +5 -2
  6. package/dist/headless.js +5 -6
  7. package/dist/onboarding.d.ts +20 -1
  8. package/dist/onboarding.js +99 -39
  9. package/dist/resources/extensions/ask-user-questions.js +17 -5
  10. package/dist/resources/extensions/claude-code-cli/models.js +9 -0
  11. package/dist/resources/extensions/claude-code-cli/readiness.js +12 -2
  12. package/dist/resources/extensions/claude-code-cli/stream-adapter.js +76 -4
  13. package/dist/resources/extensions/gsd/auto/detect-stuck.js +9 -0
  14. package/dist/resources/extensions/gsd/auto/loop.js +67 -4
  15. package/dist/resources/extensions/gsd/auto/phases.js +72 -47
  16. package/dist/resources/extensions/gsd/auto/resolve.js +1 -1
  17. package/dist/resources/extensions/gsd/auto/run-unit.js +10 -1
  18. package/dist/resources/extensions/gsd/auto/session.js +5 -0
  19. package/dist/resources/extensions/gsd/auto-artifact-paths.js +20 -0
  20. package/dist/resources/extensions/gsd/auto-dashboard.js +37 -8
  21. package/dist/resources/extensions/gsd/auto-direct-dispatch.js +8 -2
  22. package/dist/resources/extensions/gsd/auto-dispatch.js +120 -14
  23. package/dist/resources/extensions/gsd/auto-loop.js +1 -1
  24. package/dist/resources/extensions/gsd/auto-model-selection.js +14 -4
  25. package/dist/resources/extensions/gsd/auto-post-unit.js +10 -8
  26. package/dist/resources/extensions/gsd/auto-prompts.js +190 -46
  27. package/dist/resources/extensions/gsd/auto-recovery.js +57 -0
  28. package/dist/resources/extensions/gsd/auto-start.js +5 -3
  29. package/dist/resources/extensions/gsd/auto-verification.js +3 -3
  30. package/dist/resources/extensions/gsd/auto-worktree.js +71 -2
  31. package/dist/resources/extensions/gsd/auto.js +57 -25
  32. package/dist/resources/extensions/gsd/bootstrap/agent-end-recovery.js +8 -21
  33. package/dist/resources/extensions/gsd/bootstrap/db-tools.js +45 -23
  34. package/dist/resources/extensions/gsd/bootstrap/memory-tools.js +128 -0
  35. package/dist/resources/extensions/gsd/bootstrap/query-tools.js +29 -0
  36. package/dist/resources/extensions/gsd/bootstrap/register-extension.js +2 -0
  37. package/dist/resources/extensions/gsd/bootstrap/register-hooks.js +22 -0
  38. package/dist/resources/extensions/gsd/bootstrap/system-context.js +17 -4
  39. package/dist/resources/extensions/gsd/commands/catalog.js +81 -9
  40. package/dist/resources/extensions/gsd/commands/handlers/core.js +64 -24
  41. package/dist/resources/extensions/gsd/commands/handlers/escalate.js +171 -0
  42. package/dist/resources/extensions/gsd/commands/handlers/onboarding.js +159 -0
  43. package/dist/resources/extensions/gsd/commands/handlers/ops.js +21 -0
  44. package/dist/resources/extensions/gsd/commands/handlers/workflow.js +228 -29
  45. package/dist/resources/extensions/gsd/commands-cmux.js +5 -2
  46. package/dist/resources/extensions/gsd/commands-config.js +5 -0
  47. package/dist/resources/extensions/gsd/commands-debug.js +388 -0
  48. package/dist/resources/extensions/gsd/commands-do.js +1 -0
  49. package/dist/resources/extensions/gsd/commands-extract-learnings.js +233 -75
  50. package/dist/resources/extensions/gsd/commands-handlers.js +21 -2
  51. package/dist/resources/extensions/gsd/commands-memory.js +462 -0
  52. package/dist/resources/extensions/gsd/commands-prefs-wizard.js +40 -12
  53. package/dist/resources/extensions/gsd/commands-scan.js +94 -0
  54. package/dist/resources/extensions/gsd/commands-workflow-templates.js +101 -2
  55. package/dist/resources/extensions/gsd/custom-workflow-engine.js +74 -54
  56. package/dist/resources/extensions/gsd/db-writer.js +1 -0
  57. package/dist/resources/extensions/gsd/debug-session-store.js +238 -0
  58. package/dist/resources/extensions/gsd/definition-loader.js +7 -0
  59. package/dist/resources/extensions/gsd/docs/preferences-reference.md +9 -9
  60. package/dist/resources/extensions/gsd/doctor-environment.js +2 -1
  61. package/dist/resources/extensions/gsd/doctor-git-checks.js +27 -3
  62. package/dist/resources/extensions/gsd/doctor-proactive.js +4 -1
  63. package/dist/resources/extensions/gsd/doctor-providers.js +48 -20
  64. package/dist/resources/extensions/gsd/doctor-runtime-checks.js +22 -4
  65. package/dist/resources/extensions/gsd/doctor.js +7 -1
  66. package/dist/resources/extensions/gsd/error-classifier.js +6 -3
  67. package/dist/resources/extensions/gsd/escalation.js +321 -0
  68. package/dist/resources/extensions/gsd/forensics.js +26 -29
  69. package/dist/resources/extensions/gsd/git-service.js +0 -1
  70. package/dist/resources/extensions/gsd/graph.js +26 -2
  71. package/dist/resources/extensions/gsd/gsd-db.js +490 -32
  72. package/dist/resources/extensions/gsd/health-widget-core.js +42 -14
  73. package/dist/resources/extensions/gsd/health-widget.js +7 -4
  74. package/dist/resources/extensions/gsd/init-wizard.js +86 -45
  75. package/dist/resources/extensions/gsd/markdown-renderer.js +5 -5
  76. package/dist/resources/extensions/gsd/memory-embeddings.js +219 -0
  77. package/dist/resources/extensions/gsd/memory-extractor.js +78 -27
  78. package/dist/resources/extensions/gsd/memory-ingest.js +218 -0
  79. package/dist/resources/extensions/gsd/memory-relations.js +189 -0
  80. package/dist/resources/extensions/gsd/memory-source-store.js +113 -0
  81. package/dist/resources/extensions/gsd/memory-store.js +299 -6
  82. package/dist/resources/extensions/gsd/metrics.js +1 -0
  83. package/dist/resources/extensions/gsd/model-cost-table.js +3 -1
  84. package/dist/resources/extensions/gsd/model-router.js +16 -6
  85. package/dist/resources/extensions/gsd/native-git-bridge.js +137 -5
  86. package/dist/resources/extensions/gsd/notification-overlay.js +7 -22
  87. package/dist/resources/extensions/gsd/notification-widget.js +24 -39
  88. package/dist/resources/extensions/gsd/notifications.js +4 -0
  89. package/dist/resources/extensions/gsd/onboarding-state.js +133 -0
  90. package/dist/resources/extensions/gsd/post-execution-checks.js +27 -11
  91. package/dist/resources/extensions/gsd/pre-execution-checks.js +105 -8
  92. package/dist/resources/extensions/gsd/preferences-models.js +1 -0
  93. package/dist/resources/extensions/gsd/preferences-types.js +2 -1
  94. package/dist/resources/extensions/gsd/preferences-validation.js +42 -8
  95. package/dist/resources/extensions/gsd/preferences.js +10 -10
  96. package/dist/resources/extensions/gsd/prompts/add-tests.md +1 -0
  97. package/dist/resources/extensions/gsd/prompts/complete-milestone.md +4 -1
  98. package/dist/resources/extensions/gsd/prompts/debug-diagnose.md +25 -0
  99. package/dist/resources/extensions/gsd/prompts/debug-session-manager.md +80 -0
  100. package/dist/resources/extensions/gsd/prompts/execute-task.md +13 -1
  101. package/dist/resources/extensions/gsd/prompts/plan-milestone.md +12 -0
  102. package/dist/resources/extensions/gsd/prompts/plan-slice.md +1 -0
  103. package/dist/resources/extensions/gsd/prompts/refine-slice.md +69 -0
  104. package/dist/resources/extensions/gsd/prompts/scan.md +79 -0
  105. package/dist/resources/extensions/gsd/prompts/workflow-oneshot.md +26 -0
  106. package/dist/resources/extensions/gsd/python-resolver.js +70 -0
  107. package/dist/resources/extensions/gsd/run-manager.js +37 -17
  108. package/dist/resources/extensions/gsd/setup-catalog.js +75 -0
  109. package/dist/resources/extensions/gsd/state.js +47 -3
  110. package/dist/resources/extensions/gsd/templates/PREFERENCES.md +7 -7
  111. package/dist/resources/extensions/gsd/tools/complete-task.js +80 -0
  112. package/dist/resources/extensions/gsd/tools/memory-tools.js +306 -0
  113. package/dist/resources/extensions/gsd/tools/plan-milestone.js +37 -12
  114. package/dist/resources/extensions/gsd/tools/plan-slice.js +5 -2
  115. package/dist/resources/extensions/gsd/tools/skip-slice.js +78 -0
  116. package/dist/resources/extensions/gsd/tools/workflow-tool-executors.js +14 -0
  117. package/dist/resources/extensions/gsd/uok/flags.js +7 -7
  118. package/dist/resources/extensions/gsd/uok/kernel.js +8 -3
  119. package/dist/resources/extensions/gsd/verification-gate.js +2 -1
  120. package/dist/resources/extensions/gsd/workflow-dispatch.js +64 -0
  121. package/dist/resources/extensions/gsd/workflow-install.js +327 -0
  122. package/dist/resources/extensions/gsd/workflow-manifest.js +8 -0
  123. package/dist/resources/extensions/gsd/workflow-mcp.js +1 -6
  124. package/dist/resources/extensions/gsd/workflow-plugins.js +346 -0
  125. package/dist/resources/extensions/gsd/workflow-projections.js +17 -15
  126. package/dist/resources/extensions/gsd/workflow-templates/accessibility-audit.md +88 -0
  127. package/dist/resources/extensions/gsd/workflow-templates/api-breaking-change.md +117 -0
  128. package/dist/resources/extensions/gsd/workflow-templates/bugfix.md +1 -0
  129. package/dist/resources/extensions/gsd/workflow-templates/changelog-gen.md +82 -0
  130. package/dist/resources/extensions/gsd/workflow-templates/ci-bootstrap.md +144 -0
  131. package/dist/resources/extensions/gsd/workflow-templates/dead-code.md +81 -0
  132. package/dist/resources/extensions/gsd/workflow-templates/dep-upgrade.md +1 -0
  133. package/dist/resources/extensions/gsd/workflow-templates/docs-sync.yaml +76 -0
  134. package/dist/resources/extensions/gsd/workflow-templates/env-audit.yaml +88 -0
  135. package/dist/resources/extensions/gsd/workflow-templates/full-project.md +1 -0
  136. package/dist/resources/extensions/gsd/workflow-templates/hotfix.md +1 -0
  137. package/dist/resources/extensions/gsd/workflow-templates/issue-triage.md +84 -0
  138. package/dist/resources/extensions/gsd/workflow-templates/observability-setup.md +133 -0
  139. package/dist/resources/extensions/gsd/workflow-templates/onboarding-check.md +74 -0
  140. package/dist/resources/extensions/gsd/workflow-templates/performance-audit.md +125 -0
  141. package/dist/resources/extensions/gsd/workflow-templates/pr-review.md +67 -0
  142. package/dist/resources/extensions/gsd/workflow-templates/pr-triage.md +83 -0
  143. package/dist/resources/extensions/gsd/workflow-templates/refactor.md +1 -0
  144. package/dist/resources/extensions/gsd/workflow-templates/registry.json +184 -0
  145. package/dist/resources/extensions/gsd/workflow-templates/release.md +118 -0
  146. package/dist/resources/extensions/gsd/workflow-templates/rename-symbol.yaml +99 -0
  147. package/dist/resources/extensions/gsd/workflow-templates/security-audit.md +1 -0
  148. package/dist/resources/extensions/gsd/workflow-templates/small-feature.md +1 -0
  149. package/dist/resources/extensions/gsd/workflow-templates/spike.md +1 -0
  150. package/dist/resources/extensions/gsd/workflow-templates/test-backfill.yaml +73 -0
  151. package/dist/resources/extensions/gsd/worktree-resolver.js +42 -1
  152. package/dist/resources/extensions/remote-questions/commands.js +380 -0
  153. package/dist/resources/extensions/remote-questions/manager.js +39 -5
  154. package/dist/resources/extensions/remote-questions/telegram-adapter.js +79 -4
  155. package/dist/resources/extensions/search-the-web/command-search-provider.js +4 -1
  156. package/dist/resources/extensions/search-the-web/native-search.js +13 -2
  157. package/dist/resources/extensions/shared/interview-ui.js +189 -1
  158. package/dist/resources/extensions/shared/layout-utils.js +17 -0
  159. package/dist/resources/extensions/shared/rtk-shared.js +47 -0
  160. package/dist/resources/extensions/shared/rtk.js +3 -46
  161. package/dist/resources/skills/create-workflow/SKILL.md +33 -6
  162. package/dist/rtk-shared.d.ts +10 -0
  163. package/dist/rtk-shared.js +47 -0
  164. package/dist/rtk.d.ts +2 -6
  165. package/dist/rtk.js +3 -48
  166. package/dist/shared/workspace-types.d.ts +52 -0
  167. package/dist/shared/workspace-types.js +1 -0
  168. package/dist/tsconfig.extensions.tsbuildinfo +1 -1
  169. package/dist/update-check.d.ts +10 -0
  170. package/dist/update-check.js +24 -3
  171. package/dist/web/standalone/.next/BUILD_ID +1 -1
  172. package/dist/web/standalone/.next/app-path-routes-manifest.json +13 -13
  173. package/dist/web/standalone/.next/build-manifest.json +3 -3
  174. package/dist/web/standalone/.next/react-loadable-manifest.json +2 -2
  175. package/dist/web/standalone/.next/required-server-files.json +1 -1
  176. package/dist/web/standalone/.next/server/app/_global-error/page_client-reference-manifest.js +1 -1
  177. package/dist/web/standalone/.next/server/app/_global-error.html +1 -1
  178. package/dist/web/standalone/.next/server/app/_global-error.rsc +1 -1
  179. package/dist/web/standalone/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  180. package/dist/web/standalone/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
  181. package/dist/web/standalone/.next/server/app/_global-error.segments/_global-error.segment.rsc +1 -1
  182. package/dist/web/standalone/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  183. package/dist/web/standalone/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  184. package/dist/web/standalone/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  185. package/dist/web/standalone/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  186. package/dist/web/standalone/.next/server/app/_not-found.html +1 -1
  187. package/dist/web/standalone/.next/server/app/_not-found.rsc +2 -2
  188. package/dist/web/standalone/.next/server/app/_not-found.segments/_full.segment.rsc +2 -2
  189. package/dist/web/standalone/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
  190. package/dist/web/standalone/.next/server/app/_not-found.segments/_index.segment.rsc +2 -2
  191. package/dist/web/standalone/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
  192. package/dist/web/standalone/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
  193. package/dist/web/standalone/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -2
  194. package/dist/web/standalone/.next/server/app/api/boot/route.js +1 -1
  195. package/dist/web/standalone/.next/server/app/api/boot/route.js.nft.json +1 -1
  196. package/dist/web/standalone/.next/server/app/api/bridge-terminal/input/route.js +1 -1
  197. package/dist/web/standalone/.next/server/app/api/bridge-terminal/input/route.js.nft.json +1 -1
  198. package/dist/web/standalone/.next/server/app/api/bridge-terminal/resize/route.js +1 -1
  199. package/dist/web/standalone/.next/server/app/api/bridge-terminal/resize/route.js.nft.json +1 -1
  200. package/dist/web/standalone/.next/server/app/api/bridge-terminal/stream/route.js +2 -2
  201. package/dist/web/standalone/.next/server/app/api/bridge-terminal/stream/route.js.nft.json +1 -1
  202. package/dist/web/standalone/.next/server/app/api/captures/route.js +1 -1
  203. package/dist/web/standalone/.next/server/app/api/captures/route.js.nft.json +1 -1
  204. package/dist/web/standalone/.next/server/app/api/cleanup/route.js +1 -1
  205. package/dist/web/standalone/.next/server/app/api/cleanup/route.js.nft.json +1 -1
  206. package/dist/web/standalone/.next/server/app/api/doctor/route.js +1 -1
  207. package/dist/web/standalone/.next/server/app/api/doctor/route.js.nft.json +1 -1
  208. package/dist/web/standalone/.next/server/app/api/export-data/route.js +1 -1
  209. package/dist/web/standalone/.next/server/app/api/export-data/route.js.nft.json +1 -1
  210. package/dist/web/standalone/.next/server/app/api/files/route.js +1 -1
  211. package/dist/web/standalone/.next/server/app/api/files/route.js.nft.json +1 -1
  212. package/dist/web/standalone/.next/server/app/api/forensics/route.js +1 -1
  213. package/dist/web/standalone/.next/server/app/api/forensics/route.js.nft.json +1 -1
  214. package/dist/web/standalone/.next/server/app/api/git/route.js +1 -1
  215. package/dist/web/standalone/.next/server/app/api/git/route.js.nft.json +1 -1
  216. package/dist/web/standalone/.next/server/app/api/history/route.js +1 -1
  217. package/dist/web/standalone/.next/server/app/api/history/route.js.nft.json +1 -1
  218. package/dist/web/standalone/.next/server/app/api/hooks/route.js +1 -1
  219. package/dist/web/standalone/.next/server/app/api/hooks/route.js.nft.json +1 -1
  220. package/dist/web/standalone/.next/server/app/api/inspect/route.js +1 -1
  221. package/dist/web/standalone/.next/server/app/api/inspect/route.js.nft.json +1 -1
  222. package/dist/web/standalone/.next/server/app/api/knowledge/route.js +1 -1
  223. package/dist/web/standalone/.next/server/app/api/knowledge/route.js.nft.json +1 -1
  224. package/dist/web/standalone/.next/server/app/api/live-state/route.js +1 -1
  225. package/dist/web/standalone/.next/server/app/api/live-state/route.js.nft.json +1 -1
  226. package/dist/web/standalone/.next/server/app/api/notifications/route.js +2 -2
  227. package/dist/web/standalone/.next/server/app/api/notifications/route.js.nft.json +1 -1
  228. package/dist/web/standalone/.next/server/app/api/onboarding/route.js +1 -1
  229. package/dist/web/standalone/.next/server/app/api/onboarding/route.js.nft.json +1 -1
  230. package/dist/web/standalone/.next/server/app/api/projects/route.js +1 -1
  231. package/dist/web/standalone/.next/server/app/api/projects/route.js.nft.json +1 -1
  232. package/dist/web/standalone/.next/server/app/api/recovery/route.js +1 -1
  233. package/dist/web/standalone/.next/server/app/api/recovery/route.js.nft.json +1 -1
  234. package/dist/web/standalone/.next/server/app/api/session/browser/route.js +1 -1
  235. package/dist/web/standalone/.next/server/app/api/session/browser/route.js.nft.json +1 -1
  236. package/dist/web/standalone/.next/server/app/api/session/command/route.js +1 -1
  237. package/dist/web/standalone/.next/server/app/api/session/command/route.js.nft.json +1 -1
  238. package/dist/web/standalone/.next/server/app/api/session/events/route.js +2 -2
  239. package/dist/web/standalone/.next/server/app/api/session/events/route.js.nft.json +1 -1
  240. package/dist/web/standalone/.next/server/app/api/session/manage/route.js +1 -1
  241. package/dist/web/standalone/.next/server/app/api/session/manage/route.js.nft.json +1 -1
  242. package/dist/web/standalone/.next/server/app/api/settings-data/route.js +1 -1
  243. package/dist/web/standalone/.next/server/app/api/settings-data/route.js.nft.json +1 -1
  244. package/dist/web/standalone/.next/server/app/api/skill-health/route.js +1 -1
  245. package/dist/web/standalone/.next/server/app/api/skill-health/route.js.nft.json +1 -1
  246. package/dist/web/standalone/.next/server/app/api/steer/route.js +1 -1
  247. package/dist/web/standalone/.next/server/app/api/steer/route.js.nft.json +1 -1
  248. package/dist/web/standalone/.next/server/app/api/switch-root/route.js +1 -1
  249. package/dist/web/standalone/.next/server/app/api/switch-root/route.js.nft.json +1 -1
  250. package/dist/web/standalone/.next/server/app/api/terminal/sessions/route.js +2 -2
  251. package/dist/web/standalone/.next/server/app/api/terminal/sessions/route.js.nft.json +1 -1
  252. package/dist/web/standalone/.next/server/app/api/terminal/stream/route.js +2 -2
  253. package/dist/web/standalone/.next/server/app/api/terminal/stream/route.js.nft.json +1 -1
  254. package/dist/web/standalone/.next/server/app/api/undo/route.js +1 -1
  255. package/dist/web/standalone/.next/server/app/api/undo/route.js.nft.json +1 -1
  256. package/dist/web/standalone/.next/server/app/api/update/route.js +1 -1
  257. package/dist/web/standalone/.next/server/app/api/visualizer/route.js +1 -1
  258. package/dist/web/standalone/.next/server/app/api/visualizer/route.js.nft.json +1 -1
  259. package/dist/web/standalone/.next/server/app/index.html +1 -1
  260. package/dist/web/standalone/.next/server/app/index.rsc +3 -3
  261. package/dist/web/standalone/.next/server/app/index.segments/__PAGE__.segment.rsc +2 -2
  262. package/dist/web/standalone/.next/server/app/index.segments/_full.segment.rsc +3 -3
  263. package/dist/web/standalone/.next/server/app/index.segments/_head.segment.rsc +1 -1
  264. package/dist/web/standalone/.next/server/app/index.segments/_index.segment.rsc +2 -2
  265. package/dist/web/standalone/.next/server/app/index.segments/_tree.segment.rsc +2 -2
  266. package/dist/web/standalone/.next/server/app/page_client-reference-manifest.js +1 -1
  267. package/dist/web/standalone/.next/server/app-paths-manifest.json +13 -13
  268. package/dist/web/standalone/.next/server/chunks/6897.js +2 -2
  269. package/dist/web/standalone/.next/server/chunks/7461.js +1 -0
  270. package/dist/web/standalone/.next/server/middleware-build-manifest.js +1 -1
  271. package/dist/web/standalone/.next/server/middleware-manifest.json +1 -1
  272. package/dist/web/standalone/.next/server/middleware-react-loadable-manifest.js +1 -1
  273. package/dist/web/standalone/.next/server/pages/404.html +1 -1
  274. package/dist/web/standalone/.next/server/pages/500.html +1 -1
  275. package/dist/web/standalone/.next/static/chunks/2826.e59e8578e2e28639.js +9 -0
  276. package/dist/web/standalone/.next/static/chunks/{2008.71ee9230ad78df21.js → 3621.fc7480022c972438.js} +2 -2
  277. package/dist/web/standalone/.next/static/chunks/app/{page-7115e62689b5fd84.js → page-151349214571e2b6.js} +1 -1
  278. package/dist/web/standalone/.next/static/chunks/{webpack-b868033a5834586d.js → webpack-5fc74f13a25fa1bb.js} +1 -1
  279. package/dist/web/standalone/.next/static/css/632cd626b1731d88.css +1 -0
  280. package/dist/web/standalone/server.js +1 -1
  281. package/dist/welcome-screen.js +48 -24
  282. package/dist/wizard.js +2 -2
  283. package/dist/worktree-cli.d.ts +6 -5
  284. package/dist/worktree-cli.js +23 -7
  285. package/package.json +3 -3
  286. package/packages/daemon/package.json +2 -2
  287. package/packages/mcp-server/dist/server.d.ts.map +1 -1
  288. package/packages/mcp-server/dist/server.js +12 -10
  289. package/packages/mcp-server/dist/server.js.map +1 -1
  290. package/packages/mcp-server/dist/session-manager.d.ts.map +1 -1
  291. package/packages/mcp-server/dist/session-manager.js +8 -1
  292. package/packages/mcp-server/dist/session-manager.js.map +1 -1
  293. package/packages/mcp-server/dist/workflow-tools.d.ts +1 -0
  294. package/packages/mcp-server/dist/workflow-tools.d.ts.map +1 -1
  295. package/packages/mcp-server/dist/workflow-tools.js +207 -71
  296. package/packages/mcp-server/dist/workflow-tools.js.map +1 -1
  297. package/packages/mcp-server/package.json +2 -2
  298. package/packages/mcp-server/src/mcp-server.test.ts +40 -4
  299. package/packages/mcp-server/src/server.ts +12 -10
  300. package/packages/mcp-server/src/session-manager.ts +10 -3
  301. package/packages/mcp-server/src/workflow-tools.test.ts +346 -1
  302. package/packages/mcp-server/src/workflow-tools.ts +228 -75
  303. package/packages/mcp-server/tsconfig.tsbuildinfo +1 -1
  304. package/packages/native/package.json +1 -1
  305. package/packages/native/tsconfig.tsbuildinfo +1 -1
  306. package/packages/pi-agent-core/package.json +1 -1
  307. package/packages/pi-agent-core/tsconfig.tsbuildinfo +1 -1
  308. package/packages/pi-ai/dist/index.d.ts +1 -0
  309. package/packages/pi-ai/dist/index.d.ts.map +1 -1
  310. package/packages/pi-ai/dist/index.js +1 -0
  311. package/packages/pi-ai/dist/index.js.map +1 -1
  312. package/packages/pi-ai/dist/models/capability-patches.d.ts.map +1 -1
  313. package/packages/pi-ai/dist/models/capability-patches.js +3 -2
  314. package/packages/pi-ai/dist/models/capability-patches.js.map +1 -1
  315. package/packages/pi-ai/dist/models/generated/amazon-bedrock.d.ts +68 -0
  316. package/packages/pi-ai/dist/models/generated/amazon-bedrock.d.ts.map +1 -1
  317. package/packages/pi-ai/dist/models/generated/amazon-bedrock.js +68 -0
  318. package/packages/pi-ai/dist/models/generated/amazon-bedrock.js.map +1 -1
  319. package/packages/pi-ai/dist/models/generated/anthropic.d.ts +17 -0
  320. package/packages/pi-ai/dist/models/generated/anthropic.d.ts.map +1 -1
  321. package/packages/pi-ai/dist/models/generated/anthropic.js +17 -0
  322. package/packages/pi-ai/dist/models/generated/anthropic.js.map +1 -1
  323. package/packages/pi-ai/dist/models/generated/google-antigravity.d.ts +17 -0
  324. package/packages/pi-ai/dist/models/generated/google-antigravity.d.ts.map +1 -1
  325. package/packages/pi-ai/dist/models/generated/google-antigravity.js +17 -0
  326. package/packages/pi-ai/dist/models/generated/google-antigravity.js.map +1 -1
  327. package/packages/pi-ai/dist/models/generated/groq.d.ts +0 -153
  328. package/packages/pi-ai/dist/models/generated/groq.d.ts.map +1 -1
  329. package/packages/pi-ai/dist/models/generated/groq.js +0 -153
  330. package/packages/pi-ai/dist/models/generated/groq.js.map +1 -1
  331. package/packages/pi-ai/dist/models/generated/index.d.ts +136 -153
  332. package/packages/pi-ai/dist/models/generated/index.d.ts.map +1 -1
  333. package/packages/pi-ai/dist/models/generated/openai-codex.d.ts +17 -0
  334. package/packages/pi-ai/dist/models/generated/openai-codex.d.ts.map +1 -1
  335. package/packages/pi-ai/dist/models/generated/openai-codex.js +17 -0
  336. package/packages/pi-ai/dist/models/generated/openai-codex.js.map +1 -1
  337. package/packages/pi-ai/dist/models/generated/openrouter.d.ts +17 -0
  338. package/packages/pi-ai/dist/models/generated/openrouter.d.ts.map +1 -1
  339. package/packages/pi-ai/dist/models/generated/openrouter.js +17 -0
  340. package/packages/pi-ai/dist/models/generated/openrouter.js.map +1 -1
  341. package/packages/pi-ai/dist/models.generated.test.js +17 -0
  342. package/packages/pi-ai/dist/models.generated.test.js.map +1 -1
  343. package/packages/pi-ai/dist/providers/amazon-bedrock.d.ts +22 -1
  344. package/packages/pi-ai/dist/providers/amazon-bedrock.d.ts.map +1 -1
  345. package/packages/pi-ai/dist/providers/amazon-bedrock.js +40 -6
  346. package/packages/pi-ai/dist/providers/amazon-bedrock.js.map +1 -1
  347. package/packages/pi-ai/dist/providers/amazon-bedrock.test.d.ts +2 -0
  348. package/packages/pi-ai/dist/providers/amazon-bedrock.test.d.ts.map +1 -0
  349. package/packages/pi-ai/dist/providers/amazon-bedrock.test.js +106 -0
  350. package/packages/pi-ai/dist/providers/amazon-bedrock.test.js.map +1 -0
  351. package/packages/pi-ai/dist/providers/anthropic-auth.test.js +42 -1
  352. package/packages/pi-ai/dist/providers/anthropic-auth.test.js.map +1 -1
  353. package/packages/pi-ai/dist/providers/anthropic-shared.d.ts +20 -1
  354. package/packages/pi-ai/dist/providers/anthropic-shared.d.ts.map +1 -1
  355. package/packages/pi-ai/dist/providers/anthropic-shared.js +32 -2
  356. package/packages/pi-ai/dist/providers/anthropic-shared.js.map +1 -1
  357. package/packages/pi-ai/dist/providers/anthropic-shared.test.js +12 -1
  358. package/packages/pi-ai/dist/providers/anthropic-shared.test.js.map +1 -1
  359. package/packages/pi-ai/dist/providers/anthropic.d.ts +11 -0
  360. package/packages/pi-ai/dist/providers/anthropic.d.ts.map +1 -1
  361. package/packages/pi-ai/dist/providers/anthropic.js +18 -1
  362. package/packages/pi-ai/dist/providers/anthropic.js.map +1 -1
  363. package/packages/pi-ai/dist/providers/api-family.d.ts +27 -0
  364. package/packages/pi-ai/dist/providers/api-family.d.ts.map +1 -0
  365. package/packages/pi-ai/dist/providers/api-family.js +47 -0
  366. package/packages/pi-ai/dist/providers/api-family.js.map +1 -0
  367. package/packages/pi-ai/dist/providers/api-family.test.d.ts +2 -0
  368. package/packages/pi-ai/dist/providers/api-family.test.d.ts.map +1 -0
  369. package/packages/pi-ai/dist/providers/api-family.test.js +101 -0
  370. package/packages/pi-ai/dist/providers/api-family.test.js.map +1 -0
  371. package/packages/pi-ai/dist/utils/oauth/openai-codex.d.ts.map +1 -1
  372. package/packages/pi-ai/dist/utils/oauth/openai-codex.js +12 -0
  373. package/packages/pi-ai/dist/utils/oauth/openai-codex.js.map +1 -1
  374. package/packages/pi-ai/package.json +2 -2
  375. package/packages/pi-ai/scripts/generate-models.ts +50 -0
  376. package/packages/pi-ai/src/index.ts +1 -0
  377. package/packages/pi-ai/src/models/capability-patches.ts +5 -2
  378. package/packages/pi-ai/src/models/generated/amazon-bedrock.ts +68 -0
  379. package/packages/pi-ai/src/models/generated/anthropic.ts +17 -0
  380. package/packages/pi-ai/src/models/generated/google-antigravity.ts +17 -0
  381. package/packages/pi-ai/src/models/generated/groq.ts +0 -153
  382. package/packages/pi-ai/src/models/generated/openai-codex.ts +17 -0
  383. package/packages/pi-ai/src/models/generated/openrouter.ts +17 -0
  384. package/packages/pi-ai/src/models.generated.test.ts +17 -0
  385. package/packages/pi-ai/src/providers/amazon-bedrock.test.ts +164 -0
  386. package/packages/pi-ai/src/providers/amazon-bedrock.ts +41 -7
  387. package/packages/pi-ai/src/providers/anthropic-auth.test.ts +47 -1
  388. package/packages/pi-ai/src/providers/anthropic-shared.test.ts +15 -1
  389. package/packages/pi-ai/src/providers/anthropic-shared.ts +36 -3
  390. package/packages/pi-ai/src/providers/anthropic.ts +19 -1
  391. package/packages/pi-ai/src/providers/api-family.test.ts +129 -0
  392. package/packages/pi-ai/src/providers/api-family.ts +57 -0
  393. package/packages/pi-ai/src/utils/oauth/openai-codex.ts +15 -0
  394. package/packages/pi-ai/tsconfig.tsbuildinfo +1 -1
  395. package/packages/pi-coding-agent/dist/cli/args.d.ts +6 -0
  396. package/packages/pi-coding-agent/dist/cli/args.d.ts.map +1 -1
  397. package/packages/pi-coding-agent/dist/cli/args.js +14 -4
  398. package/packages/pi-coding-agent/dist/cli/args.js.map +1 -1
  399. package/packages/pi-coding-agent/dist/cli/args.test.d.ts +2 -0
  400. package/packages/pi-coding-agent/dist/cli/args.test.d.ts.map +1 -0
  401. package/packages/pi-coding-agent/dist/cli/args.test.js +38 -0
  402. package/packages/pi-coding-agent/dist/cli/args.test.js.map +1 -0
  403. package/packages/pi-coding-agent/dist/core/agent-session-abort-order.test.d.ts +2 -0
  404. package/packages/pi-coding-agent/dist/core/agent-session-abort-order.test.d.ts.map +1 -0
  405. package/packages/pi-coding-agent/dist/core/agent-session-abort-order.test.js +38 -0
  406. package/packages/pi-coding-agent/dist/core/agent-session-abort-order.test.js.map +1 -0
  407. package/packages/pi-coding-agent/dist/core/auth-storage.d.ts +14 -0
  408. package/packages/pi-coding-agent/dist/core/auth-storage.d.ts.map +1 -1
  409. package/packages/pi-coding-agent/dist/core/auth-storage.js +34 -0
  410. package/packages/pi-coding-agent/dist/core/auth-storage.js.map +1 -1
  411. package/packages/pi-coding-agent/dist/core/auth-storage.test.js +74 -0
  412. package/packages/pi-coding-agent/dist/core/auth-storage.test.js.map +1 -1
  413. package/packages/pi-coding-agent/dist/core/chat-controller-ordering.test.js +4 -1
  414. package/packages/pi-coding-agent/dist/core/chat-controller-ordering.test.js.map +1 -1
  415. package/packages/pi-coding-agent/dist/core/extensions/runner.d.ts +1 -0
  416. package/packages/pi-coding-agent/dist/core/extensions/runner.d.ts.map +1 -1
  417. package/packages/pi-coding-agent/dist/core/extensions/runner.js.map +1 -1
  418. package/packages/pi-coding-agent/dist/core/extensions/types.d.ts +2 -1
  419. package/packages/pi-coding-agent/dist/core/extensions/types.d.ts.map +1 -1
  420. package/packages/pi-coding-agent/dist/core/extensions/types.js.map +1 -1
  421. package/packages/pi-coding-agent/dist/core/model-registry-auth-mode.test.js +32 -0
  422. package/packages/pi-coding-agent/dist/core/model-registry-auth-mode.test.js.map +1 -1
  423. package/packages/pi-coding-agent/dist/core/retry-handler.d.ts.map +1 -1
  424. package/packages/pi-coding-agent/dist/core/retry-handler.js +4 -1
  425. package/packages/pi-coding-agent/dist/core/retry-handler.js.map +1 -1
  426. package/packages/pi-coding-agent/dist/core/sdk.d.ts +10 -0
  427. package/packages/pi-coding-agent/dist/core/sdk.d.ts.map +1 -1
  428. package/packages/pi-coding-agent/dist/core/sdk.js +39 -1
  429. package/packages/pi-coding-agent/dist/core/sdk.js.map +1 -1
  430. package/packages/pi-coding-agent/dist/core/skill-tool.test.js +2 -2
  431. package/packages/pi-coding-agent/dist/core/skill-tool.test.js.map +1 -1
  432. package/packages/pi-coding-agent/dist/main.d.ts.map +1 -1
  433. package/packages/pi-coding-agent/dist/main.js +3 -0
  434. package/packages/pi-coding-agent/dist/main.js.map +1 -1
  435. package/packages/pi-coding-agent/dist/modes/interactive/components/chat-frame.d.ts.map +1 -1
  436. package/packages/pi-coding-agent/dist/modes/interactive/components/chat-frame.js +17 -7
  437. package/packages/pi-coding-agent/dist/modes/interactive/components/chat-frame.js.map +1 -1
  438. package/packages/pi-coding-agent/dist/modes/interactive/components/footer.d.ts.map +1 -1
  439. package/packages/pi-coding-agent/dist/modes/interactive/components/footer.js +48 -34
  440. package/packages/pi-coding-agent/dist/modes/interactive/components/footer.js.map +1 -1
  441. package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.d.ts +4 -0
  442. package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.d.ts.map +1 -1
  443. package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.js +83 -33
  444. package/packages/pi-coding-agent/dist/modes/interactive/controllers/chat-controller.js.map +1 -1
  445. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme-schema.d.ts +70 -0
  446. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme-schema.d.ts.map +1 -0
  447. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme-schema.js +77 -0
  448. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme-schema.js.map +1 -0
  449. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts +1 -66
  450. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme.d.ts.map +1 -1
  451. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme.js +1 -75
  452. package/packages/pi-coding-agent/dist/modes/interactive/theme/theme.js.map +1 -1
  453. package/packages/pi-coding-agent/dist/modes/interactive/theme/themes.d.ts +1 -1
  454. package/packages/pi-coding-agent/dist/modes/interactive/theme/themes.d.ts.map +1 -1
  455. package/packages/pi-coding-agent/dist/modes/interactive/theme/themes.js +192 -24
  456. package/packages/pi-coding-agent/dist/modes/interactive/theme/themes.js.map +1 -1
  457. package/packages/pi-coding-agent/package.json +1 -1
  458. package/packages/pi-coding-agent/src/cli/args.test.ts +44 -0
  459. package/packages/pi-coding-agent/src/cli/args.ts +21 -6
  460. package/packages/pi-coding-agent/src/core/agent-session-abort-order.test.ts +56 -0
  461. package/packages/pi-coding-agent/src/core/auth-storage.test.ts +83 -0
  462. package/packages/pi-coding-agent/src/core/auth-storage.ts +35 -0
  463. package/packages/pi-coding-agent/src/core/chat-controller-ordering.test.ts +4 -1
  464. package/packages/pi-coding-agent/src/core/extensions/runner.ts +4 -1
  465. package/packages/pi-coding-agent/src/core/extensions/types.ts +2 -2
  466. package/packages/pi-coding-agent/src/core/model-registry-auth-mode.test.ts +37 -1
  467. package/packages/pi-coding-agent/src/core/retry-handler.ts +4 -1
  468. package/packages/pi-coding-agent/src/core/sdk.ts +58 -1
  469. package/packages/pi-coding-agent/src/core/skill-tool.test.ts +2 -2
  470. package/packages/pi-coding-agent/src/main.ts +4 -0
  471. package/packages/pi-coding-agent/src/modes/interactive/components/chat-frame.ts +19 -7
  472. package/packages/pi-coding-agent/src/modes/interactive/components/footer.ts +53 -31
  473. package/packages/pi-coding-agent/src/modes/interactive/controllers/chat-controller.ts +88 -36
  474. package/packages/pi-coding-agent/src/modes/interactive/theme/theme-schema.ts +83 -0
  475. package/packages/pi-coding-agent/src/modes/interactive/theme/theme.ts +2 -83
  476. package/packages/pi-coding-agent/src/modes/interactive/theme/themes.ts +208 -27
  477. package/packages/pi-coding-agent/tsconfig.tsbuildinfo +1 -1
  478. package/packages/pi-tui/package.json +1 -1
  479. package/packages/pi-tui/tsconfig.tsbuildinfo +1 -1
  480. package/packages/rpc-client/package.json +1 -1
  481. package/packages/rpc-client/tsconfig.tsbuildinfo +1 -1
  482. package/pkg/dist/modes/interactive/theme/theme-schema.d.ts +70 -0
  483. package/pkg/dist/modes/interactive/theme/theme-schema.d.ts.map +1 -0
  484. package/pkg/dist/modes/interactive/theme/theme-schema.js +77 -0
  485. package/pkg/dist/modes/interactive/theme/theme-schema.js.map +1 -0
  486. package/pkg/dist/modes/interactive/theme/theme.d.ts +1 -66
  487. package/pkg/dist/modes/interactive/theme/theme.d.ts.map +1 -1
  488. package/pkg/dist/modes/interactive/theme/theme.js +1 -75
  489. package/pkg/dist/modes/interactive/theme/theme.js.map +1 -1
  490. package/pkg/dist/modes/interactive/theme/themes.d.ts +1 -1
  491. package/pkg/dist/modes/interactive/theme/themes.d.ts.map +1 -1
  492. package/pkg/dist/modes/interactive/theme/themes.js +192 -24
  493. package/pkg/dist/modes/interactive/theme/themes.js.map +1 -1
  494. package/pkg/package.json +1 -1
  495. package/src/resources/extensions/ask-user-questions.ts +24 -6
  496. package/src/resources/extensions/claude-code-cli/models.ts +9 -0
  497. package/src/resources/extensions/claude-code-cli/readiness.ts +13 -2
  498. package/src/resources/extensions/claude-code-cli/stream-adapter.ts +94 -4
  499. package/src/resources/extensions/claude-code-cli/tests/stream-adapter.test.ts +84 -0
  500. package/src/resources/extensions/gsd/auto/detect-stuck.ts +10 -0
  501. package/src/resources/extensions/gsd/auto/loop-deps.ts +2 -9
  502. package/src/resources/extensions/gsd/auto/loop.ts +109 -3
  503. package/src/resources/extensions/gsd/auto/phases.ts +97 -60
  504. package/src/resources/extensions/gsd/auto/resolve.ts +1 -1
  505. package/src/resources/extensions/gsd/auto/run-unit.ts +11 -1
  506. package/src/resources/extensions/gsd/auto/session.ts +7 -0
  507. package/src/resources/extensions/gsd/auto-artifact-paths.ts +20 -0
  508. package/src/resources/extensions/gsd/auto-dashboard.ts +46 -5
  509. package/src/resources/extensions/gsd/auto-direct-dispatch.ts +15 -2
  510. package/src/resources/extensions/gsd/auto-dispatch.ts +141 -9
  511. package/src/resources/extensions/gsd/auto-loop.ts +1 -1
  512. package/src/resources/extensions/gsd/auto-model-selection.ts +17 -4
  513. package/src/resources/extensions/gsd/auto-post-unit.ts +10 -8
  514. package/src/resources/extensions/gsd/auto-prompts.ts +232 -47
  515. package/src/resources/extensions/gsd/auto-recovery.ts +63 -1
  516. package/src/resources/extensions/gsd/auto-start.ts +8 -6
  517. package/src/resources/extensions/gsd/auto-verification.ts +3 -3
  518. package/src/resources/extensions/gsd/auto-worktree.ts +81 -1
  519. package/src/resources/extensions/gsd/auto.ts +61 -28
  520. package/src/resources/extensions/gsd/bootstrap/agent-end-recovery.ts +8 -21
  521. package/src/resources/extensions/gsd/bootstrap/db-tools.ts +46 -24
  522. package/src/resources/extensions/gsd/bootstrap/memory-tools.ts +158 -0
  523. package/src/resources/extensions/gsd/bootstrap/query-tools.ts +31 -0
  524. package/src/resources/extensions/gsd/bootstrap/register-extension.ts +2 -0
  525. package/src/resources/extensions/gsd/bootstrap/register-hooks.ts +22 -0
  526. package/src/resources/extensions/gsd/bootstrap/system-context.ts +20 -4
  527. package/src/resources/extensions/gsd/commands/catalog.ts +74 -9
  528. package/src/resources/extensions/gsd/commands/handlers/core.ts +69 -27
  529. package/src/resources/extensions/gsd/commands/handlers/escalate.ts +216 -0
  530. package/src/resources/extensions/gsd/commands/handlers/onboarding.ts +196 -0
  531. package/src/resources/extensions/gsd/commands/handlers/ops.ts +21 -0
  532. package/src/resources/extensions/gsd/commands/handlers/workflow.ts +279 -29
  533. package/src/resources/extensions/gsd/commands-cmux.ts +6 -2
  534. package/src/resources/extensions/gsd/commands-config.ts +10 -0
  535. package/src/resources/extensions/gsd/commands-debug.ts +484 -0
  536. package/src/resources/extensions/gsd/commands-do.ts +1 -0
  537. package/src/resources/extensions/gsd/commands-extract-learnings.ts +295 -76
  538. package/src/resources/extensions/gsd/commands-handlers.ts +19 -2
  539. package/src/resources/extensions/gsd/commands-memory.ts +551 -0
  540. package/src/resources/extensions/gsd/commands-prefs-wizard.ts +49 -12
  541. package/src/resources/extensions/gsd/commands-scan.ts +125 -0
  542. package/src/resources/extensions/gsd/commands-workflow-templates.ts +129 -2
  543. package/src/resources/extensions/gsd/custom-workflow-engine.ts +85 -60
  544. package/src/resources/extensions/gsd/db-writer.ts +3 -0
  545. package/src/resources/extensions/gsd/debug-session-store.ts +377 -0
  546. package/src/resources/extensions/gsd/definition-loader.ts +7 -0
  547. package/src/resources/extensions/gsd/docs/preferences-reference.md +9 -9
  548. package/src/resources/extensions/gsd/doctor-environment.ts +2 -1
  549. package/src/resources/extensions/gsd/doctor-git-checks.ts +28 -3
  550. package/src/resources/extensions/gsd/doctor-proactive.ts +4 -1
  551. package/src/resources/extensions/gsd/doctor-providers.ts +52 -22
  552. package/src/resources/extensions/gsd/doctor-runtime-checks.ts +23 -4
  553. package/src/resources/extensions/gsd/doctor-types.ts +1 -0
  554. package/src/resources/extensions/gsd/doctor.ts +7 -1
  555. package/src/resources/extensions/gsd/error-classifier.ts +6 -3
  556. package/src/resources/extensions/gsd/escalation.ts +367 -0
  557. package/src/resources/extensions/gsd/forensics.ts +25 -29
  558. package/src/resources/extensions/gsd/git-service.ts +0 -1
  559. package/src/resources/extensions/gsd/graph.ts +33 -3
  560. package/src/resources/extensions/gsd/gsd-db.ts +578 -32
  561. package/src/resources/extensions/gsd/health-widget-core.ts +43 -14
  562. package/src/resources/extensions/gsd/health-widget.ts +7 -3
  563. package/src/resources/extensions/gsd/init-wizard.ts +87 -54
  564. package/src/resources/extensions/gsd/markdown-renderer.ts +5 -5
  565. package/src/resources/extensions/gsd/memory-embeddings.ts +235 -0
  566. package/src/resources/extensions/gsd/memory-extractor.ts +100 -34
  567. package/src/resources/extensions/gsd/memory-ingest.ts +286 -0
  568. package/src/resources/extensions/gsd/memory-relations.ts +240 -0
  569. package/src/resources/extensions/gsd/memory-source-store.ts +138 -0
  570. package/src/resources/extensions/gsd/memory-store.ts +351 -7
  571. package/src/resources/extensions/gsd/metrics.ts +1 -0
  572. package/src/resources/extensions/gsd/model-cost-table.ts +3 -1
  573. package/src/resources/extensions/gsd/model-router.ts +25 -6
  574. package/src/resources/extensions/gsd/native-git-bridge.ts +134 -6
  575. package/src/resources/extensions/gsd/notification-overlay.ts +9 -19
  576. package/src/resources/extensions/gsd/notification-widget.ts +25 -43
  577. package/src/resources/extensions/gsd/notifications.ts +6 -0
  578. package/src/resources/extensions/gsd/onboarding-state.ts +146 -0
  579. package/src/resources/extensions/gsd/post-execution-checks.ts +37 -14
  580. package/src/resources/extensions/gsd/pre-execution-checks.ts +106 -12
  581. package/src/resources/extensions/gsd/preferences-models.ts +1 -0
  582. package/src/resources/extensions/gsd/preferences-types.ts +10 -2
  583. package/src/resources/extensions/gsd/preferences-validation.ts +33 -7
  584. package/src/resources/extensions/gsd/preferences.ts +10 -10
  585. package/src/resources/extensions/gsd/prompts/add-tests.md +1 -0
  586. package/src/resources/extensions/gsd/prompts/complete-milestone.md +4 -1
  587. package/src/resources/extensions/gsd/prompts/debug-diagnose.md +25 -0
  588. package/src/resources/extensions/gsd/prompts/debug-session-manager.md +80 -0
  589. package/src/resources/extensions/gsd/prompts/execute-task.md +13 -1
  590. package/src/resources/extensions/gsd/prompts/plan-milestone.md +12 -0
  591. package/src/resources/extensions/gsd/prompts/plan-slice.md +1 -0
  592. package/src/resources/extensions/gsd/prompts/refine-slice.md +69 -0
  593. package/src/resources/extensions/gsd/prompts/scan.md +79 -0
  594. package/src/resources/extensions/gsd/prompts/workflow-oneshot.md +26 -0
  595. package/src/resources/extensions/gsd/python-resolver.ts +76 -0
  596. package/src/resources/extensions/gsd/run-manager.ts +53 -19
  597. package/src/resources/extensions/gsd/setup-catalog.ts +105 -0
  598. package/src/resources/extensions/gsd/state.ts +50 -2
  599. package/src/resources/extensions/gsd/templates/PREFERENCES.md +7 -7
  600. package/src/resources/extensions/gsd/tests/agent-end-retry.test.ts +1 -34
  601. package/src/resources/extensions/gsd/tests/artifact-corruption-2630.test.ts +7 -0
  602. package/src/resources/extensions/gsd/tests/auto-dashboard.test.ts +49 -0
  603. package/src/resources/extensions/gsd/tests/auto-loop.test.ts +45 -31
  604. package/src/resources/extensions/gsd/tests/auto-migrating-recovery.test.ts +63 -0
  605. package/src/resources/extensions/gsd/tests/auto-model-selection.test.ts +12 -0
  606. package/src/resources/extensions/gsd/tests/auto-prompts-fallback.test.ts +35 -0
  607. package/src/resources/extensions/gsd/tests/auto-recovery.test.ts +123 -1
  608. package/src/resources/extensions/gsd/tests/auto-wrapup-inflight-guard.test.ts +39 -0
  609. package/src/resources/extensions/gsd/tests/autocomplete-regressions-1675.test.ts +39 -0
  610. package/src/resources/extensions/gsd/tests/commands-do.test.ts +48 -0
  611. package/src/resources/extensions/gsd/tests/commands-extract-learnings.test.ts +333 -21
  612. package/src/resources/extensions/gsd/tests/commands-scan.test.ts +351 -0
  613. package/src/resources/extensions/gsd/tests/commands-workflow-custom.test.ts +8 -6
  614. package/src/resources/extensions/gsd/tests/complete-slice.test.ts +6 -8
  615. package/src/resources/extensions/gsd/tests/complete-task.test.ts +2 -2
  616. package/src/resources/extensions/gsd/tests/custom-workflow-engine.test.ts +63 -0
  617. package/src/resources/extensions/gsd/tests/debug-command-handler.test.ts +905 -0
  618. package/src/resources/extensions/gsd/tests/debug-command-lifecycle.integration.test.ts +1229 -0
  619. package/src/resources/extensions/gsd/tests/debug-session-store.test.ts +565 -0
  620. package/src/resources/extensions/gsd/tests/discuss-milestone-structured-questions.test.ts +64 -0
  621. package/src/resources/extensions/gsd/tests/dispatch-complete-milestone-guard.test.ts +67 -0
  622. package/src/resources/extensions/gsd/tests/doctor-providers.test.ts +62 -18
  623. package/src/resources/extensions/gsd/tests/enhanced-verification-integration.test.ts +5 -0
  624. package/src/resources/extensions/gsd/tests/escalation.test.ts +818 -0
  625. package/src/resources/extensions/gsd/tests/finalize-timeout-guard.test.ts +29 -12
  626. package/src/resources/extensions/gsd/tests/flat-rate-routing-guard.test.ts +106 -0
  627. package/src/resources/extensions/gsd/tests/forensics-hook-key-parse.test.ts +74 -0
  628. package/src/resources/extensions/gsd/tests/graph-operations.test.ts +0 -4
  629. package/src/resources/extensions/gsd/tests/gsd-db.test.ts +44 -1
  630. package/src/resources/extensions/gsd/tests/health-widget.test.ts +8 -2
  631. package/src/resources/extensions/gsd/tests/init-prefs-routing.test.ts +190 -0
  632. package/src/resources/extensions/gsd/tests/integration/doctor-git-symlink-cwd.test.ts +79 -0
  633. package/src/resources/extensions/gsd/tests/integration/doctor-git.test.ts +39 -0
  634. package/src/resources/extensions/gsd/tests/integration/doctor-proactive.test.ts +44 -0
  635. package/src/resources/extensions/gsd/tests/integration/doctor-runtime.test.ts +68 -1
  636. package/src/resources/extensions/gsd/tests/integration/git-service.test.ts +109 -11
  637. package/src/resources/extensions/gsd/tests/integration/idle-recovery.test.ts +51 -0
  638. package/src/resources/extensions/gsd/tests/integration/integration-proof.test.ts +2 -2
  639. package/src/resources/extensions/gsd/tests/integration/test-isolation.ts +53 -0
  640. package/src/resources/extensions/gsd/tests/journal-integration.test.ts +171 -1
  641. package/src/resources/extensions/gsd/tests/md-importer.test.ts +1 -1
  642. package/src/resources/extensions/gsd/tests/memory-embeddings.test.ts +213 -0
  643. package/src/resources/extensions/gsd/tests/memory-ingest.test.ts +153 -0
  644. package/src/resources/extensions/gsd/tests/memory-maintenance.test.ts +107 -0
  645. package/src/resources/extensions/gsd/tests/memory-relations.test.ts +175 -0
  646. package/src/resources/extensions/gsd/tests/memory-store.test.ts +2 -2
  647. package/src/resources/extensions/gsd/tests/memory-tools.test.ts +295 -0
  648. package/src/resources/extensions/gsd/tests/milestone-status-tool.test.ts +3 -2
  649. package/src/resources/extensions/gsd/tests/model-cost-table.test.ts +2 -2
  650. package/src/resources/extensions/gsd/tests/model-router.test.ts +51 -1
  651. package/src/resources/extensions/gsd/tests/model-unittype-mapping.test.ts +59 -0
  652. package/src/resources/extensions/gsd/tests/notification-overlay.test.ts +56 -37
  653. package/src/resources/extensions/gsd/tests/notification-widget.test.ts +1 -1
  654. package/src/resources/extensions/gsd/tests/onboarding-state.test.ts +105 -0
  655. package/src/resources/extensions/gsd/tests/plan-milestone-boundary-map-preservation.test.ts +114 -0
  656. package/src/resources/extensions/gsd/tests/plan-milestone.test.ts +4 -5
  657. package/src/resources/extensions/gsd/tests/plan-slice.test.ts +17 -0
  658. package/src/resources/extensions/gsd/tests/post-execution-checks.test.ts +105 -1
  659. package/src/resources/extensions/gsd/tests/pre-execution-checks.test.ts +341 -6
  660. package/src/resources/extensions/gsd/tests/preferences.test.ts +69 -1
  661. package/src/resources/extensions/gsd/tests/progressive-planning.test.ts +539 -0
  662. package/src/resources/extensions/gsd/tests/projection-no-plan-overwrite.test.ts +11 -2
  663. package/src/resources/extensions/gsd/tests/projection-regression.test.ts +7 -0
  664. package/src/resources/extensions/gsd/tests/prompt-budget-enforcement.test.ts +159 -8
  665. package/src/resources/extensions/gsd/tests/prompt-contracts.test.ts +24 -0
  666. package/src/resources/extensions/gsd/tests/prompt-db.test.ts +1 -1
  667. package/src/resources/extensions/gsd/tests/prompts-no-gitignored-test-refs.test.ts +56 -0
  668. package/src/resources/extensions/gsd/tests/provider-errors.test.ts +33 -0
  669. package/src/resources/extensions/gsd/tests/python-resolver.test.ts +131 -0
  670. package/src/resources/extensions/gsd/tests/register-hooks-depth-verification.test.ts +67 -0
  671. package/src/resources/extensions/gsd/tests/remote-notification-from-desktop.test.ts +107 -0
  672. package/src/resources/extensions/gsd/tests/requirements.test.ts +9 -0
  673. package/src/resources/extensions/gsd/tests/session-start-footer.test.ts +153 -0
  674. package/src/resources/extensions/gsd/tests/skip-slice-cascades-tasks.test.ts +125 -0
  675. package/src/resources/extensions/gsd/tests/slice-context-injection.test.ts +16 -4
  676. package/src/resources/extensions/gsd/tests/stash-queued-context-files.test.ts +54 -0
  677. package/src/resources/extensions/gsd/tests/state-corruption-2945.test.ts +3 -0
  678. package/src/resources/extensions/gsd/tests/stuck-detection-coverage.test.ts +15 -0
  679. package/src/resources/extensions/gsd/tests/summary-render-parity.test.ts +5 -0
  680. package/src/resources/extensions/gsd/tests/uok-contracts.test.ts +2 -1
  681. package/src/resources/extensions/gsd/tests/uok-flags.test.ts +31 -1
  682. package/src/resources/extensions/gsd/tests/uok-kernel-path.test.ts +166 -0
  683. package/src/resources/extensions/gsd/tests/verification-gate.test.ts +35 -0
  684. package/src/resources/extensions/gsd/tests/workflow-install.test.ts +113 -0
  685. package/src/resources/extensions/gsd/tests/workflow-logger-wiring.test.ts +15 -6
  686. package/src/resources/extensions/gsd/tests/workflow-mcp.test.ts +2 -2
  687. package/src/resources/extensions/gsd/tests/workflow-plugins.test.ts +310 -0
  688. package/src/resources/extensions/gsd/tests/workflow-projections.test.ts +7 -0
  689. package/src/resources/extensions/gsd/tests/workflow-templates.test.ts +8 -2
  690. package/src/resources/extensions/gsd/tests/workflow-tool-executors.test.ts +97 -0
  691. package/src/resources/extensions/gsd/tests/worktree-journal-events.test.ts +2 -1
  692. package/src/resources/extensions/gsd/tests/worktree-resolver.test.ts +77 -2
  693. package/src/resources/extensions/gsd/tools/complete-task.ts +87 -0
  694. package/src/resources/extensions/gsd/tools/memory-tools.ts +380 -0
  695. package/src/resources/extensions/gsd/tools/plan-milestone.ts +42 -8
  696. package/src/resources/extensions/gsd/tools/plan-slice.ts +6 -1
  697. package/src/resources/extensions/gsd/tools/skip-slice.ts +133 -0
  698. package/src/resources/extensions/gsd/tools/workflow-tool-executors.ts +14 -0
  699. package/src/resources/extensions/gsd/types.ts +62 -0
  700. package/src/resources/extensions/gsd/unit-runtime.ts +1 -0
  701. package/src/resources/extensions/gsd/uok/contracts.ts +2 -1
  702. package/src/resources/extensions/gsd/uok/flags.ts +7 -7
  703. package/src/resources/extensions/gsd/uok/kernel.ts +16 -4
  704. package/src/resources/extensions/gsd/verification-gate.ts +2 -1
  705. package/src/resources/extensions/gsd/workflow-dispatch.ts +106 -0
  706. package/src/resources/extensions/gsd/workflow-install.ts +423 -0
  707. package/src/resources/extensions/gsd/workflow-logger.ts +3 -1
  708. package/src/resources/extensions/gsd/workflow-manifest.ts +8 -0
  709. package/src/resources/extensions/gsd/workflow-mcp.ts +1 -6
  710. package/src/resources/extensions/gsd/workflow-plugins.ts +403 -0
  711. package/src/resources/extensions/gsd/workflow-projections.ts +18 -16
  712. package/src/resources/extensions/gsd/workflow-templates/accessibility-audit.md +88 -0
  713. package/src/resources/extensions/gsd/workflow-templates/api-breaking-change.md +117 -0
  714. package/src/resources/extensions/gsd/workflow-templates/bugfix.md +1 -0
  715. package/src/resources/extensions/gsd/workflow-templates/changelog-gen.md +82 -0
  716. package/src/resources/extensions/gsd/workflow-templates/ci-bootstrap.md +144 -0
  717. package/src/resources/extensions/gsd/workflow-templates/dead-code.md +81 -0
  718. package/src/resources/extensions/gsd/workflow-templates/dep-upgrade.md +1 -0
  719. package/src/resources/extensions/gsd/workflow-templates/docs-sync.yaml +76 -0
  720. package/src/resources/extensions/gsd/workflow-templates/env-audit.yaml +88 -0
  721. package/src/resources/extensions/gsd/workflow-templates/full-project.md +1 -0
  722. package/src/resources/extensions/gsd/workflow-templates/hotfix.md +1 -0
  723. package/src/resources/extensions/gsd/workflow-templates/issue-triage.md +84 -0
  724. package/src/resources/extensions/gsd/workflow-templates/observability-setup.md +133 -0
  725. package/src/resources/extensions/gsd/workflow-templates/onboarding-check.md +74 -0
  726. package/src/resources/extensions/gsd/workflow-templates/performance-audit.md +125 -0
  727. package/src/resources/extensions/gsd/workflow-templates/pr-review.md +67 -0
  728. package/src/resources/extensions/gsd/workflow-templates/pr-triage.md +83 -0
  729. package/src/resources/extensions/gsd/workflow-templates/refactor.md +1 -0
  730. package/src/resources/extensions/gsd/workflow-templates/registry.json +184 -0
  731. package/src/resources/extensions/gsd/workflow-templates/release.md +118 -0
  732. package/src/resources/extensions/gsd/workflow-templates/rename-symbol.yaml +99 -0
  733. package/src/resources/extensions/gsd/workflow-templates/security-audit.md +1 -0
  734. package/src/resources/extensions/gsd/workflow-templates/small-feature.md +1 -0
  735. package/src/resources/extensions/gsd/workflow-templates/spike.md +1 -0
  736. package/src/resources/extensions/gsd/workflow-templates/test-backfill.yaml +73 -0
  737. package/src/resources/extensions/gsd/workflow-templates.ts +7 -0
  738. package/src/resources/extensions/gsd/workspace-index.ts +9 -4
  739. package/src/resources/extensions/gsd/worktree-resolver.ts +47 -1
  740. package/src/resources/extensions/remote-questions/commands.ts +480 -0
  741. package/src/resources/extensions/remote-questions/manager.ts +49 -4
  742. package/src/resources/extensions/remote-questions/telegram-adapter.ts +86 -4
  743. package/src/resources/extensions/remote-questions/tests/command-polling.test.ts +246 -0
  744. package/src/resources/extensions/remote-questions/tests/remote-answer-normalization.test.ts +92 -0
  745. package/src/resources/extensions/remote-questions/tests/telegram-commands.test.ts +267 -0
  746. package/src/resources/extensions/search-the-web/command-search-provider.ts +4 -1
  747. package/src/resources/extensions/search-the-web/native-search.ts +13 -3
  748. package/src/resources/extensions/shared/interview-ui.ts +195 -1
  749. package/src/resources/extensions/shared/layout-utils.ts +26 -0
  750. package/src/resources/extensions/shared/rtk-shared.ts +58 -0
  751. package/src/resources/extensions/shared/rtk.ts +12 -52
  752. package/src/resources/extensions/shared/tests/interview-preview.test.ts +177 -0
  753. package/src/resources/extensions/shared/tests/preview-layout.test.ts +120 -0
  754. package/src/resources/skills/create-workflow/SKILL.md +33 -6
  755. package/dist/web/standalone/.next/static/chunks/2826.dd3dc8bbd3025fa5.js +0 -9
  756. package/dist/web/standalone/.next/static/css/f6e8833d46e738d8.css +0 -1
  757. package/packages/native/dist/ps/types.d.ts +0 -5
  758. package/packages/native/dist/ps/types.js +0 -2
  759. package/packages/native/src/ps/types.ts +0 -5
  760. package/packages/pi-ai/node_modules/@smithy/node-http-handler/LICENSE +0 -201
  761. package/packages/pi-ai/node_modules/@smithy/node-http-handler/README.md +0 -9
  762. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-cjs/index.js +0 -762
  763. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/build-abort-error.js +0 -19
  764. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/constants.js +0 -1
  765. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +0 -9
  766. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/index.js +0 -3
  767. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +0 -230
  768. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +0 -87
  769. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +0 -32
  770. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +0 -169
  771. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -21
  772. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
  773. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +0 -36
  774. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +0 -21
  775. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +0 -22
  776. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +0 -23
  777. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -8
  778. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
  779. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -21
  780. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/timing.js +0 -4
  781. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +0 -63
  782. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/build-abort-error.d.ts +0 -10
  783. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +0 -5
  784. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +0 -4
  785. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +0 -3
  786. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +0 -46
  787. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +0 -24
  788. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +0 -12
  789. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +0 -63
  790. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -13
  791. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
  792. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +0 -2
  793. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +0 -6
  794. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +0 -6
  795. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +0 -2
  796. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
  797. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
  798. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -13
  799. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +0 -8
  800. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/build-abort-error.d.ts +0 -10
  801. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -5
  802. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -4
  803. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +0 -3
  804. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -46
  805. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -24
  806. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -12
  807. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -63
  808. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -13
  809. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -12
  810. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
  811. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +0 -6
  812. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
  813. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
  814. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -5
  815. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -6
  816. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -13
  817. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
  818. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -12
  819. package/packages/pi-ai/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +0 -12
  820. package/packages/pi-ai/node_modules/@smithy/node-http-handler/package.json +0 -68
  821. package/packages/pi-ai/oauth.d.ts +0 -1
  822. package/packages/pi-ai/oauth.js +0 -1
  823. /package/dist/web/standalone/.next/static/{prkokVQFxWtUVIku57_0z → ssX7BLv3Dw9Fb4CtrCGeR}/_buildManifest.js +0 -0
  824. /package/dist/web/standalone/.next/static/{prkokVQFxWtUVIku57_0z → ssX7BLv3Dw9Fb4CtrCGeR}/_ssgManifest.js +0 -0
@@ -9,6 +9,16 @@ export declare function compareSemver(a: string, b: string): number;
9
9
  export declare function readUpdateCache(cachePath?: string): UpdateCheckCache | null;
10
10
  export declare function writeUpdateCache(cache: UpdateCheckCache, cachePath?: string): void;
11
11
  export declare function fetchLatestVersionFromRegistry(registryUrl?: string, fetchTimeoutMs?: number): Promise<string | null>;
12
+ /**
13
+ * Detects whether the currently-running gsd binary was installed via `bun add -g`.
14
+ *
15
+ * Bun's global bin entries on macOS/Linux are plain symlinks that point at the
16
+ * package's bin file. The OS honors the target file's shebang, so a bin with
17
+ * `#!/usr/bin/env node` runs under Node and `process.versions.bun` is undefined
18
+ * — even though the binary was installed by bun. Checking the runtime alone
19
+ * (PR #4147) misses this path. Inspect the unresolved invocation path instead.
20
+ */
21
+ export declare function isBunInstall(argv1?: string | undefined): boolean;
12
22
  export declare function resolveInstallCommand(pkg: string): string;
13
23
  export interface UpdateCheckOptions {
14
24
  currentVersion?: string;
@@ -1,5 +1,6 @@
1
1
  import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'node:fs';
2
- import { dirname, join } from 'node:path';
2
+ import { dirname, join, resolve as resolvePath, sep } from 'node:path';
3
+ import { homedir } from 'node:os';
3
4
  import chalk from 'chalk';
4
5
  import { appRoot } from './app-paths.js';
5
6
  import { execSync } from 'node:child_process';
@@ -66,10 +67,30 @@ export async function fetchLatestVersionFromRegistry(registryUrl = DEFAULT_REGIS
66
67
  clearTimeout(timeout);
67
68
  }
68
69
  }
70
+ /**
71
+ * Detects whether the currently-running gsd binary was installed via `bun add -g`.
72
+ *
73
+ * Bun's global bin entries on macOS/Linux are plain symlinks that point at the
74
+ * package's bin file. The OS honors the target file's shebang, so a bin with
75
+ * `#!/usr/bin/env node` runs under Node and `process.versions.bun` is undefined
76
+ * — even though the binary was installed by bun. Checking the runtime alone
77
+ * (PR #4147) misses this path. Inspect the unresolved invocation path instead.
78
+ */
79
+ export function isBunInstall(argv1 = process.argv[1]) {
80
+ if ('bun' in process.versions)
81
+ return true;
82
+ if (!argv1)
83
+ return false;
84
+ const bunBinDirs = [];
85
+ if (process.env.BUN_INSTALL)
86
+ bunBinDirs.push(join(process.env.BUN_INSTALL, 'bin'));
87
+ bunBinDirs.push(join(homedir(), '.bun', 'bin'));
88
+ const resolved = resolvePath(argv1);
89
+ return bunBinDirs.some((dir) => resolved.startsWith(resolvePath(dir) + sep));
90
+ }
69
91
  export function resolveInstallCommand(pkg) {
70
- if ('bun' in process.versions) {
92
+ if (isBunInstall())
71
93
  return `bun add -g ${pkg}`;
72
- }
73
94
  return `npm install -g ${pkg}`;
74
95
  }
75
96
  function printUpdateBanner(current, latest) {
@@ -1 +1 @@
1
- prkokVQFxWtUVIku57_0z
1
+ ssX7BLv3Dw9Fb4CtrCGeR
@@ -2,36 +2,36 @@
2
2
  "/_not-found/page": "/_not-found",
3
3
  "/_global-error/page": "/_global-error",
4
4
  "/api/boot/route": "/api/boot",
5
- "/api/bridge-terminal/input/route": "/api/bridge-terminal/input",
6
5
  "/api/bridge-terminal/resize/route": "/api/bridge-terminal/resize",
7
- "/api/cleanup/route": "/api/cleanup",
8
- "/api/captures/route": "/api/captures",
6
+ "/api/bridge-terminal/input/route": "/api/bridge-terminal/input",
7
+ "/api/bridge-terminal/stream/route": "/api/bridge-terminal/stream",
9
8
  "/api/dev-mode/route": "/api/dev-mode",
10
- "/api/browse-directories/route": "/api/browse-directories",
9
+ "/api/cleanup/route": "/api/cleanup",
11
10
  "/api/doctor/route": "/api/doctor",
12
11
  "/api/export-data/route": "/api/export-data",
13
- "/api/bridge-terminal/stream/route": "/api/bridge-terminal/stream",
12
+ "/api/captures/route": "/api/captures",
14
13
  "/api/forensics/route": "/api/forensics",
15
- "/api/experimental/route": "/api/experimental",
16
14
  "/api/git/route": "/api/git",
17
15
  "/api/history/route": "/api/history",
16
+ "/api/experimental/route": "/api/experimental",
18
17
  "/api/hooks/route": "/api/hooks",
18
+ "/api/browse-directories/route": "/api/browse-directories",
19
19
  "/api/inspect/route": "/api/inspect",
20
20
  "/api/knowledge/route": "/api/knowledge",
21
21
  "/api/live-state/route": "/api/live-state",
22
22
  "/api/notifications/route": "/api/notifications",
23
- "/api/onboarding/route": "/api/onboarding",
23
+ "/api/preferences/route": "/api/preferences",
24
24
  "/api/recovery/route": "/api/recovery",
25
- "/api/files/route": "/api/files",
26
25
  "/api/projects/route": "/api/projects",
27
- "/api/preferences/route": "/api/preferences",
26
+ "/api/files/route": "/api/files",
27
+ "/api/onboarding/route": "/api/onboarding",
28
28
  "/api/session/browser/route": "/api/session/browser",
29
29
  "/api/session/command/route": "/api/session/command",
30
30
  "/api/settings-data/route": "/api/settings-data",
31
- "/api/shutdown/route": "/api/shutdown",
32
31
  "/api/session/manage/route": "/api/session/manage",
33
- "/api/skill-health/route": "/api/skill-health",
32
+ "/api/shutdown/route": "/api/shutdown",
34
33
  "/api/session/events/route": "/api/session/events",
34
+ "/api/skill-health/route": "/api/skill-health",
35
35
  "/api/steer/route": "/api/steer",
36
36
  "/api/terminal/input/route": "/api/terminal/input",
37
37
  "/api/terminal/resize/route": "/api/terminal/resize",
@@ -39,9 +39,9 @@
39
39
  "/api/terminal/sessions/route": "/api/terminal/sessions",
40
40
  "/api/remote-questions/route": "/api/remote-questions",
41
41
  "/api/terminal/stream/route": "/api/terminal/stream",
42
- "/api/terminal/upload/route": "/api/terminal/upload",
42
+ "/api/undo/route": "/api/undo",
43
43
  "/api/visualizer/route": "/api/visualizer",
44
44
  "/api/update/route": "/api/update",
45
- "/api/undo/route": "/api/undo",
45
+ "/api/terminal/upload/route": "/api/terminal/upload",
46
46
  "/page": "/"
47
47
  }
@@ -4,11 +4,11 @@
4
4
  ],
5
5
  "devFiles": [],
6
6
  "lowPriorityFiles": [
7
- "static/prkokVQFxWtUVIku57_0z/_buildManifest.js",
8
- "static/prkokVQFxWtUVIku57_0z/_ssgManifest.js"
7
+ "static/ssX7BLv3Dw9Fb4CtrCGeR/_buildManifest.js",
8
+ "static/ssX7BLv3Dw9Fb4CtrCGeR/_ssgManifest.js"
9
9
  ],
10
10
  "rootMainFiles": [
11
- "static/chunks/webpack-b868033a5834586d.js",
11
+ "static/chunks/webpack-5fc74f13a25fa1bb.js",
12
12
  "static/chunks/4bd1b696-e356ca5ba0218e27.js",
13
13
  "static/chunks/3794-42fdce068d44fa4f.js",
14
14
  "static/chunks/main-app-d3d4c336195465f9.js"
@@ -5,8 +5,8 @@
5
5
  "static/css/659eccb5db697b76.css",
6
6
  "static/chunks/363642f4.cf8b455e0d94b478.js",
7
7
  "static/chunks/4986-c2fc8845ce785303.js",
8
- "static/chunks/2008.71ee9230ad78df21.js",
9
- "static/chunks/2826.dd3dc8bbd3025fa5.js"
8
+ "static/chunks/3621.fc7480022c972438.js",
9
+ "static/chunks/2826.e59e8578e2e28639.js"
10
10
  ]
11
11
  },
12
12
  "components/gsd/chat-mode.tsx -> react-markdown": {
@@ -166,7 +166,7 @@
166
166
  "proxyPrefetch": "flexible",
167
167
  "optimisticClientCache": true,
168
168
  "manualClientBasePath": false,
169
- "cpus": 5,
169
+ "cpus": 9,
170
170
  "memoryBasedWorkersCount": false,
171
171
  "imgOptConcurrency": null,
172
172
  "imgOptTimeoutInSeconds": 7,
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_global-error/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"21942":{"*":{"id":"8550","name":"*","chunks":[],"async":false}},"27123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"57121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"61304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"61549":{"*":{"id":"9703","name":"*","chunks":[],"async":false}},"64777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"66919":{"*":{"id":"5720","name":"*","chunks":[],"async":false}},"74581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"78616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"86869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"90484":{"*":{"id":"664","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/builtin/global-error.js":{"id":27123,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":27123,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/client-page.js":{"id":61304,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/client-page.js":{"id":61304,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/client-segment.js":{"id":78616,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/client-segment.js":{"id":78616,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":64777,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":64777,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/layout-router.js":{"id":57121,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/layout-router.js":{"id":57121,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/render-from-template-context.js":{"id":74581,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":74581,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/lib/framework/boundary-components.js":{"id":90484,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":90484,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":86869,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":86869,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/components/theme-provider.tsx":{"id":21942,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/components/ui/sonner.tsx":{"id":61549,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-geist-sans\"}],\"variableName\":\"geistSans\"}":{"id":85048,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-geist-mono\"}],\"variableName\":\"geistMono\"}":{"id":35696,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/app/globals.css":{"id":66872,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/app/page.tsx":{"id":66919,"name":"*","chunks":["8974","static/chunks/app/page-7115e62689b5fd84.js"],"async":false}},"entryCSSFiles":{"/home/runner/_work/gsd-2/gsd-2/web/":[],"/home/runner/_work/gsd-2/gsd-2/web/app/layout":[{"inlined":false,"path":"static/css/de70bee13400563f.css"},{"inlined":false,"path":"static/css/f6e8833d46e738d8.css"}],"/home/runner/_work/gsd-2/gsd-2/web/app/page":[],"/home/runner/_work/gsd-2/gsd-2/web/app/_global-error/page":[]},"rscModuleMapping":{"21942":{"*":{"id":"9796","name":"*","chunks":[],"async":false}},"27123":{"*":{"id":"5547","name":"*","chunks":[],"async":false}},"57121":{"*":{"id":"8099","name":"*","chunks":[],"async":false}},"61304":{"*":{"id":"5098","name":"*","chunks":[],"async":false}},"61549":{"*":{"id":"5561","name":"*","chunks":[],"async":false}},"64777":{"*":{"id":"3859","name":"*","chunks":[],"async":false}},"66872":{"*":{"id":"2704","name":"*","chunks":[],"async":false}},"66919":{"*":{"id":"9647","name":"*","chunks":[],"async":false}},"74581":{"*":{"id":"6237","name":"*","chunks":[],"async":false}},"78616":{"*":{"id":"7644","name":"*","chunks":[],"async":false}},"86869":{"*":{"id":"6675","name":"*","chunks":[],"async":false}},"90484":{"*":{"id":"8562","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}};
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_global-error/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"21942":{"*":{"id":"8550","name":"*","chunks":[],"async":false}},"27123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"57121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"61304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"61549":{"*":{"id":"9703","name":"*","chunks":[],"async":false}},"64777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"66919":{"*":{"id":"5720","name":"*","chunks":[],"async":false}},"74581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"78616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"86869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"90484":{"*":{"id":"664","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/builtin/global-error.js":{"id":27123,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":27123,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/client-page.js":{"id":61304,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/client-page.js":{"id":61304,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/client-segment.js":{"id":78616,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/client-segment.js":{"id":78616,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":64777,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":64777,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/layout-router.js":{"id":57121,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/layout-router.js":{"id":57121,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/render-from-template-context.js":{"id":74581,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":74581,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/lib/framework/boundary-components.js":{"id":90484,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":90484,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":86869,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":86869,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/components/theme-provider.tsx":{"id":21942,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/components/ui/sonner.tsx":{"id":61549,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-geist-sans\"}],\"variableName\":\"geistSans\"}":{"id":85048,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-geist-mono\"}],\"variableName\":\"geistMono\"}":{"id":35696,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/app/globals.css":{"id":66872,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/app/page.tsx":{"id":66919,"name":"*","chunks":["8974","static/chunks/app/page-151349214571e2b6.js"],"async":false}},"entryCSSFiles":{"/home/runner/_work/gsd-2/gsd-2/web/":[],"/home/runner/_work/gsd-2/gsd-2/web/app/layout":[{"inlined":false,"path":"static/css/de70bee13400563f.css"},{"inlined":false,"path":"static/css/632cd626b1731d88.css"}],"/home/runner/_work/gsd-2/gsd-2/web/app/page":[],"/home/runner/_work/gsd-2/gsd-2/web/app/_global-error/page":[]},"rscModuleMapping":{"21942":{"*":{"id":"9796","name":"*","chunks":[],"async":false}},"27123":{"*":{"id":"5547","name":"*","chunks":[],"async":false}},"57121":{"*":{"id":"8099","name":"*","chunks":[],"async":false}},"61304":{"*":{"id":"5098","name":"*","chunks":[],"async":false}},"61549":{"*":{"id":"5561","name":"*","chunks":[],"async":false}},"64777":{"*":{"id":"3859","name":"*","chunks":[],"async":false}},"66872":{"*":{"id":"2704","name":"*","chunks":[],"async":false}},"66919":{"*":{"id":"9647","name":"*","chunks":[],"async":false}},"74581":{"*":{"id":"6237","name":"*","chunks":[],"async":false}},"78616":{"*":{"id":"7644","name":"*","chunks":[],"async":false}},"86869":{"*":{"id":"6675","name":"*","chunks":[],"async":false}},"90484":{"*":{"id":"8562","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}};
@@ -1 +1 @@
1
- <!DOCTYPE html><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-b868033a5834586d.js"/><script src="/_next/static/chunks/4bd1b696-e356ca5ba0218e27.js" async=""></script><script src="/_next/static/chunks/3794-42fdce068d44fa4f.js" async=""></script><script src="/_next/static/chunks/main-app-d3d4c336195465f9.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: This page couldn’t load</title><style>:root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }</style><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><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;display:flex;align-items:center;justify-content:center"><div style="margin-top:-32px;max-width:325px;padding:32px 28px;text-align:left"><svg width="32" height="32" viewBox="-0.2 -1.5 32 32" fill="none" style="margin-bottom:24px"><path d="M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z" fill="var(--next-error-title)"></path></svg><h1 style="font-size:24px;font-weight:500;letter-spacing:-0.02em;line-height:32px;margin:0 0 12px 0;color:var(--next-error-title)">This page couldn’t load</h1><p style="font-size:14px;font-weight:400;line-height:21px;margin:0 0 20px 0;color:var(--next-error-message)">A server error occurred. Reload to try again.</p><form style="margin:0"><button type="submit" style="display:inline-flex;align-items:center;justify-content:center;height:32px;padding:0 12px;font-size:14px;font-weight:500;line-height:20px;border-radius:6px;cursor:pointer;color:var(--next-error-btn-text);background:var(--next-error-btn-bg);border:var(--next-error-btn-border)">Reload</button></form></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-b868033a5834586d.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[57121,[],\"\"]\n3:I[74581,[],\"\"]\n4:I[90484,[],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[90484,[],\"ViewportBoundary\"]\na:I[90484,[],\"MetadataBoundary\"]\nc:I[27123,[],\"default\",1]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"_global-error\",{\"children\":[\"__PAGE__\",{}]}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"title\",null,{\"children\":\"500: This page couldn’t load\"}],[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }\"}}]]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"display\":\"flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"marginTop\":\"-32px\",\"maxWidth\":\"325px\",\"padding\":\"32px 28px\",\"textAlign\":\"left\"},\"children\":[[\"$\",\"svg\",null,{\"width\":\"32\",\"height\":\"32\",\"viewBox\":\"-0.2 -1.5 32 32\",\"fill\":\"none\",\"style\":{\"marginBottom\":\"24px\"},\"children\":[\"$\",\"path\",null,{\"d\":\"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z\",\"fill\":\"var(--next-error-title)\"}]}],[\"$\",\"h1\",null,{\"style\":{\"fontSize\":\"24px\",\"fontWeight\":500,\"letterSpacing\":\"-0.02em\",\"lineHeight\":\"32px\",\"margin\":\"0 0 12px 0\",\"color\":\"var(--next-error-title)\"},\"children\":\"This page couldn’t load\"}],[\"$\",\"p\",null,{\"style\":{\"fontSize\":\"14px\",\"fontWeight\":400,\"lineHeight\":\"21px\",\"margin\":\"0 0 20px 0\",\"color\":\"var(--next-error-message)\"},\"children\":\"A server error occurred. Reload to try again.\"}],[\"$\",\"form\",null,{\"style\":{\"margin\":0},\"children\":[\"$\",\"button\",null,{\"type\":\"submit\",\"style\":{\"display\":\"inline-flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\",\"height\":\"32px\",\"padding\":\"0 12px\",\"fontSize\":\"14px\",\"fontWeight\":500,\"lineHeight\":\"20px\",\"borderRadius\":\"6px\",\"cursor\":\"pointer\",\"color\":\"var(--next-error-btn-text)\",\"background\":\"var(--next-error-btn-bg)\",\"border\":\"var(--next-error-btn-border)\"},\"children\":\"Reload\"}]}]]}]}]}]]}],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$@7\"]},null,false,\"$@7\"],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"prkokVQFxWtUVIku57_0z\"}\n"])</script><script>self.__next_f.push([1,"d:[]\n7:\"$Wd\"\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"6:null\nb:[]\n"])</script></body></html>
1
+ <!DOCTYPE html><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-5fc74f13a25fa1bb.js"/><script src="/_next/static/chunks/4bd1b696-e356ca5ba0218e27.js" async=""></script><script src="/_next/static/chunks/3794-42fdce068d44fa4f.js" async=""></script><script src="/_next/static/chunks/main-app-d3d4c336195465f9.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: This page couldn’t load</title><style>:root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }</style><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><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;display:flex;align-items:center;justify-content:center"><div style="margin-top:-32px;max-width:325px;padding:32px 28px;text-align:left"><svg width="32" height="32" viewBox="-0.2 -1.5 32 32" fill="none" style="margin-bottom:24px"><path d="M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z" fill="var(--next-error-title)"></path></svg><h1 style="font-size:24px;font-weight:500;letter-spacing:-0.02em;line-height:32px;margin:0 0 12px 0;color:var(--next-error-title)">This page couldn’t load</h1><p style="font-size:14px;font-weight:400;line-height:21px;margin:0 0 20px 0;color:var(--next-error-message)">A server error occurred. Reload to try again.</p><form style="margin:0"><button type="submit" style="display:inline-flex;align-items:center;justify-content:center;height:32px;padding:0 12px;font-size:14px;font-weight:500;line-height:20px;border-radius:6px;cursor:pointer;color:var(--next-error-btn-text);background:var(--next-error-btn-bg);border:var(--next-error-btn-border)">Reload</button></form></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-5fc74f13a25fa1bb.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[57121,[],\"\"]\n3:I[74581,[],\"\"]\n4:I[90484,[],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n8:I[90484,[],\"ViewportBoundary\"]\na:I[90484,[],\"MetadataBoundary\"]\nc:I[27123,[],\"default\",1]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"_global-error\",{\"children\":[\"__PAGE__\",{}]}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"title\",null,{\"children\":\"500: This page couldn’t load\"}],[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }\"}}]]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"display\":\"flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"marginTop\":\"-32px\",\"maxWidth\":\"325px\",\"padding\":\"32px 28px\",\"textAlign\":\"left\"},\"children\":[[\"$\",\"svg\",null,{\"width\":\"32\",\"height\":\"32\",\"viewBox\":\"-0.2 -1.5 32 32\",\"fill\":\"none\",\"style\":{\"marginBottom\":\"24px\"},\"children\":[\"$\",\"path\",null,{\"d\":\"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z\",\"fill\":\"var(--next-error-title)\"}]}],[\"$\",\"h1\",null,{\"style\":{\"fontSize\":\"24px\",\"fontWeight\":500,\"letterSpacing\":\"-0.02em\",\"lineHeight\":\"32px\",\"margin\":\"0 0 12px 0\",\"color\":\"var(--next-error-title)\"},\"children\":\"This page couldn’t load\"}],[\"$\",\"p\",null,{\"style\":{\"fontSize\":\"14px\",\"fontWeight\":400,\"lineHeight\":\"21px\",\"margin\":\"0 0 20px 0\",\"color\":\"var(--next-error-message)\"},\"children\":\"A server error occurred. Reload to try again.\"}],[\"$\",\"form\",null,{\"style\":{\"margin\":0},\"children\":[\"$\",\"button\",null,{\"type\":\"submit\",\"style\":{\"display\":\"inline-flex\",\"alignItems\":\"center\",\"justifyContent\":\"center\",\"height\":\"32px\",\"padding\":\"0 12px\",\"fontSize\":\"14px\",\"fontWeight\":500,\"lineHeight\":\"20px\",\"borderRadius\":\"6px\",\"cursor\":\"pointer\",\"color\":\"var(--next-error-btn-text)\",\"background\":\"var(--next-error-btn-bg)\",\"border\":\"var(--next-error-btn-border)\"},\"children\":\"Reload\"}]}]]}]}]}]]}],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,null]},null,false,\"$@7\"]},null,false,\"$@7\"],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"ssX7BLv3Dw9Fb4CtrCGeR\"}\n"])</script><script>self.__next_f.push([1,"d:[]\n7:\"$Wd\"\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"6:null\nb:[]\n"])</script></body></html>
@@ -6,7 +6,7 @@
6
6
  8:I[90484,[],"ViewportBoundary"]
7
7
  a:I[90484,[],"MetadataBoundary"]
8
8
  c:I[27123,[],"default",1]
9
- 0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["_global-error",{"children":["__PAGE__",{}]}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"prkokVQFxWtUVIku57_0z"}
9
+ 0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["_global-error",{"children":["__PAGE__",{}]}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"ssX7BLv3Dw9Fb4CtrCGeR"}
10
10
  d:[]
11
11
  7:"$Wd"
12
12
  9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
@@ -6,7 +6,7 @@
6
6
  8:I[90484,[],"ViewportBoundary"]
7
7
  a:I[90484,[],"MetadataBoundary"]
8
8
  c:I[27123,[],"default",1]
9
- 0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["_global-error",{"children":["__PAGE__",{}]}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"prkokVQFxWtUVIku57_0z"}
9
+ 0:{"P":null,"c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["_global-error",{"children":["__PAGE__",{}]}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,null]},null,false,"$@7"]},null,false,"$@7"],["$","$1","h",{"children":[null,["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$c",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"ssX7BLv3Dw9Fb4CtrCGeR"}
10
10
  d:[]
11
11
  7:"$Wd"
12
12
  9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
@@ -1,5 +1,5 @@
1
1
  1:"$Sreact.fragment"
2
2
  2:I[90484,[],"OutletBoundary"]
3
3
  3:"$Sreact.suspense"
4
- 0:{"rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"prkokVQFxWtUVIku57_0z"}
4
+ 0:{"rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":[["$","title",null,{"children":"500: This page couldn’t load"}],["$","style",null,{"dangerouslySetInnerHTML":{"__html":":root {--next-error-bg: #fff;--next-error-text: #171717;--next-error-title: #171717;--next-error-message: #171717;--next-error-digest: #666666;--next-error-btn-text: #fff;--next-error-btn-bg: #171717;--next-error-btn-border: none;--next-error-btn-secondary-text: #171717;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(0,0,0,0.08);}@media (prefers-color-scheme: dark) {:root {--next-error-bg: #0a0a0a;--next-error-text: #ededed;--next-error-title: #ededed;--next-error-message: #ededed;--next-error-digest: #a0a0a0;--next-error-btn-text: #0a0a0a;--next-error-btn-bg: #ededed;--next-error-btn-border: none;--next-error-btn-secondary-text: #ededed;--next-error-btn-secondary-bg: transparent;--next-error-btn-secondary-border: 1px solid rgba(255,255,255,0.14);}}body { margin: 0; color: var(--next-error-text); background: var(--next-error-bg); }"}}]]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","display":"flex","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"marginTop":"-32px","maxWidth":"325px","padding":"32px 28px","textAlign":"left"},"children":[["$","svg",null,{"width":"32","height":"32","viewBox":"-0.2 -1.5 32 32","fill":"none","style":{"marginBottom":"24px"},"children":["$","path",null,{"d":"M16.9328 0C18.0839 0.000116771 19.1334 0.658832 19.634 1.69531L31.4299 26.1309C32.0708 27.4588 31.1036 28.9999 29.6291 29H2.00215C0.527541 29 -0.439628 27.4588 0.201371 26.1309L11.9973 1.69531C12.4979 0.658823 13.5474 7.75066e-05 14.6984 0H16.9328ZM3.59493 26H28.0363L16.9328 3H14.6984L3.59493 26ZM15.8156 19C16.9202 19.0001 17.8156 19.8955 17.8156 21C17.8156 22.1045 16.9202 22.9999 15.8156 23C14.7111 23 13.8156 22.1046 13.8156 21C13.8156 19.8954 14.7111 19 15.8156 19ZM17.3156 16.5H14.3156V8.5H17.3156V16.5Z","fill":"var(--next-error-title)"}]}],["$","h1",null,{"style":{"fontSize":"24px","fontWeight":500,"letterSpacing":"-0.02em","lineHeight":"32px","margin":"0 0 12px 0","color":"var(--next-error-title)"},"children":"This page couldn’t load"}],["$","p",null,{"style":{"fontSize":"14px","fontWeight":400,"lineHeight":"21px","margin":"0 0 20px 0","color":"var(--next-error-message)"},"children":"A server error occurred. Reload to try again."}],["$","form",null,{"style":{"margin":0},"children":["$","button",null,{"type":"submit","style":{"display":"inline-flex","alignItems":"center","justifyContent":"center","height":"32px","padding":"0 12px","fontSize":"14px","fontWeight":500,"lineHeight":"20px","borderRadius":"6px","cursor":"pointer","color":"var(--next-error-btn-text)","background":"var(--next-error-btn-bg)","border":"var(--next-error-btn-border)"},"children":"Reload"}]}]]}]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"ssX7BLv3Dw9Fb4CtrCGeR"}
5
5
  4:null
@@ -2,4 +2,4 @@
2
2
  2:I[57121,[],""]
3
3
  3:I[74581,[],""]
4
4
  4:[]
5
- 0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"prkokVQFxWtUVIku57_0z"}
5
+ 0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"ssX7BLv3Dw9Fb4CtrCGeR"}
@@ -2,4 +2,4 @@
2
2
  2:I[90484,[],"ViewportBoundary"]
3
3
  3:I[90484,[],"MetadataBoundary"]
4
4
  4:"$Sreact.suspense"
5
- 0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"prkokVQFxWtUVIku57_0z"}
5
+ 0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"ssX7BLv3Dw9Fb4CtrCGeR"}
@@ -2,4 +2,4 @@
2
2
  2:I[57121,[],""]
3
3
  3:I[74581,[],""]
4
4
  4:[]
5
- 0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"prkokVQFxWtUVIku57_0z"}
5
+ 0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"ssX7BLv3Dw9Fb4CtrCGeR"}
@@ -1 +1 @@
1
- 0:{"tree":{"name":"","param":null,"prefetchHints":0,"slots":{"children":{"name":"_global-error","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"prkokVQFxWtUVIku57_0z"}
1
+ 0:{"tree":{"name":"","param":null,"prefetchHints":0,"slots":{"children":{"name":"_global-error","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"ssX7BLv3Dw9Fb4CtrCGeR"}
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"21942":{"*":{"id":"8550","name":"*","chunks":[],"async":false}},"27123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"57121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"61304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"61549":{"*":{"id":"9703","name":"*","chunks":[],"async":false}},"64777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"66919":{"*":{"id":"5720","name":"*","chunks":[],"async":false}},"74581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"78616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"86869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"90484":{"*":{"id":"664","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/builtin/global-error.js":{"id":27123,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":27123,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/client-page.js":{"id":61304,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/client-page.js":{"id":61304,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/client-segment.js":{"id":78616,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/client-segment.js":{"id":78616,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":64777,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":64777,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/layout-router.js":{"id":57121,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/layout-router.js":{"id":57121,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/render-from-template-context.js":{"id":74581,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":74581,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/lib/framework/boundary-components.js":{"id":90484,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":90484,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":86869,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":86869,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/components/theme-provider.tsx":{"id":21942,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/components/ui/sonner.tsx":{"id":61549,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-geist-sans\"}],\"variableName\":\"geistSans\"}":{"id":85048,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-geist-mono\"}],\"variableName\":\"geistMono\"}":{"id":35696,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/app/globals.css":{"id":66872,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/app/page.tsx":{"id":66919,"name":"*","chunks":["8974","static/chunks/app/page-7115e62689b5fd84.js"],"async":false}},"entryCSSFiles":{"/home/runner/_work/gsd-2/gsd-2/web/":[],"/home/runner/_work/gsd-2/gsd-2/web/app/layout":[{"inlined":false,"path":"static/css/de70bee13400563f.css"},{"inlined":false,"path":"static/css/f6e8833d46e738d8.css"}],"/home/runner/_work/gsd-2/gsd-2/web/app/page":[],"/home/runner/_work/gsd-2/gsd-2/web/app/_not-found/page":[]},"rscModuleMapping":{"21942":{"*":{"id":"9796","name":"*","chunks":[],"async":false}},"27123":{"*":{"id":"5547","name":"*","chunks":[],"async":false}},"57121":{"*":{"id":"8099","name":"*","chunks":[],"async":false}},"61304":{"*":{"id":"5098","name":"*","chunks":[],"async":false}},"61549":{"*":{"id":"5561","name":"*","chunks":[],"async":false}},"64777":{"*":{"id":"3859","name":"*","chunks":[],"async":false}},"66872":{"*":{"id":"2704","name":"*","chunks":[],"async":false}},"66919":{"*":{"id":"9647","name":"*","chunks":[],"async":false}},"74581":{"*":{"id":"6237","name":"*","chunks":[],"async":false}},"78616":{"*":{"id":"7644","name":"*","chunks":[],"async":false}},"86869":{"*":{"id":"6675","name":"*","chunks":[],"async":false}},"90484":{"*":{"id":"8562","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}};
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"21942":{"*":{"id":"8550","name":"*","chunks":[],"async":false}},"27123":{"*":{"id":"1921","name":"*","chunks":[],"async":false}},"57121":{"*":{"id":"5421","name":"*","chunks":[],"async":false}},"61304":{"*":{"id":"440","name":"*","chunks":[],"async":false}},"61549":{"*":{"id":"9703","name":"*","chunks":[],"async":false}},"64777":{"*":{"id":"2265","name":"*","chunks":[],"async":false}},"66919":{"*":{"id":"5720","name":"*","chunks":[],"async":false}},"74581":{"*":{"id":"1335","name":"*","chunks":[],"async":false}},"78616":{"*":{"id":"4342","name":"*","chunks":[],"async":false}},"86869":{"*":{"id":"4661","name":"*","chunks":[],"async":false}},"90484":{"*":{"id":"664","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/builtin/global-error.js":{"id":27123,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":27123,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/client-page.js":{"id":61304,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/client-page.js":{"id":61304,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/client-segment.js":{"id":78616,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/client-segment.js":{"id":78616,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":64777,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":64777,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/layout-router.js":{"id":57121,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/layout-router.js":{"id":57121,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/client/components/render-from-template-context.js":{"id":74581,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":74581,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/lib/framework/boundary-components.js":{"id":90484,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":90484,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":86869,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":86869,"name":"*","chunks":[],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/components/theme-provider.tsx":{"id":21942,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/components/ui/sonner.tsx":{"id":61549,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-geist-sans\"}],\"variableName\":\"geistSans\"}":{"id":85048,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-geist-mono\"}],\"variableName\":\"geistMono\"}":{"id":35696,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/app/globals.css":{"id":66872,"name":"*","chunks":["4986","static/chunks/4986-c2fc8845ce785303.js","7177","static/chunks/app/layout-9ecfd95f343793f0.js"],"async":false},"/home/runner/_work/gsd-2/gsd-2/web/app/page.tsx":{"id":66919,"name":"*","chunks":["8974","static/chunks/app/page-151349214571e2b6.js"],"async":false}},"entryCSSFiles":{"/home/runner/_work/gsd-2/gsd-2/web/":[],"/home/runner/_work/gsd-2/gsd-2/web/app/layout":[{"inlined":false,"path":"static/css/de70bee13400563f.css"},{"inlined":false,"path":"static/css/632cd626b1731d88.css"}],"/home/runner/_work/gsd-2/gsd-2/web/app/page":[],"/home/runner/_work/gsd-2/gsd-2/web/app/_not-found/page":[]},"rscModuleMapping":{"21942":{"*":{"id":"9796","name":"*","chunks":[],"async":false}},"27123":{"*":{"id":"5547","name":"*","chunks":[],"async":false}},"57121":{"*":{"id":"8099","name":"*","chunks":[],"async":false}},"61304":{"*":{"id":"5098","name":"*","chunks":[],"async":false}},"61549":{"*":{"id":"5561","name":"*","chunks":[],"async":false}},"64777":{"*":{"id":"3859","name":"*","chunks":[],"async":false}},"66872":{"*":{"id":"2704","name":"*","chunks":[],"async":false}},"66919":{"*":{"id":"9647","name":"*","chunks":[],"async":false}},"74581":{"*":{"id":"6237","name":"*","chunks":[],"async":false}},"78616":{"*":{"id":"7644","name":"*","chunks":[],"async":false}},"86869":{"*":{"id":"6675","name":"*","chunks":[],"async":false}},"90484":{"*":{"id":"8562","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}};
@@ -1 +1 @@
1
- <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/><link rel="preload" href="/_next/static/media/4cf2300e9c8272f7-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/de70bee13400563f.css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/css/f6e8833d46e738d8.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-b868033a5834586d.js"/><script src="/_next/static/chunks/4bd1b696-e356ca5ba0218e27.js" async=""></script><script src="/_next/static/chunks/3794-42fdce068d44fa4f.js" async=""></script><script src="/_next/static/chunks/main-app-d3d4c336195465f9.js" async=""></script><script src="/_next/static/chunks/4986-c2fc8845ce785303.js" async=""></script><script src="/_next/static/chunks/app/layout-9ecfd95f343793f0.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>GSD</title><meta name="description" content="The evolution of Get Shit Done — now a real coding agent. One command. Walk away. Come back to a built project."/><meta name="application-name" content="GSD"/><link rel="icon" href="/icon-light-32x32.png" media="(prefers-color-scheme: light)"/><link rel="icon" href="/icon-dark-32x32.png" media="(prefers-color-scheme: dark)"/><link rel="icon" href="/icon.svg" type="image/svg+xml"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_188709 __variable_9a8899 font-sans antialiased"><div hidden=""><!--$--><!--/$--></div><script>((a,b,c,d,e,f,g,h)=>{let i=document.documentElement,j=["light","dark"];function k(b){var c;(Array.isArray(a)?a:[a]).forEach(a=>{let c="class"===a,d=c&&f?e.map(a=>f[a]||a):e;c?(i.classList.remove(...d),i.classList.add(f&&f[b]?f[b]:b)):i.setAttribute(a,b)}),c=b,h&&j.includes(c)&&(i.style.colorScheme=c)}if(d)k(d);else try{let a=localStorage.getItem(b)||c,d=g&&"system"===a?window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light":a;k(d)}catch(a){}})("class","theme","dark",null,["light","dark"],null,true,true)</script><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><!--$--><!--/$--><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><script src="/_next/static/chunks/webpack-b868033a5834586d.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[21942,[\"4986\",\"static/chunks/4986-c2fc8845ce785303.js\",\"7177\",\"static/chunks/app/layout-9ecfd95f343793f0.js\"],\"ThemeProvider\"]\n3:I[57121,[],\"\"]\n4:I[74581,[],\"\"]\n5:I[61549,[\"4986\",\"static/chunks/4986-c2fc8845ce785303.js\",\"7177\",\"static/chunks/app/layout-9ecfd95f343793f0.js\"],\"Toaster\"]\n6:I[90484,[],\"OutletBoundary\"]\n7:\"$Sreact.suspense\"\na:I[90484,[],\"ViewportBoundary\"]\nc:I[90484,[],\"MetadataBoundary\"]\ne:I[27123,[],\"default\",1]\n:HL[\"/_next/static/media/4cf2300e9c8272f7-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/de70bee13400563f.css\",\"style\"]\n:HL[\"/_next/static/css/f6e8833d46e738d8.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/de70bee13400563f.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/f6e8833d46e738d8.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_188709 __variable_9a8899 font-sans antialiased\",\"children\":[\"$\",\"$L2\",null,{\"attribute\":\"class\",\"defaultTheme\":\"dark\",\"children\":[[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}],[\"$\",\"$L5\",null,{\"position\":\"bottom-right\"}]]}]}]}]]}],{\"children\":[[\"$\",\"$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\":[[\"$\",\"$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,[\"$\",\"$L6\",null,{\"children\":[\"$\",\"$7\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@8\"}]}]]}],{},null,false,null]},null,false,\"$@9\"]},null,false,null],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$La\",null,{\"children\":\"$Lb\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lc\",null,{\"children\":[\"$\",\"$7\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Ld\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$e\",[]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"prkokVQFxWtUVIku57_0z\"}\n"])</script><script>self.__next_f.push([1,"f:[]\n9:\"$Wf\"\n"])</script><script>self.__next_f.push([1,"b:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\"}]]\n"])</script><script>self.__next_f.push([1,"10:I[86869,[],\"IconMark\"]\n8:null\nd:[[\"$\",\"title\",\"0\",{\"children\":\"GSD\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"The evolution of Get Shit Done — now a real coding agent. One command. Walk away. Come back to a built project.\"}],[\"$\",\"meta\",\"2\",{\"name\":\"application-name\",\"content\":\"GSD\"}],[\"$\",\"link\",\"3\",{\"rel\":\"icon\",\"href\":\"/icon-light-32x32.png\",\"media\":\"(prefers-color-scheme: light)\"}],[\"$\",\"link\",\"4\",{\"rel\":\"icon\",\"href\":\"/icon-dark-32x32.png\",\"media\":\"(prefers-color-scheme: dark)\"}],[\"$\",\"link\",\"5\",{\"rel\":\"icon\",\"href\":\"/icon.svg\",\"type\":\"image/svg+xml\"}],[\"$\",\"$L10\",\"6\",{}]]\n"])</script></body></html>
1
+ <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/><link rel="preload" href="/_next/static/media/4cf2300e9c8272f7-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/de70bee13400563f.css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/css/632cd626b1731d88.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-5fc74f13a25fa1bb.js"/><script src="/_next/static/chunks/4bd1b696-e356ca5ba0218e27.js" async=""></script><script src="/_next/static/chunks/3794-42fdce068d44fa4f.js" async=""></script><script src="/_next/static/chunks/main-app-d3d4c336195465f9.js" async=""></script><script src="/_next/static/chunks/4986-c2fc8845ce785303.js" async=""></script><script src="/_next/static/chunks/app/layout-9ecfd95f343793f0.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>GSD</title><meta name="description" content="The evolution of Get Shit Done — now a real coding agent. One command. Walk away. Come back to a built project."/><meta name="application-name" content="GSD"/><link rel="icon" href="/icon-light-32x32.png" media="(prefers-color-scheme: light)"/><link rel="icon" href="/icon-dark-32x32.png" media="(prefers-color-scheme: dark)"/><link rel="icon" href="/icon.svg" type="image/svg+xml"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_188709 __variable_9a8899 font-sans antialiased"><div hidden=""><!--$--><!--/$--></div><script>((a,b,c,d,e,f,g,h)=>{let i=document.documentElement,j=["light","dark"];function k(b){var c;(Array.isArray(a)?a:[a]).forEach(a=>{let c="class"===a,d=c&&f?e.map(a=>f[a]||a):e;c?(i.classList.remove(...d),i.classList.add(f&&f[b]?f[b]:b)):i.setAttribute(a,b)}),c=b,h&&j.includes(c)&&(i.style.colorScheme=c)}if(d)k(d);else try{let a=localStorage.getItem(b)||c,d=g&&"system"===a?window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light":a;k(d)}catch(a){}})("class","theme","dark",null,["light","dark"],null,true,true)</script><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><!--$--><!--/$--><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><script src="/_next/static/chunks/webpack-5fc74f13a25fa1bb.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[21942,[\"4986\",\"static/chunks/4986-c2fc8845ce785303.js\",\"7177\",\"static/chunks/app/layout-9ecfd95f343793f0.js\"],\"ThemeProvider\"]\n3:I[57121,[],\"\"]\n4:I[74581,[],\"\"]\n5:I[61549,[\"4986\",\"static/chunks/4986-c2fc8845ce785303.js\",\"7177\",\"static/chunks/app/layout-9ecfd95f343793f0.js\"],\"Toaster\"]\n6:I[90484,[],\"OutletBoundary\"]\n7:\"$Sreact.suspense\"\na:I[90484,[],\"ViewportBoundary\"]\nc:I[90484,[],\"MetadataBoundary\"]\ne:I[27123,[],\"default\",1]\n:HL[\"/_next/static/media/4cf2300e9c8272f7-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/de70bee13400563f.css\",\"style\"]\n:HL[\"/_next/static/css/632cd626b1731d88.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/de70bee13400563f.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/632cd626b1731d88.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_188709 __variable_9a8899 font-sans antialiased\",\"children\":[\"$\",\"$L2\",null,{\"attribute\":\"class\",\"defaultTheme\":\"dark\",\"children\":[[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}],[\"$\",\"$L5\",null,{\"position\":\"bottom-right\"}]]}]}]}]]}],{\"children\":[[\"$\",\"$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\":[[\"$\",\"$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,[\"$\",\"$L6\",null,{\"children\":[\"$\",\"$7\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@8\"}]}]]}],{},null,false,null]},null,false,\"$@9\"]},null,false,null],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$La\",null,{\"children\":\"$Lb\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lc\",null,{\"children\":[\"$\",\"$7\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Ld\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$e\",[]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"ssX7BLv3Dw9Fb4CtrCGeR\"}\n"])</script><script>self.__next_f.push([1,"f:[]\n9:\"$Wf\"\n"])</script><script>self.__next_f.push([1,"b:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\"}]]\n"])</script><script>self.__next_f.push([1,"10:I[86869,[],\"IconMark\"]\n8:null\nd:[[\"$\",\"title\",\"0\",{\"children\":\"GSD\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"The evolution of Get Shit Done — now a real coding agent. One command. Walk away. Come back to a built project.\"}],[\"$\",\"meta\",\"2\",{\"name\":\"application-name\",\"content\":\"GSD\"}],[\"$\",\"link\",\"3\",{\"rel\":\"icon\",\"href\":\"/icon-light-32x32.png\",\"media\":\"(prefers-color-scheme: light)\"}],[\"$\",\"link\",\"4\",{\"rel\":\"icon\",\"href\":\"/icon-dark-32x32.png\",\"media\":\"(prefers-color-scheme: dark)\"}],[\"$\",\"link\",\"5\",{\"rel\":\"icon\",\"href\":\"/icon.svg\",\"type\":\"image/svg+xml\"}],[\"$\",\"$L10\",\"6\",{}]]\n"])</script></body></html>
@@ -11,8 +11,8 @@ e:I[27123,[],"default",1]
11
11
  :HL["/_next/static/media/4cf2300e9c8272f7-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
12
12
  :HL["/_next/static/media/93f479601ee12b01-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
13
13
  :HL["/_next/static/css/de70bee13400563f.css","style"]
14
- :HL["/_next/static/css/f6e8833d46e738d8.css","style"]
15
- 0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/de70bee13400563f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/css/f6e8833d46e738d8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__variable_188709 __variable_9a8899 font-sans antialiased","children":["$","$L2",null,{"attribute":"class","defaultTheme":"dark","children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{"position":"bottom-right"}]]}]}]}]]}],{"children":[["$","$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":[["$","$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,["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,null]},null,false,"$@9"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$La",null,{"children":"$Lb"}],["$","div",null,{"hidden":true,"children":["$","$Lc",null,{"children":["$","$7",null,{"name":"Next.Metadata","children":"$Ld"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$e",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"prkokVQFxWtUVIku57_0z"}
14
+ :HL["/_next/static/css/632cd626b1731d88.css","style"]
15
+ 0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/de70bee13400563f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/css/632cd626b1731d88.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":"__variable_188709 __variable_9a8899 font-sans antialiased","children":["$","$L2",null,{"attribute":"class","defaultTheme":"dark","children":[["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L5",null,{"position":"bottom-right"}]]}]}]}]]}],{"children":[["$","$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":[["$","$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,["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,null]},null,false,"$@9"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$La",null,{"children":"$Lb"}],["$","div",null,{"hidden":true,"children":["$","$Lc",null,{"children":["$","$7",null,{"name":"Next.Metadata","children":"$Ld"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$e",[]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"ssX7BLv3Dw9Fb4CtrCGeR"}
16
16
  f:[]
17
17
  9:"$Wf"
18
18
  b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]