gsd-pi 2.78.1-dev.8a893322c → 2.78.1-dev.8e0e96cfc

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 (1332) hide show
  1. package/README.md +15 -7
  2. package/dist/cli-auto-routing.d.ts +1 -0
  3. package/dist/cli-auto-routing.js +5 -0
  4. package/dist/cli.js +5 -14
  5. package/dist/loader.js +15 -3
  6. package/dist/resource-loader.js +26 -17
  7. package/dist/resources/.managed-resources-content-hash +1 -1
  8. package/dist/resources/GSD-WORKFLOW.md +29 -42
  9. package/dist/resources/extensions/async-jobs/job-manager.js +4 -0
  10. package/dist/resources/extensions/bg-shell/bg-shell-lifecycle.js +3 -2
  11. package/dist/resources/extensions/bg-shell/utilities.js +2 -1
  12. package/dist/resources/extensions/browser-tools/tools/intent.js +8 -1
  13. package/dist/resources/extensions/claude-code-cli/stream-adapter.js +22 -8
  14. package/dist/resources/extensions/github-sync/cli.js +3 -0
  15. package/dist/resources/extensions/github-sync/sync.js +86 -58
  16. package/dist/resources/extensions/gsd/auto/phases.js +80 -21
  17. package/dist/resources/extensions/gsd/auto/run-unit.js +23 -11
  18. package/dist/resources/extensions/gsd/auto/session.js +3 -0
  19. package/dist/resources/extensions/gsd/auto-artifact-paths.js +49 -31
  20. package/dist/resources/extensions/gsd/auto-dashboard.js +13 -2
  21. package/dist/resources/extensions/gsd/auto-direct-dispatch.js +57 -21
  22. package/dist/resources/extensions/gsd/auto-dispatch.js +235 -88
  23. package/dist/resources/extensions/gsd/auto-post-unit.js +101 -45
  24. package/dist/resources/extensions/gsd/auto-prompts.js +82 -6
  25. package/dist/resources/extensions/gsd/auto-recovery.js +69 -15
  26. package/dist/resources/extensions/gsd/auto-start.js +54 -64
  27. package/dist/resources/extensions/gsd/auto-timeout-recovery.js +18 -0
  28. package/dist/resources/extensions/gsd/auto-timers.js +24 -4
  29. package/dist/resources/extensions/gsd/auto-worktree.js +134 -173
  30. package/dist/resources/extensions/gsd/auto.js +75 -26
  31. package/dist/resources/extensions/gsd/bootstrap/agent-end-recovery.js +20 -2
  32. package/dist/resources/extensions/gsd/bootstrap/db-tools.js +40 -7
  33. package/dist/resources/extensions/gsd/bootstrap/dynamic-tools.js +9 -77
  34. package/dist/resources/extensions/gsd/bootstrap/register-hooks.js +79 -8
  35. package/dist/resources/extensions/gsd/bootstrap/system-context.js +3 -4
  36. package/dist/resources/extensions/gsd/bootstrap/write-gate.js +82 -15
  37. package/dist/resources/extensions/gsd/branch-patterns.js +3 -3
  38. package/dist/resources/extensions/gsd/commands/catalog.js +7 -6
  39. package/dist/resources/extensions/gsd/commands/context.js +41 -5
  40. package/dist/resources/extensions/gsd/commands/dispatcher.js +11 -5
  41. package/dist/resources/extensions/gsd/commands/handlers/auto.js +2 -1
  42. package/dist/resources/extensions/gsd/commands/handlers/core.js +2 -0
  43. package/dist/resources/extensions/gsd/commands/handlers/ops.js +5 -0
  44. package/dist/resources/extensions/gsd/commands/handlers/workflow.js +24 -2
  45. package/dist/resources/extensions/gsd/commands-bootstrap.js +6 -0
  46. package/dist/resources/extensions/gsd/commands-codebase.js +2 -1
  47. package/dist/resources/extensions/gsd/commands-config.js +3 -3
  48. package/dist/resources/extensions/gsd/commands-debug.js +22 -1
  49. package/dist/resources/extensions/gsd/commands-eval-review.js +534 -0
  50. package/dist/resources/extensions/gsd/commands-extensions.js +4 -4
  51. package/dist/resources/extensions/gsd/commands-handlers.js +8 -8
  52. package/dist/resources/extensions/gsd/commands-logs.js +2 -1
  53. package/dist/resources/extensions/gsd/commands-mcp-status.js +2 -2
  54. package/dist/resources/extensions/gsd/commands-scan.js +2 -1
  55. package/dist/resources/extensions/gsd/commands-ship.js +67 -1
  56. package/dist/resources/extensions/gsd/commands-workflow-templates.js +5 -4
  57. package/dist/resources/extensions/gsd/context-budget.js +11 -3
  58. package/dist/resources/extensions/gsd/db-writer.js +61 -83
  59. package/dist/resources/extensions/gsd/deep-project-setup-policy.js +212 -0
  60. package/dist/resources/extensions/gsd/detection.js +7 -7
  61. package/dist/resources/extensions/gsd/dispatch-guard.js +6 -10
  62. package/dist/resources/extensions/gsd/docs/preferences-reference.md +6 -4
  63. package/dist/resources/extensions/gsd/doctor-engine-checks.js +2 -2
  64. package/dist/resources/extensions/gsd/doctor-providers.js +2 -2
  65. package/dist/resources/extensions/gsd/doctor-runtime-checks.js +54 -0
  66. package/dist/resources/extensions/gsd/eval-review-schema.js +208 -0
  67. package/dist/resources/extensions/gsd/forensics.js +10 -4
  68. package/dist/resources/extensions/gsd/git-service.js +74 -4
  69. package/dist/resources/extensions/gsd/gsd-db.js +77 -10
  70. package/dist/resources/extensions/gsd/gsd-home.js +29 -0
  71. package/dist/resources/extensions/gsd/guided-flow.js +274 -97
  72. package/dist/resources/extensions/gsd/init-wizard.js +16 -23
  73. package/dist/resources/extensions/gsd/interrupted-session.js +37 -2
  74. package/dist/resources/extensions/gsd/key-manager.js +2 -2
  75. package/dist/resources/extensions/gsd/markdown-renderer.js +59 -66
  76. package/dist/resources/extensions/gsd/migrate/command.js +3 -3
  77. package/dist/resources/extensions/gsd/milestone-scope-classifier.js +10 -8
  78. package/dist/resources/extensions/gsd/native-git-bridge.js +19 -42
  79. package/dist/resources/extensions/gsd/onboarding-state.js +2 -2
  80. package/dist/resources/extensions/gsd/parallel-merge.js +14 -13
  81. package/dist/resources/extensions/gsd/parallel-monitor-overlay.js +5 -2
  82. package/dist/resources/extensions/gsd/paths.js +72 -1
  83. package/dist/resources/extensions/gsd/planning-depth.js +114 -0
  84. package/dist/resources/extensions/gsd/preferences-models.js +18 -1
  85. package/dist/resources/extensions/gsd/preferences-skills.js +2 -1
  86. package/dist/resources/extensions/gsd/preferences-types.js +4 -0
  87. package/dist/resources/extensions/gsd/preferences-validation.js +9 -0
  88. package/dist/resources/extensions/gsd/preferences.js +20 -4
  89. package/dist/resources/extensions/gsd/project-research-policy.js +182 -0
  90. package/dist/resources/extensions/gsd/prompt-loader.js +2 -3
  91. package/dist/resources/extensions/gsd/prompts/complete-slice.md +1 -1
  92. package/dist/resources/extensions/gsd/prompts/guided-discuss-milestone.md +2 -0
  93. package/dist/resources/extensions/gsd/prompts/guided-discuss-project.md +133 -0
  94. package/dist/resources/extensions/gsd/prompts/guided-discuss-requirements.md +122 -0
  95. package/dist/resources/extensions/gsd/prompts/guided-research-decision.md +70 -0
  96. package/dist/resources/extensions/gsd/prompts/guided-research-project.md +120 -0
  97. package/dist/resources/extensions/gsd/prompts/guided-workflow-preferences.md +68 -0
  98. package/dist/resources/extensions/gsd/prompts/parallel-research-slices.md +2 -0
  99. package/dist/resources/extensions/gsd/prompts/plan-milestone.md +8 -2
  100. package/dist/resources/extensions/gsd/prompts/plan-slice.md +9 -7
  101. package/dist/resources/extensions/gsd/prompts/refine-slice.md +1 -1
  102. package/dist/resources/extensions/gsd/prompts/rewrite-docs.md +2 -0
  103. package/dist/resources/extensions/gsd/prompts/system.md +4 -4
  104. package/dist/resources/extensions/gsd/queue-order.js +6 -1
  105. package/dist/resources/extensions/gsd/repo-identity.js +20 -9
  106. package/dist/resources/extensions/gsd/rethink.js +2 -1
  107. package/dist/resources/extensions/gsd/safety/git-checkpoint.js +8 -1
  108. package/dist/resources/extensions/gsd/schemas/__fixtures__/valid-project.md +26 -0
  109. package/dist/resources/extensions/gsd/schemas/__fixtures__/valid-requirements.md +57 -0
  110. package/dist/resources/extensions/gsd/schemas/__fixtures__/valid-roadmap.md +19 -0
  111. package/dist/resources/extensions/gsd/schemas/parsers.js +276 -0
  112. package/dist/resources/extensions/gsd/schemas/validate.js +364 -0
  113. package/dist/resources/extensions/gsd/skill-telemetry.js +3 -2
  114. package/dist/resources/extensions/gsd/slice-cadence.js +56 -7
  115. package/dist/resources/extensions/gsd/state.js +91 -372
  116. package/dist/resources/extensions/gsd/token-counter.js +1 -0
  117. package/dist/resources/extensions/gsd/tools/complete-milestone.js +6 -5
  118. package/dist/resources/extensions/gsd/tools/complete-slice.js +7 -12
  119. package/dist/resources/extensions/gsd/tools/complete-task.js +19 -31
  120. package/dist/resources/extensions/gsd/tools/plan-slice.js +6 -5
  121. package/dist/resources/extensions/gsd/tools/validate-milestone.js +7 -5
  122. package/dist/resources/extensions/gsd/tools/workflow-tool-executors.js +74 -11
  123. package/dist/resources/extensions/gsd/unit-context-manifest.js +96 -1
  124. package/dist/resources/extensions/gsd/unit-runtime.js +88 -24
  125. package/dist/resources/extensions/gsd/uok/plan-v2.js +14 -1
  126. package/dist/resources/extensions/gsd/user-input-boundary.js +157 -0
  127. package/dist/resources/extensions/gsd/watch/header-renderer.js +2 -1
  128. package/dist/resources/extensions/gsd/workflow-install.js +2 -3
  129. package/dist/resources/extensions/gsd/workflow-manifest.js +2 -1
  130. package/dist/resources/extensions/gsd/workflow-mcp-auto-prep.js +3 -21
  131. package/dist/resources/extensions/gsd/workflow-mcp.js +39 -3
  132. package/dist/resources/extensions/gsd/workflow-migration.js +4 -3
  133. package/dist/resources/extensions/gsd/workflow-plugins.js +3 -5
  134. package/dist/resources/extensions/gsd/workflow-reconcile.js +3 -3
  135. package/dist/resources/extensions/gsd/workflow-templates.js +2 -3
  136. package/dist/resources/extensions/gsd/worktree-command.js +4 -3
  137. package/dist/resources/extensions/gsd/worktree-manager.js +6 -6
  138. package/dist/resources/extensions/gsd/worktree-resolver.js +30 -6
  139. package/dist/resources/extensions/gsd/worktree-root.js +48 -9
  140. package/dist/resources/extensions/mcp-client/index.js +2 -2
  141. package/dist/resources/extensions/remote-questions/remote-command.js +2 -1
  142. package/dist/resources/extensions/remote-questions/status.js +2 -5
  143. package/dist/resources/extensions/remote-questions/store.js +2 -5
  144. package/dist/resources/extensions/search-the-web/provider.js +9 -8
  145. package/dist/resources/extensions/shared/next-action-ui.js +7 -0
  146. package/dist/resources/extensions/subagent/index.js +22 -17
  147. package/dist/resources/extensions/subagent/isolation.js +2 -2
  148. package/dist/resources/extensions/ttsr/rule-loader.js +2 -3
  149. package/dist/resources/extensions/voice/index.js +3 -2
  150. package/dist/resources/extensions/voice/linux-ready.js +2 -2
  151. package/dist/resources/skills/lint/SKILL.md +4 -0
  152. package/dist/resources/skills/review/SKILL.md +4 -0
  153. package/dist/resources/skills/test/SKILL.md +3 -0
  154. package/dist/resources/skills/verify-before-complete/SKILL.md +1 -1
  155. package/dist/tool-bootstrap.js +7 -0
  156. package/dist/tsconfig.extensions.tsbuildinfo +1 -1
  157. package/dist/web/standalone/.next/BUILD_ID +1 -1
  158. package/dist/web/standalone/.next/app-path-routes-manifest.json +16 -16
  159. package/dist/web/standalone/.next/build-manifest.json +4 -4
  160. package/dist/web/standalone/.next/prerender-manifest.json +3 -3
  161. package/dist/web/standalone/.next/react-loadable-manifest.json +7 -7
  162. package/dist/web/standalone/.next/server/app/_global-error/page.js +3 -3
  163. package/dist/web/standalone/.next/server/app/_global-error/page_client-reference-manifest.js +1 -1
  164. package/dist/web/standalone/.next/server/app/_global-error.html +1 -1
  165. package/dist/web/standalone/.next/server/app/_global-error.rsc +1 -1
  166. package/dist/web/standalone/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  167. package/dist/web/standalone/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
  168. package/dist/web/standalone/.next/server/app/_global-error.segments/_global-error.segment.rsc +1 -1
  169. package/dist/web/standalone/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  170. package/dist/web/standalone/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  171. package/dist/web/standalone/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  172. package/dist/web/standalone/.next/server/app/_not-found/page.js +2 -2
  173. package/dist/web/standalone/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  174. package/dist/web/standalone/.next/server/app/_not-found.html +1 -1
  175. package/dist/web/standalone/.next/server/app/_not-found.rsc +2 -2
  176. package/dist/web/standalone/.next/server/app/_not-found.segments/_full.segment.rsc +2 -2
  177. package/dist/web/standalone/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
  178. package/dist/web/standalone/.next/server/app/_not-found.segments/_index.segment.rsc +2 -2
  179. package/dist/web/standalone/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
  180. package/dist/web/standalone/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
  181. package/dist/web/standalone/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -2
  182. package/dist/web/standalone/.next/server/app/api/boot/route.js +1 -1
  183. package/dist/web/standalone/.next/server/app/api/boot/route.js.nft.json +1 -1
  184. package/dist/web/standalone/.next/server/app/api/bridge-terminal/input/route.js +1 -1
  185. package/dist/web/standalone/.next/server/app/api/bridge-terminal/input/route.js.nft.json +1 -1
  186. package/dist/web/standalone/.next/server/app/api/bridge-terminal/resize/route.js +1 -1
  187. package/dist/web/standalone/.next/server/app/api/bridge-terminal/resize/route.js.nft.json +1 -1
  188. package/dist/web/standalone/.next/server/app/api/bridge-terminal/stream/route.js +2 -2
  189. package/dist/web/standalone/.next/server/app/api/bridge-terminal/stream/route.js.nft.json +1 -1
  190. package/dist/web/standalone/.next/server/app/api/browse-directories/route.js +1 -1
  191. package/dist/web/standalone/.next/server/app/api/captures/route.js +1 -1
  192. package/dist/web/standalone/.next/server/app/api/captures/route.js.nft.json +1 -1
  193. package/dist/web/standalone/.next/server/app/api/cleanup/route.js +1 -1
  194. package/dist/web/standalone/.next/server/app/api/cleanup/route.js.nft.json +1 -1
  195. package/dist/web/standalone/.next/server/app/api/dev-mode/route.js +1 -1
  196. package/dist/web/standalone/.next/server/app/api/doctor/route.js +1 -1
  197. package/dist/web/standalone/.next/server/app/api/doctor/route.js.nft.json +1 -1
  198. package/dist/web/standalone/.next/server/app/api/experimental/route.js +2 -2
  199. package/dist/web/standalone/.next/server/app/api/export-data/route.js +1 -1
  200. package/dist/web/standalone/.next/server/app/api/export-data/route.js.nft.json +1 -1
  201. package/dist/web/standalone/.next/server/app/api/files/route.js +1 -1
  202. package/dist/web/standalone/.next/server/app/api/files/route.js.nft.json +1 -1
  203. package/dist/web/standalone/.next/server/app/api/forensics/route.js +1 -1
  204. package/dist/web/standalone/.next/server/app/api/forensics/route.js.nft.json +1 -1
  205. package/dist/web/standalone/.next/server/app/api/git/route.js +1 -1
  206. package/dist/web/standalone/.next/server/app/api/git/route.js.nft.json +1 -1
  207. package/dist/web/standalone/.next/server/app/api/history/route.js +1 -1
  208. package/dist/web/standalone/.next/server/app/api/history/route.js.nft.json +1 -1
  209. package/dist/web/standalone/.next/server/app/api/hooks/route.js +1 -1
  210. package/dist/web/standalone/.next/server/app/api/hooks/route.js.nft.json +1 -1
  211. package/dist/web/standalone/.next/server/app/api/inspect/route.js +1 -1
  212. package/dist/web/standalone/.next/server/app/api/inspect/route.js.nft.json +1 -1
  213. package/dist/web/standalone/.next/server/app/api/knowledge/route.js +1 -1
  214. package/dist/web/standalone/.next/server/app/api/knowledge/route.js.nft.json +1 -1
  215. package/dist/web/standalone/.next/server/app/api/live-state/route.js +1 -1
  216. package/dist/web/standalone/.next/server/app/api/live-state/route.js.nft.json +1 -1
  217. package/dist/web/standalone/.next/server/app/api/notifications/route.js +2 -2
  218. package/dist/web/standalone/.next/server/app/api/notifications/route.js.nft.json +1 -1
  219. package/dist/web/standalone/.next/server/app/api/onboarding/route.js +1 -1
  220. package/dist/web/standalone/.next/server/app/api/onboarding/route.js.nft.json +1 -1
  221. package/dist/web/standalone/.next/server/app/api/preferences/route.js +1 -1
  222. package/dist/web/standalone/.next/server/app/api/projects/route.js +1 -1
  223. package/dist/web/standalone/.next/server/app/api/projects/route.js.nft.json +1 -1
  224. package/dist/web/standalone/.next/server/app/api/recovery/route.js +1 -1
  225. package/dist/web/standalone/.next/server/app/api/recovery/route.js.nft.json +1 -1
  226. package/dist/web/standalone/.next/server/app/api/remote-questions/route.js +2 -2
  227. package/dist/web/standalone/.next/server/app/api/session/browser/route.js +1 -1
  228. package/dist/web/standalone/.next/server/app/api/session/browser/route.js.nft.json +1 -1
  229. package/dist/web/standalone/.next/server/app/api/session/command/route.js +1 -1
  230. package/dist/web/standalone/.next/server/app/api/session/command/route.js.nft.json +1 -1
  231. package/dist/web/standalone/.next/server/app/api/session/events/route.js +2 -2
  232. package/dist/web/standalone/.next/server/app/api/session/events/route.js.nft.json +1 -1
  233. package/dist/web/standalone/.next/server/app/api/session/manage/route.js +1 -1
  234. package/dist/web/standalone/.next/server/app/api/session/manage/route.js.nft.json +1 -1
  235. package/dist/web/standalone/.next/server/app/api/settings-data/route.js +1 -1
  236. package/dist/web/standalone/.next/server/app/api/settings-data/route.js.nft.json +1 -1
  237. package/dist/web/standalone/.next/server/app/api/shutdown/route.js +1 -1
  238. package/dist/web/standalone/.next/server/app/api/skill-health/route.js +1 -1
  239. package/dist/web/standalone/.next/server/app/api/skill-health/route.js.nft.json +1 -1
  240. package/dist/web/standalone/.next/server/app/api/steer/route.js +1 -1
  241. package/dist/web/standalone/.next/server/app/api/steer/route.js.nft.json +1 -1
  242. package/dist/web/standalone/.next/server/app/api/switch-root/route.js +1 -1
  243. package/dist/web/standalone/.next/server/app/api/switch-root/route.js.nft.json +1 -1
  244. package/dist/web/standalone/.next/server/app/api/terminal/input/route.js +2 -2
  245. package/dist/web/standalone/.next/server/app/api/terminal/resize/route.js +2 -2
  246. package/dist/web/standalone/.next/server/app/api/terminal/sessions/route.js +2 -2
  247. package/dist/web/standalone/.next/server/app/api/terminal/sessions/route.js.nft.json +1 -1
  248. package/dist/web/standalone/.next/server/app/api/terminal/stream/route.js +3 -3
  249. package/dist/web/standalone/.next/server/app/api/terminal/stream/route.js.nft.json +1 -1
  250. package/dist/web/standalone/.next/server/app/api/terminal/upload/route.js +1 -1
  251. package/dist/web/standalone/.next/server/app/api/undo/route.js +1 -1
  252. package/dist/web/standalone/.next/server/app/api/undo/route.js.nft.json +1 -1
  253. package/dist/web/standalone/.next/server/app/api/update/route.js +1 -1
  254. package/dist/web/standalone/.next/server/app/api/visualizer/route.js +1 -1
  255. package/dist/web/standalone/.next/server/app/api/visualizer/route.js.nft.json +1 -1
  256. package/dist/web/standalone/.next/server/app/index.html +1 -1
  257. package/dist/web/standalone/.next/server/app/index.rsc +3 -3
  258. package/dist/web/standalone/.next/server/app/index.segments/__PAGE__.segment.rsc +2 -2
  259. package/dist/web/standalone/.next/server/app/index.segments/_full.segment.rsc +3 -3
  260. package/dist/web/standalone/.next/server/app/index.segments/_head.segment.rsc +1 -1
  261. package/dist/web/standalone/.next/server/app/index.segments/_index.segment.rsc +2 -2
  262. package/dist/web/standalone/.next/server/app/index.segments/_tree.segment.rsc +2 -2
  263. package/dist/web/standalone/.next/server/app/page.js +2 -2
  264. package/dist/web/standalone/.next/server/app/page_client-reference-manifest.js +1 -1
  265. package/dist/web/standalone/.next/server/app-paths-manifest.json +16 -16
  266. package/dist/web/standalone/.next/server/chunks/2331.js +16 -16
  267. package/dist/web/standalone/.next/server/chunks/4741.js +12 -12
  268. package/dist/web/standalone/.next/server/chunks/5822.js +2 -2
  269. package/dist/web/standalone/.next/server/chunks/63.js +8 -8
  270. package/dist/web/standalone/.next/server/chunks/6336.js +1 -0
  271. package/dist/web/standalone/.next/server/chunks/6897.js +3 -3
  272. package/dist/web/standalone/.next/server/functions-config-manifest.json +9 -0
  273. package/dist/web/standalone/.next/server/middleware-build-manifest.js +1 -1
  274. package/dist/web/standalone/.next/server/middleware-manifest.json +2 -29
  275. package/dist/web/standalone/.next/server/middleware-react-loadable-manifest.js +1 -1
  276. package/dist/web/standalone/.next/server/middleware.js +12 -4
  277. package/dist/web/standalone/.next/server/pages/404.html +1 -1
  278. package/dist/web/standalone/.next/server/pages/500.html +1 -1
  279. package/dist/web/standalone/.next/server/server-reference-manifest.json +1 -1
  280. package/dist/web/standalone/.next/server/webpack-runtime.js +1 -1
  281. package/dist/web/standalone/.next/static/chunks/{9058.01ef3a463bda88f1.js → 2059.d6f49d697b624f2b.js} +2 -2
  282. package/dist/web/standalone/.next/static/chunks/2824.461404167557f2cd.js +1 -0
  283. package/dist/web/standalone/.next/static/chunks/363642f4.c6481b47ee815ba0.js +1 -0
  284. package/dist/web/standalone/.next/static/chunks/{3794-42fdce068d44fa4f.js → 3794-3fb4e6ee851037bb.js} +1 -1
  285. package/dist/web/standalone/.next/static/chunks/{4447.5bad7871be61ca73.js → 4447.fe6f304888d5ac71.js} +2 -2
  286. package/dist/web/standalone/.next/static/chunks/5326.def6842b53fecd26.js +1 -0
  287. package/dist/web/standalone/.next/static/chunks/{8336.31b019697882acfb.js → 8336.6f6f30e410419aff.js} +1 -1
  288. package/dist/web/standalone/.next/static/chunks/app/{page-9bf2e0c50fb2ca05.js → page-fab3ebb85b006001.js} +1 -1
  289. package/dist/web/standalone/.next/static/chunks/{framework-711ef29bc66f648c.js → framework-34a8c4228d7fd161.js} +1 -1
  290. package/dist/web/standalone/.next/static/chunks/{main-6919d9dd919bd15f.js → main-2b7d1294417bb6bc.js} +1 -1
  291. package/dist/web/standalone/.next/static/chunks/webpack-d82dbee6356c1733.js +1 -0
  292. package/dist/web/standalone/.next/static/css/{632cd626b1731d88.css → 54ec2745c1da488b.css} +1 -1
  293. package/dist/web/standalone/node_modules/@next/env/package.json +1 -1
  294. package/dist/web/standalone/node_modules/baseline-browser-mapping/dist/index.cjs +1 -1
  295. package/dist/web/standalone/node_modules/baseline-browser-mapping/package.json +3 -3
  296. package/dist/web/standalone/node_modules/caniuse-lite/data/agents.js +1 -1
  297. package/dist/web/standalone/node_modules/caniuse-lite/data/browserVersions.js +1 -1
  298. package/dist/web/standalone/node_modules/caniuse-lite/data/features/aac.js +1 -1
  299. package/dist/web/standalone/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -1
  300. package/dist/web/standalone/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -1
  301. package/dist/web/standalone/node_modules/caniuse-lite/data/features/accelerometer.js +1 -1
  302. package/dist/web/standalone/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -1
  303. package/dist/web/standalone/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -1
  304. package/dist/web/standalone/node_modules/caniuse-lite/data/features/ambient-light.js +1 -1
  305. package/dist/web/standalone/node_modules/caniuse-lite/data/features/apng.js +1 -1
  306. package/dist/web/standalone/node_modules/caniuse-lite/data/features/array-find-index.js +1 -1
  307. package/dist/web/standalone/node_modules/caniuse-lite/data/features/array-find.js +1 -1
  308. package/dist/web/standalone/node_modules/caniuse-lite/data/features/array-flat.js +1 -1
  309. package/dist/web/standalone/node_modules/caniuse-lite/data/features/array-includes.js +1 -1
  310. package/dist/web/standalone/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -1
  311. package/dist/web/standalone/node_modules/caniuse-lite/data/features/asmjs.js +1 -1
  312. package/dist/web/standalone/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -1
  313. package/dist/web/standalone/node_modules/caniuse-lite/data/features/async-functions.js +1 -1
  314. package/dist/web/standalone/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -1
  315. package/dist/web/standalone/node_modules/caniuse-lite/data/features/audio-api.js +1 -1
  316. package/dist/web/standalone/node_modules/caniuse-lite/data/features/audio.js +1 -1
  317. package/dist/web/standalone/node_modules/caniuse-lite/data/features/audiotracks.js +1 -1
  318. package/dist/web/standalone/node_modules/caniuse-lite/data/features/autofocus.js +1 -1
  319. package/dist/web/standalone/node_modules/caniuse-lite/data/features/auxclick.js +1 -1
  320. package/dist/web/standalone/node_modules/caniuse-lite/data/features/av1.js +1 -1
  321. package/dist/web/standalone/node_modules/caniuse-lite/data/features/avif.js +1 -1
  322. package/dist/web/standalone/node_modules/caniuse-lite/data/features/background-attachment.js +1 -1
  323. package/dist/web/standalone/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -1
  324. package/dist/web/standalone/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -1
  325. package/dist/web/standalone/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -1
  326. package/dist/web/standalone/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -1
  327. package/dist/web/standalone/node_modules/caniuse-lite/data/features/background-sync.js +1 -1
  328. package/dist/web/standalone/node_modules/caniuse-lite/data/features/battery-status.js +1 -1
  329. package/dist/web/standalone/node_modules/caniuse-lite/data/features/beacon.js +1 -1
  330. package/dist/web/standalone/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -1
  331. package/dist/web/standalone/node_modules/caniuse-lite/data/features/bigint.js +1 -1
  332. package/dist/web/standalone/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -1
  333. package/dist/web/standalone/node_modules/caniuse-lite/data/features/bloburls.js +1 -1
  334. package/dist/web/standalone/node_modules/caniuse-lite/data/features/border-image.js +1 -1
  335. package/dist/web/standalone/node_modules/caniuse-lite/data/features/border-radius.js +1 -1
  336. package/dist/web/standalone/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -1
  337. package/dist/web/standalone/node_modules/caniuse-lite/data/features/brotli.js +1 -1
  338. package/dist/web/standalone/node_modules/caniuse-lite/data/features/calc.js +1 -1
  339. package/dist/web/standalone/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -1
  340. package/dist/web/standalone/node_modules/caniuse-lite/data/features/canvas-text.js +1 -1
  341. package/dist/web/standalone/node_modules/caniuse-lite/data/features/canvas.js +1 -1
  342. package/dist/web/standalone/node_modules/caniuse-lite/data/features/ch-unit.js +1 -1
  343. package/dist/web/standalone/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -1
  344. package/dist/web/standalone/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -1
  345. package/dist/web/standalone/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -1
  346. package/dist/web/standalone/node_modules/caniuse-lite/data/features/classlist.js +1 -1
  347. package/dist/web/standalone/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -1
  348. package/dist/web/standalone/node_modules/caniuse-lite/data/features/clipboard.js +1 -1
  349. package/dist/web/standalone/node_modules/caniuse-lite/data/features/colr-v1.js +1 -1
  350. package/dist/web/standalone/node_modules/caniuse-lite/data/features/colr.js +1 -1
  351. package/dist/web/standalone/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -1
  352. package/dist/web/standalone/node_modules/caniuse-lite/data/features/console-basic.js +1 -1
  353. package/dist/web/standalone/node_modules/caniuse-lite/data/features/console-time.js +1 -1
  354. package/dist/web/standalone/node_modules/caniuse-lite/data/features/const.js +1 -1
  355. package/dist/web/standalone/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -1
  356. package/dist/web/standalone/node_modules/caniuse-lite/data/features/contenteditable.js +1 -1
  357. package/dist/web/standalone/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -1
  358. package/dist/web/standalone/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -1
  359. package/dist/web/standalone/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -1
  360. package/dist/web/standalone/node_modules/caniuse-lite/data/features/cors.js +1 -1
  361. package/dist/web/standalone/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -1
  362. package/dist/web/standalone/node_modules/caniuse-lite/data/features/credential-management.js +1 -1
  363. package/dist/web/standalone/node_modules/caniuse-lite/data/features/cross-document-view-transitions.js +1 -1
  364. package/dist/web/standalone/node_modules/caniuse-lite/data/features/cryptography.js +1 -1
  365. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-all.js +1 -1
  366. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-anchor-positioning.js +1 -1
  367. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-animation.js +1 -1
  368. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-any-link.js +1 -1
  369. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-appearance.js +1 -1
  370. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -1
  371. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-autofill.js +1 -1
  372. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -1
  373. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -1
  374. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -1
  375. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -1
  376. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -1
  377. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-canvas.js +1 -1
  378. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -1
  379. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -1
  380. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -1
  381. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -1
  382. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -1
  383. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -1
  384. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-color-function.js +1 -1
  385. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -1
  386. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -1
  387. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -1
  388. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -1
  389. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-containment.js +1 -1
  390. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -1
  391. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-counters.js +1 -1
  392. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -1
  393. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -1
  394. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -1
  395. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -1
  396. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -1
  397. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -1
  398. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -1
  399. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-element-function.js +1 -1
  400. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-env-function.js +1 -1
  401. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -1
  402. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -1
  403. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -1
  404. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -1
  405. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-filters.js +1 -1
  406. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -1
  407. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-first-line.js +1 -1
  408. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-fixed.js +1 -1
  409. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -1
  410. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -1
  411. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -1
  412. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -1
  413. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -1
  414. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -1
  415. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-gradients.js +1 -1
  416. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -1
  417. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-grid-lanes.js +1 -1
  418. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-grid.js +1 -1
  419. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -1
  420. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-has.js +1 -1
  421. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -1
  422. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-if.js +1 -1
  423. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -1
  424. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-image-set.js +1 -1
  425. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -1
  426. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -1
  427. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -1
  428. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -1
  429. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -1
  430. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -1
  431. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -1
  432. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -1
  433. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -1
  434. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-masks.js +1 -1
  435. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -1
  436. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -1
  437. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -1
  438. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -1
  439. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -1
  440. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -1
  441. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -1
  442. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -1
  443. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-module-scripts.js +1 -1
  444. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -1
  445. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -1
  446. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-nesting.js +1 -1
  447. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -1
  448. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -1
  449. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-opacity.js +1 -1
  450. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -1
  451. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -1
  452. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -1
  453. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-overflow.js +1 -1
  454. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -1
  455. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-page-break.js +1 -1
  456. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -1
  457. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -1
  458. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -1
  459. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -1
  460. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -1
  461. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -1
  462. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -1
  463. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-reflections.js +1 -1
  464. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-regions.js +1 -1
  465. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -1
  466. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -1
  467. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-resize.js +1 -1
  468. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -1
  469. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -1
  470. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -1
  471. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -1
  472. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-sel2.js +1 -1
  473. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-sel3.js +1 -1
  474. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-selection.js +1 -1
  475. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-shapes.js +1 -1
  476. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -1
  477. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-sticky.js +1 -1
  478. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -1
  479. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -1
  480. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-table.js +1 -1
  481. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -1
  482. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -1
  483. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -1
  484. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -1
  485. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -1
  486. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -1
  487. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -1
  488. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -1
  489. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -1
  490. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-transitions.js +1 -1
  491. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -1
  492. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -1
  493. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-variables.js +1 -1
  494. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-when-else.js +1 -1
  495. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -1
  496. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -1
  497. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -1
  498. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css-zoom.js +1 -1
  499. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css3-attr.js +1 -1
  500. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -1
  501. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css3-colors.js +1 -1
  502. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -1
  503. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -1
  504. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -1
  505. package/dist/web/standalone/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -1
  506. package/dist/web/standalone/node_modules/caniuse-lite/data/features/currentcolor.js +1 -1
  507. package/dist/web/standalone/node_modules/caniuse-lite/data/features/custom-elements.js +1 -1
  508. package/dist/web/standalone/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -1
  509. package/dist/web/standalone/node_modules/caniuse-lite/data/features/customevent.js +1 -1
  510. package/dist/web/standalone/node_modules/caniuse-lite/data/features/customizable-select.js +1 -1
  511. package/dist/web/standalone/node_modules/caniuse-lite/data/features/datalist.js +1 -1
  512. package/dist/web/standalone/node_modules/caniuse-lite/data/features/dataset.js +1 -1
  513. package/dist/web/standalone/node_modules/caniuse-lite/data/features/datauri.js +1 -1
  514. package/dist/web/standalone/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -1
  515. package/dist/web/standalone/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -1
  516. package/dist/web/standalone/node_modules/caniuse-lite/data/features/decorators.js +1 -1
  517. package/dist/web/standalone/node_modules/caniuse-lite/data/features/details.js +1 -1
  518. package/dist/web/standalone/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -1
  519. package/dist/web/standalone/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -1
  520. package/dist/web/standalone/node_modules/caniuse-lite/data/features/dialog.js +1 -1
  521. package/dist/web/standalone/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -1
  522. package/dist/web/standalone/node_modules/caniuse-lite/data/features/dnssec.js +1 -1
  523. package/dist/web/standalone/node_modules/caniuse-lite/data/features/do-not-track.js +1 -1
  524. package/dist/web/standalone/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -1
  525. package/dist/web/standalone/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -1
  526. package/dist/web/standalone/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -1
  527. package/dist/web/standalone/node_modules/caniuse-lite/data/features/document-policy.js +1 -1
  528. package/dist/web/standalone/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -1
  529. package/dist/web/standalone/node_modules/caniuse-lite/data/features/documenthead.js +1 -1
  530. package/dist/web/standalone/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -1
  531. package/dist/web/standalone/node_modules/caniuse-lite/data/features/dom-range.js +1 -1
  532. package/dist/web/standalone/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -1
  533. package/dist/web/standalone/node_modules/caniuse-lite/data/features/dommatrix.js +1 -1
  534. package/dist/web/standalone/node_modules/caniuse-lite/data/features/download.js +1 -1
  535. package/dist/web/standalone/node_modules/caniuse-lite/data/features/dragndrop.js +1 -1
  536. package/dist/web/standalone/node_modules/caniuse-lite/data/features/element-closest.js +1 -1
  537. package/dist/web/standalone/node_modules/caniuse-lite/data/features/element-from-point.js +1 -1
  538. package/dist/web/standalone/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -1
  539. package/dist/web/standalone/node_modules/caniuse-lite/data/features/eme.js +1 -1
  540. package/dist/web/standalone/node_modules/caniuse-lite/data/features/eot.js +1 -1
  541. package/dist/web/standalone/node_modules/caniuse-lite/data/features/es5.js +1 -1
  542. package/dist/web/standalone/node_modules/caniuse-lite/data/features/es6-class.js +1 -1
  543. package/dist/web/standalone/node_modules/caniuse-lite/data/features/es6-generators.js +1 -1
  544. package/dist/web/standalone/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -1
  545. package/dist/web/standalone/node_modules/caniuse-lite/data/features/es6-module.js +1 -1
  546. package/dist/web/standalone/node_modules/caniuse-lite/data/features/es6-number.js +1 -1
  547. package/dist/web/standalone/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -1
  548. package/dist/web/standalone/node_modules/caniuse-lite/data/features/es6.js +1 -1
  549. package/dist/web/standalone/node_modules/caniuse-lite/data/features/eventsource.js +1 -1
  550. package/dist/web/standalone/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -1
  551. package/dist/web/standalone/node_modules/caniuse-lite/data/features/feature-policy.js +1 -1
  552. package/dist/web/standalone/node_modules/caniuse-lite/data/features/fetch.js +1 -1
  553. package/dist/web/standalone/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -1
  554. package/dist/web/standalone/node_modules/caniuse-lite/data/features/fileapi.js +1 -1
  555. package/dist/web/standalone/node_modules/caniuse-lite/data/features/filereader.js +1 -1
  556. package/dist/web/standalone/node_modules/caniuse-lite/data/features/filereadersync.js +1 -1
  557. package/dist/web/standalone/node_modules/caniuse-lite/data/features/filesystem.js +1 -1
  558. package/dist/web/standalone/node_modules/caniuse-lite/data/features/flac.js +1 -1
  559. package/dist/web/standalone/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -1
  560. package/dist/web/standalone/node_modules/caniuse-lite/data/features/flexbox.js +1 -1
  561. package/dist/web/standalone/node_modules/caniuse-lite/data/features/flow-root.js +1 -1
  562. package/dist/web/standalone/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -1
  563. package/dist/web/standalone/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -1
  564. package/dist/web/standalone/node_modules/caniuse-lite/data/features/font-feature.js +1 -1
  565. package/dist/web/standalone/node_modules/caniuse-lite/data/features/font-kerning.js +1 -1
  566. package/dist/web/standalone/node_modules/caniuse-lite/data/features/font-loading.js +1 -1
  567. package/dist/web/standalone/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -1
  568. package/dist/web/standalone/node_modules/caniuse-lite/data/features/font-smooth.js +1 -1
  569. package/dist/web/standalone/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -1
  570. package/dist/web/standalone/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -1
  571. package/dist/web/standalone/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -1
  572. package/dist/web/standalone/node_modules/caniuse-lite/data/features/fontface.js +1 -1
  573. package/dist/web/standalone/node_modules/caniuse-lite/data/features/form-attribute.js +1 -1
  574. package/dist/web/standalone/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -1
  575. package/dist/web/standalone/node_modules/caniuse-lite/data/features/form-validation.js +1 -1
  576. package/dist/web/standalone/node_modules/caniuse-lite/data/features/forms.js +1 -1
  577. package/dist/web/standalone/node_modules/caniuse-lite/data/features/fullscreen.js +1 -1
  578. package/dist/web/standalone/node_modules/caniuse-lite/data/features/gamepad.js +1 -1
  579. package/dist/web/standalone/node_modules/caniuse-lite/data/features/geolocation.js +1 -1
  580. package/dist/web/standalone/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -1
  581. package/dist/web/standalone/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -1
  582. package/dist/web/standalone/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -1
  583. package/dist/web/standalone/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -1
  584. package/dist/web/standalone/node_modules/caniuse-lite/data/features/gyroscope.js +1 -1
  585. package/dist/web/standalone/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -1
  586. package/dist/web/standalone/node_modules/caniuse-lite/data/features/hashchange.js +1 -1
  587. package/dist/web/standalone/node_modules/caniuse-lite/data/features/heif.js +1 -1
  588. package/dist/web/standalone/node_modules/caniuse-lite/data/features/hevc.js +1 -1
  589. package/dist/web/standalone/node_modules/caniuse-lite/data/features/hidden.js +1 -1
  590. package/dist/web/standalone/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -1
  591. package/dist/web/standalone/node_modules/caniuse-lite/data/features/history.js +1 -1
  592. package/dist/web/standalone/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -1
  593. package/dist/web/standalone/node_modules/caniuse-lite/data/features/html5semantic.js +1 -1
  594. package/dist/web/standalone/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -1
  595. package/dist/web/standalone/node_modules/caniuse-lite/data/features/http2.js +1 -1
  596. package/dist/web/standalone/node_modules/caniuse-lite/data/features/http3.js +1 -1
  597. package/dist/web/standalone/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -1
  598. package/dist/web/standalone/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -1
  599. package/dist/web/standalone/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -1
  600. package/dist/web/standalone/node_modules/caniuse-lite/data/features/imagecapture.js +1 -1
  601. package/dist/web/standalone/node_modules/caniuse-lite/data/features/ime.js +1 -1
  602. package/dist/web/standalone/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -1
  603. package/dist/web/standalone/node_modules/caniuse-lite/data/features/import-maps.js +1 -1
  604. package/dist/web/standalone/node_modules/caniuse-lite/data/features/imports.js +1 -1
  605. package/dist/web/standalone/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -1
  606. package/dist/web/standalone/node_modules/caniuse-lite/data/features/indexeddb.js +1 -1
  607. package/dist/web/standalone/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -1
  608. package/dist/web/standalone/node_modules/caniuse-lite/data/features/inline-block.js +1 -1
  609. package/dist/web/standalone/node_modules/caniuse-lite/data/features/innertext.js +1 -1
  610. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -1
  611. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-color.js +1 -1
  612. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-datetime.js +1 -1
  613. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -1
  614. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-event.js +1 -1
  615. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -1
  616. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -1
  617. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -1
  618. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -1
  619. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-minlength.js +1 -1
  620. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-number.js +1 -1
  621. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-pattern.js +1 -1
  622. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -1
  623. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-range.js +1 -1
  624. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-search.js +1 -1
  625. package/dist/web/standalone/node_modules/caniuse-lite/data/features/input-selection.js +1 -1
  626. package/dist/web/standalone/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -1
  627. package/dist/web/standalone/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -1
  628. package/dist/web/standalone/node_modules/caniuse-lite/data/features/internationalization.js +1 -1
  629. package/dist/web/standalone/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -1
  630. package/dist/web/standalone/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -1
  631. package/dist/web/standalone/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -1
  632. package/dist/web/standalone/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -1
  633. package/dist/web/standalone/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -1
  634. package/dist/web/standalone/node_modules/caniuse-lite/data/features/jpegxl.js +1 -1
  635. package/dist/web/standalone/node_modules/caniuse-lite/data/features/jpegxr.js +1 -1
  636. package/dist/web/standalone/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -1
  637. package/dist/web/standalone/node_modules/caniuse-lite/data/features/json.js +1 -1
  638. package/dist/web/standalone/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -1
  639. package/dist/web/standalone/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -1
  640. package/dist/web/standalone/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -1
  641. package/dist/web/standalone/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -1
  642. package/dist/web/standalone/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -1
  643. package/dist/web/standalone/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -1
  644. package/dist/web/standalone/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -1
  645. package/dist/web/standalone/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -1
  646. package/dist/web/standalone/node_modules/caniuse-lite/data/features/lazyload.js +1 -1
  647. package/dist/web/standalone/node_modules/caniuse-lite/data/features/let.js +1 -1
  648. package/dist/web/standalone/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -1
  649. package/dist/web/standalone/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -1
  650. package/dist/web/standalone/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -1
  651. package/dist/web/standalone/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -1
  652. package/dist/web/standalone/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -1
  653. package/dist/web/standalone/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -1
  654. package/dist/web/standalone/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -1
  655. package/dist/web/standalone/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -1
  656. package/dist/web/standalone/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -1
  657. package/dist/web/standalone/node_modules/caniuse-lite/data/features/loading-lazy-media.js +1 -1
  658. package/dist/web/standalone/node_modules/caniuse-lite/data/features/localecompare.js +1 -1
  659. package/dist/web/standalone/node_modules/caniuse-lite/data/features/magnetometer.js +1 -1
  660. package/dist/web/standalone/node_modules/caniuse-lite/data/features/matchesselector.js +1 -1
  661. package/dist/web/standalone/node_modules/caniuse-lite/data/features/matchmedia.js +1 -1
  662. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mathml.js +1 -1
  663. package/dist/web/standalone/node_modules/caniuse-lite/data/features/maxlength.js +1 -1
  664. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js +1 -1
  665. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -1
  666. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -1
  667. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -1
  668. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -1
  669. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -1
  670. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -1
  671. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -1
  672. package/dist/web/standalone/node_modules/caniuse-lite/data/features/media-fragments.js +1 -1
  673. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -1
  674. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -1
  675. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mediasource.js +1 -1
  676. package/dist/web/standalone/node_modules/caniuse-lite/data/features/menu.js +1 -1
  677. package/dist/web/standalone/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -1
  678. package/dist/web/standalone/node_modules/caniuse-lite/data/features/meter.js +1 -1
  679. package/dist/web/standalone/node_modules/caniuse-lite/data/features/midi.js +1 -1
  680. package/dist/web/standalone/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -1
  681. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mp3.js +1 -1
  682. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -1
  683. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mpeg4.js +1 -1
  684. package/dist/web/standalone/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -1
  685. package/dist/web/standalone/node_modules/caniuse-lite/data/features/multicolumn.js +1 -1
  686. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mutation-events.js +1 -1
  687. package/dist/web/standalone/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -1
  688. package/dist/web/standalone/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -1
  689. package/dist/web/standalone/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -1
  690. package/dist/web/standalone/node_modules/caniuse-lite/data/features/nav-timing.js +1 -1
  691. package/dist/web/standalone/node_modules/caniuse-lite/data/features/netinfo.js +1 -1
  692. package/dist/web/standalone/node_modules/caniuse-lite/data/features/notifications.js +1 -1
  693. package/dist/web/standalone/node_modules/caniuse-lite/data/features/object-entries.js +1 -1
  694. package/dist/web/standalone/node_modules/caniuse-lite/data/features/object-fit.js +1 -1
  695. package/dist/web/standalone/node_modules/caniuse-lite/data/features/object-observe.js +1 -1
  696. package/dist/web/standalone/node_modules/caniuse-lite/data/features/object-values.js +1 -1
  697. package/dist/web/standalone/node_modules/caniuse-lite/data/features/objectrtc.js +1 -1
  698. package/dist/web/standalone/node_modules/caniuse-lite/data/features/offline-apps.js +1 -1
  699. package/dist/web/standalone/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -1
  700. package/dist/web/standalone/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -1
  701. package/dist/web/standalone/node_modules/caniuse-lite/data/features/ogv.js +1 -1
  702. package/dist/web/standalone/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -1
  703. package/dist/web/standalone/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -1
  704. package/dist/web/standalone/node_modules/caniuse-lite/data/features/online-status.js +1 -1
  705. package/dist/web/standalone/node_modules/caniuse-lite/data/features/opus.js +1 -1
  706. package/dist/web/standalone/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -1
  707. package/dist/web/standalone/node_modules/caniuse-lite/data/features/outline.js +1 -1
  708. package/dist/web/standalone/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -1
  709. package/dist/web/standalone/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -1
  710. package/dist/web/standalone/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -1
  711. package/dist/web/standalone/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -1
  712. package/dist/web/standalone/node_modules/caniuse-lite/data/features/passkeys.js +1 -1
  713. package/dist/web/standalone/node_modules/caniuse-lite/data/features/passwordrules.js +1 -1
  714. package/dist/web/standalone/node_modules/caniuse-lite/data/features/path2d.js +1 -1
  715. package/dist/web/standalone/node_modules/caniuse-lite/data/features/payment-request.js +1 -1
  716. package/dist/web/standalone/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -1
  717. package/dist/web/standalone/node_modules/caniuse-lite/data/features/permissions-api.js +1 -1
  718. package/dist/web/standalone/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -1
  719. package/dist/web/standalone/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -1
  720. package/dist/web/standalone/node_modules/caniuse-lite/data/features/picture.js +1 -1
  721. package/dist/web/standalone/node_modules/caniuse-lite/data/features/ping.js +1 -1
  722. package/dist/web/standalone/node_modules/caniuse-lite/data/features/png-alpha.js +1 -1
  723. package/dist/web/standalone/node_modules/caniuse-lite/data/features/pointer-events.js +1 -1
  724. package/dist/web/standalone/node_modules/caniuse-lite/data/features/pointer.js +1 -1
  725. package/dist/web/standalone/node_modules/caniuse-lite/data/features/pointerlock.js +1 -1
  726. package/dist/web/standalone/node_modules/caniuse-lite/data/features/portals.js +1 -1
  727. package/dist/web/standalone/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -1
  728. package/dist/web/standalone/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -1
  729. package/dist/web/standalone/node_modules/caniuse-lite/data/features/progress.js +1 -1
  730. package/dist/web/standalone/node_modules/caniuse-lite/data/features/promise-finally.js +1 -1
  731. package/dist/web/standalone/node_modules/caniuse-lite/data/features/promises.js +1 -1
  732. package/dist/web/standalone/node_modules/caniuse-lite/data/features/proximity.js +1 -1
  733. package/dist/web/standalone/node_modules/caniuse-lite/data/features/proxy.js +1 -1
  734. package/dist/web/standalone/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -1
  735. package/dist/web/standalone/node_modules/caniuse-lite/data/features/push-api.js +1 -1
  736. package/dist/web/standalone/node_modules/caniuse-lite/data/features/queryselector.js +1 -1
  737. package/dist/web/standalone/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -1
  738. package/dist/web/standalone/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -1
  739. package/dist/web/standalone/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -1
  740. package/dist/web/standalone/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -1
  741. package/dist/web/standalone/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -1
  742. package/dist/web/standalone/node_modules/caniuse-lite/data/features/rellist.js +1 -1
  743. package/dist/web/standalone/node_modules/caniuse-lite/data/features/rem.js +1 -1
  744. package/dist/web/standalone/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -1
  745. package/dist/web/standalone/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -1
  746. package/dist/web/standalone/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -1
  747. package/dist/web/standalone/node_modules/caniuse-lite/data/features/resource-timing.js +1 -1
  748. package/dist/web/standalone/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -1
  749. package/dist/web/standalone/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -1
  750. package/dist/web/standalone/node_modules/caniuse-lite/data/features/ruby.js +1 -1
  751. package/dist/web/standalone/node_modules/caniuse-lite/data/features/run-in.js +1 -1
  752. package/dist/web/standalone/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -1
  753. package/dist/web/standalone/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -1
  754. package/dist/web/standalone/node_modules/caniuse-lite/data/features/script-async.js +1 -1
  755. package/dist/web/standalone/node_modules/caniuse-lite/data/features/script-defer.js +1 -1
  756. package/dist/web/standalone/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -1
  757. package/dist/web/standalone/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -1
  758. package/dist/web/standalone/node_modules/caniuse-lite/data/features/sdch.js +1 -1
  759. package/dist/web/standalone/node_modules/caniuse-lite/data/features/selection-api.js +1 -1
  760. package/dist/web/standalone/node_modules/caniuse-lite/data/features/server-timing.js +1 -1
  761. package/dist/web/standalone/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -1
  762. package/dist/web/standalone/node_modules/caniuse-lite/data/features/setimmediate.js +1 -1
  763. package/dist/web/standalone/node_modules/caniuse-lite/data/features/shadowdom.js +1 -1
  764. package/dist/web/standalone/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -1
  765. package/dist/web/standalone/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -1
  766. package/dist/web/standalone/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -1
  767. package/dist/web/standalone/node_modules/caniuse-lite/data/features/sni.js +1 -1
  768. package/dist/web/standalone/node_modules/caniuse-lite/data/features/spdy.js +1 -1
  769. package/dist/web/standalone/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -1
  770. package/dist/web/standalone/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -1
  771. package/dist/web/standalone/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -1
  772. package/dist/web/standalone/node_modules/caniuse-lite/data/features/sql-storage.js +1 -1
  773. package/dist/web/standalone/node_modules/caniuse-lite/data/features/srcset.js +1 -1
  774. package/dist/web/standalone/node_modules/caniuse-lite/data/features/stream.js +1 -1
  775. package/dist/web/standalone/node_modules/caniuse-lite/data/features/streams.js +1 -1
  776. package/dist/web/standalone/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -1
  777. package/dist/web/standalone/node_modules/caniuse-lite/data/features/style-scoped.js +1 -1
  778. package/dist/web/standalone/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -1
  779. package/dist/web/standalone/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -1
  780. package/dist/web/standalone/node_modules/caniuse-lite/data/features/svg-css.js +1 -1
  781. package/dist/web/standalone/node_modules/caniuse-lite/data/features/svg-filters.js +1 -1
  782. package/dist/web/standalone/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -1
  783. package/dist/web/standalone/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -1
  784. package/dist/web/standalone/node_modules/caniuse-lite/data/features/svg-html.js +1 -1
  785. package/dist/web/standalone/node_modules/caniuse-lite/data/features/svg-html5.js +1 -1
  786. package/dist/web/standalone/node_modules/caniuse-lite/data/features/svg-img.js +1 -1
  787. package/dist/web/standalone/node_modules/caniuse-lite/data/features/svg-smil.js +1 -1
  788. package/dist/web/standalone/node_modules/caniuse-lite/data/features/svg.js +1 -1
  789. package/dist/web/standalone/node_modules/caniuse-lite/data/features/sxg.js +1 -1
  790. package/dist/web/standalone/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -1
  791. package/dist/web/standalone/node_modules/caniuse-lite/data/features/template-literals.js +1 -1
  792. package/dist/web/standalone/node_modules/caniuse-lite/data/features/template.js +1 -1
  793. package/dist/web/standalone/node_modules/caniuse-lite/data/features/temporal.js +1 -1
  794. package/dist/web/standalone/node_modules/caniuse-lite/data/features/testfeat.js +1 -1
  795. package/dist/web/standalone/node_modules/caniuse-lite/data/features/text-decoration.js +1 -1
  796. package/dist/web/standalone/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -1
  797. package/dist/web/standalone/node_modules/caniuse-lite/data/features/text-overflow.js +1 -1
  798. package/dist/web/standalone/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -1
  799. package/dist/web/standalone/node_modules/caniuse-lite/data/features/text-stroke.js +1 -1
  800. package/dist/web/standalone/node_modules/caniuse-lite/data/features/textcontent.js +1 -1
  801. package/dist/web/standalone/node_modules/caniuse-lite/data/features/textencoder.js +1 -1
  802. package/dist/web/standalone/node_modules/caniuse-lite/data/features/tls1-1.js +1 -1
  803. package/dist/web/standalone/node_modules/caniuse-lite/data/features/tls1-2.js +1 -1
  804. package/dist/web/standalone/node_modules/caniuse-lite/data/features/tls1-3.js +1 -1
  805. package/dist/web/standalone/node_modules/caniuse-lite/data/features/touch.js +1 -1
  806. package/dist/web/standalone/node_modules/caniuse-lite/data/features/transforms2d.js +1 -1
  807. package/dist/web/standalone/node_modules/caniuse-lite/data/features/transforms3d.js +1 -1
  808. package/dist/web/standalone/node_modules/caniuse-lite/data/features/trusted-types.js +1 -1
  809. package/dist/web/standalone/node_modules/caniuse-lite/data/features/ttf.js +1 -1
  810. package/dist/web/standalone/node_modules/caniuse-lite/data/features/typedarrays.js +1 -1
  811. package/dist/web/standalone/node_modules/caniuse-lite/data/features/u2f.js +1 -1
  812. package/dist/web/standalone/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -1
  813. package/dist/web/standalone/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -1
  814. package/dist/web/standalone/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -1
  815. package/dist/web/standalone/node_modules/caniuse-lite/data/features/url.js +1 -1
  816. package/dist/web/standalone/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -1
  817. package/dist/web/standalone/node_modules/caniuse-lite/data/features/use-strict.js +1 -1
  818. package/dist/web/standalone/node_modules/caniuse-lite/data/features/user-select-none.js +1 -1
  819. package/dist/web/standalone/node_modules/caniuse-lite/data/features/user-timing.js +1 -1
  820. package/dist/web/standalone/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -1
  821. package/dist/web/standalone/node_modules/caniuse-lite/data/features/vector-effect.js +1 -1
  822. package/dist/web/standalone/node_modules/caniuse-lite/data/features/vibration.js +1 -1
  823. package/dist/web/standalone/node_modules/caniuse-lite/data/features/video.js +1 -1
  824. package/dist/web/standalone/node_modules/caniuse-lite/data/features/videotracks.js +1 -1
  825. package/dist/web/standalone/node_modules/caniuse-lite/data/features/view-transitions.js +1 -1
  826. package/dist/web/standalone/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -1
  827. package/dist/web/standalone/node_modules/caniuse-lite/data/features/viewport-units.js +1 -1
  828. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wai-aria.js +1 -1
  829. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wake-lock.js +1 -1
  830. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-bigint.js +1 -1
  831. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js +1 -1
  832. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-extended-const.js +1 -1
  833. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-gc.js +1 -1
  834. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-multi-memory.js +1 -1
  835. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-multi-value.js +1 -1
  836. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js +1 -1
  837. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js +1 -1
  838. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-reference-types.js +1 -1
  839. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js +1 -1
  840. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-signext.js +1 -1
  841. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-simd.js +1 -1
  842. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-tail-calls.js +1 -1
  843. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm-threads.js +1 -1
  844. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wasm.js +1 -1
  845. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wav.js +1 -1
  846. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wbr-element.js +1 -1
  847. package/dist/web/standalone/node_modules/caniuse-lite/data/features/web-animation.js +1 -1
  848. package/dist/web/standalone/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -1
  849. package/dist/web/standalone/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -1
  850. package/dist/web/standalone/node_modules/caniuse-lite/data/features/web-serial.js +1 -1
  851. package/dist/web/standalone/node_modules/caniuse-lite/data/features/web-share.js +1 -1
  852. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webauthn.js +1 -1
  853. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webcodecs.js +1 -1
  854. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webgl.js +1 -1
  855. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webgl2.js +1 -1
  856. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webgpu.js +1 -1
  857. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webhid.js +1 -1
  858. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -1
  859. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webm.js +1 -1
  860. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webnfc.js +1 -1
  861. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webp.js +1 -1
  862. package/dist/web/standalone/node_modules/caniuse-lite/data/features/websockets.js +1 -1
  863. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webtransport.js +1 -1
  864. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webusb.js +1 -1
  865. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webvr.js +1 -1
  866. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webvtt.js +1 -1
  867. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webworkers.js +1 -1
  868. package/dist/web/standalone/node_modules/caniuse-lite/data/features/webxr.js +1 -1
  869. package/dist/web/standalone/node_modules/caniuse-lite/data/features/will-change.js +1 -1
  870. package/dist/web/standalone/node_modules/caniuse-lite/data/features/woff.js +1 -1
  871. package/dist/web/standalone/node_modules/caniuse-lite/data/features/woff2.js +1 -1
  872. package/dist/web/standalone/node_modules/caniuse-lite/data/features/word-break.js +1 -1
  873. package/dist/web/standalone/node_modules/caniuse-lite/data/features/wordwrap.js +1 -1
  874. package/dist/web/standalone/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -1
  875. package/dist/web/standalone/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -1
  876. package/dist/web/standalone/node_modules/caniuse-lite/data/features/xhr2.js +1 -1
  877. package/dist/web/standalone/node_modules/caniuse-lite/data/features/xhtml.js +1 -1
  878. package/dist/web/standalone/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -1
  879. package/dist/web/standalone/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -1
  880. package/dist/web/standalone/node_modules/caniuse-lite/data/features/zstd.js +1 -1
  881. package/dist/web/standalone/node_modules/caniuse-lite/package.json +7 -7
  882. package/dist/web/standalone/node_modules/next/dist/build/swc/index.js +1 -1
  883. package/dist/web/standalone/node_modules/next/dist/build/webpack-config.js +3 -3
  884. package/dist/web/standalone/node_modules/next/dist/compiled/next-server/pages-turbo.runtime.prod.js +7 -7
  885. package/dist/web/standalone/node_modules/next/dist/compiled/next-server/pages.runtime.prod.js +6 -6
  886. package/dist/web/standalone/node_modules/next/dist/lib/patch-incorrect-lockfile.js +3 -3
  887. package/dist/web/standalone/node_modules/next/dist/server/config-schema.js +10 -2
  888. package/dist/web/standalone/node_modules/next/dist/server/config.js +1 -1
  889. package/dist/web/standalone/node_modules/next/dist/server/dev/hot-reloader-turbopack.js +2 -2
  890. package/dist/web/standalone/node_modules/next/dist/server/dev/hot-reloader-webpack.js +1 -1
  891. package/dist/web/standalone/node_modules/next/dist/server/lib/app-info-log.js +1 -1
  892. package/dist/web/standalone/node_modules/next/dist/server/lib/start-server.js +1 -1
  893. package/dist/web/standalone/node_modules/next/dist/server/render.js +27 -20
  894. package/dist/web/standalone/node_modules/next/dist/shared/lib/errors/canary-only-config-error.js +1 -1
  895. package/dist/web/standalone/node_modules/next/dist/telemetry/anonymous-meta.js +1 -1
  896. package/dist/web/standalone/node_modules/next/dist/telemetry/events/swc-load-failure.js +1 -1
  897. package/dist/web/standalone/node_modules/next/dist/telemetry/events/version.js +2 -2
  898. package/dist/web/standalone/node_modules/next/package.json +15 -15
  899. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/container.js +26 -18
  900. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/css-syntax-error.js +47 -14
  901. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/input.js +54 -29
  902. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/lazy-result.js +47 -37
  903. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/map-generator.js +26 -9
  904. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/no-work-result.js +57 -55
  905. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/node.js +99 -31
  906. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/parser.js +10 -9
  907. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/previous-map.js +30 -11
  908. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/processor.js +7 -7
  909. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/result.js +5 -5
  910. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/stringifier.js +69 -28
  911. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/tokenize.js +6 -2
  912. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/package.json +48 -48
  913. package/dist/web/standalone/node_modules/react/cjs/react.development.js +1 -1
  914. package/dist/web/standalone/node_modules/react/cjs/react.production.js +1 -1
  915. package/dist/web/standalone/node_modules/react/package.json +1 -1
  916. package/dist/web/standalone/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.js +1 -1
  917. package/dist/web/standalone/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.js +1 -1
  918. package/dist/web/standalone/node_modules/react-dom/cjs/react-dom-server.browser.production.js +3 -3
  919. package/dist/web/standalone/node_modules/react-dom/cjs/react-dom-server.edge.production.js +3 -3
  920. package/dist/web/standalone/node_modules/react-dom/cjs/react-dom-server.node.production.js +3 -3
  921. package/dist/web/standalone/node_modules/react-dom/cjs/react-dom.production.js +1 -1
  922. package/dist/web/standalone/node_modules/react-dom/package.json +2 -2
  923. package/dist/web/standalone/package.json +12 -7
  924. package/dist/worktree-cli.d.ts +5 -4
  925. package/dist/worktree-cli.js +17 -17
  926. package/package.json +2 -2
  927. package/packages/mcp-server/README.md +11 -0
  928. package/packages/mcp-server/dist/env-writer.d.ts +5 -1
  929. package/packages/mcp-server/dist/env-writer.d.ts.map +1 -1
  930. package/packages/mcp-server/dist/env-writer.js +41 -8
  931. package/packages/mcp-server/dist/env-writer.js.map +1 -1
  932. package/packages/mcp-server/dist/readers/graph.d.ts.map +1 -1
  933. package/packages/mcp-server/dist/readers/graph.js +7 -6
  934. package/packages/mcp-server/dist/readers/graph.js.map +1 -1
  935. package/packages/mcp-server/dist/readers/paths.d.ts +2 -0
  936. package/packages/mcp-server/dist/readers/paths.d.ts.map +1 -1
  937. package/packages/mcp-server/dist/readers/paths.js +163 -59
  938. package/packages/mcp-server/dist/readers/paths.js.map +1 -1
  939. package/packages/mcp-server/dist/remote-questions.d.ts.map +1 -1
  940. package/packages/mcp-server/dist/remote-questions.js +19 -2
  941. package/packages/mcp-server/dist/remote-questions.js.map +1 -1
  942. package/packages/mcp-server/dist/server.d.ts +11 -1
  943. package/packages/mcp-server/dist/server.d.ts.map +1 -1
  944. package/packages/mcp-server/dist/server.js +138 -52
  945. package/packages/mcp-server/dist/server.js.map +1 -1
  946. package/packages/mcp-server/dist/session-manager.d.ts +6 -1
  947. package/packages/mcp-server/dist/session-manager.d.ts.map +1 -1
  948. package/packages/mcp-server/dist/session-manager.js +35 -13
  949. package/packages/mcp-server/dist/session-manager.js.map +1 -1
  950. package/packages/mcp-server/dist/workflow-tools.d.ts +7 -1
  951. package/packages/mcp-server/dist/workflow-tools.d.ts.map +1 -1
  952. package/packages/mcp-server/dist/workflow-tools.js +160 -30
  953. package/packages/mcp-server/dist/workflow-tools.js.map +1 -1
  954. package/packages/mcp-server/src/env-writer.test.ts +76 -1
  955. package/packages/mcp-server/src/env-writer.ts +48 -9
  956. package/packages/mcp-server/src/import-candidates.test.ts +9 -4
  957. package/packages/mcp-server/src/mcp-server.test.ts +196 -2
  958. package/packages/mcp-server/src/parse-workflow-args.test.ts +80 -0
  959. package/packages/mcp-server/src/readers/graph.test.ts +5 -2
  960. package/packages/mcp-server/src/readers/graph.ts +14 -6
  961. package/packages/mcp-server/src/readers/paths.test.ts +67 -0
  962. package/packages/mcp-server/src/readers/paths.ts +173 -56
  963. package/packages/mcp-server/src/remote-questions.ts +18 -2
  964. package/packages/mcp-server/src/server.ts +159 -57
  965. package/packages/mcp-server/src/session-manager.ts +33 -12
  966. package/packages/mcp-server/src/workflow-tools.test.ts +230 -136
  967. package/packages/mcp-server/src/workflow-tools.ts +171 -33
  968. package/packages/mcp-server/tsconfig.tsbuildinfo +1 -1
  969. package/packages/native/dist/stream-process/index.js +207 -6
  970. package/packages/native/src/__tests__/stream-process.test.mjs +51 -18
  971. package/packages/native/src/stream-process/index.ts +249 -11
  972. package/packages/native/tsconfig.tsbuildinfo +1 -1
  973. package/packages/pi-ai/dist/providers/anthropic-bearer-auth.test.js +8 -2
  974. package/packages/pi-ai/dist/providers/anthropic-bearer-auth.test.js.map +1 -1
  975. package/packages/pi-ai/dist/providers/minimax-tool-name.test.js +8 -2
  976. package/packages/pi-ai/dist/providers/minimax-tool-name.test.js.map +1 -1
  977. package/packages/pi-ai/src/providers/anthropic-bearer-auth.test.ts +8 -2
  978. package/packages/pi-ai/src/providers/minimax-tool-name.test.ts +9 -2
  979. package/packages/pi-ai/tsconfig.tsbuildinfo +1 -1
  980. package/packages/pi-coding-agent/dist/core/agent-session-abort-order.test.js +278 -0
  981. package/packages/pi-coding-agent/dist/core/agent-session-abort-order.test.js.map +1 -1
  982. package/packages/pi-coding-agent/dist/core/agent-session.d.ts +7 -0
  983. package/packages/pi-coding-agent/dist/core/agent-session.d.ts.map +1 -1
  984. package/packages/pi-coding-agent/dist/core/agent-session.js +125 -55
  985. package/packages/pi-coding-agent/dist/core/agent-session.js.map +1 -1
  986. package/packages/pi-coding-agent/dist/core/extensions/runner.d.ts +1 -0
  987. package/packages/pi-coding-agent/dist/core/extensions/runner.d.ts.map +1 -1
  988. package/packages/pi-coding-agent/dist/core/extensions/runner.js +43 -2
  989. package/packages/pi-coding-agent/dist/core/extensions/runner.js.map +1 -1
  990. package/packages/pi-coding-agent/dist/core/extensions/runner.test.js +79 -1
  991. package/packages/pi-coding-agent/dist/core/extensions/runner.test.js.map +1 -1
  992. package/packages/pi-coding-agent/dist/core/tools/bash-spawn-windows.test.js +24 -6
  993. package/packages/pi-coding-agent/dist/core/tools/bash-spawn-windows.test.js.map +1 -1
  994. package/packages/pi-coding-agent/src/core/agent-session-abort-order.test.ts +319 -0
  995. package/packages/pi-coding-agent/src/core/agent-session.ts +128 -59
  996. package/packages/pi-coding-agent/src/core/extensions/runner.test.ts +89 -1
  997. package/packages/pi-coding-agent/src/core/extensions/runner.ts +46 -2
  998. package/packages/pi-coding-agent/src/core/tools/bash-spawn-windows.test.ts +26 -6
  999. package/packages/pi-coding-agent/tsconfig.tsbuildinfo +1 -1
  1000. package/src/resources/GSD-WORKFLOW.md +29 -42
  1001. package/src/resources/extensions/async-jobs/job-manager.ts +3 -0
  1002. package/src/resources/extensions/bg-shell/bg-shell-lifecycle.ts +3 -2
  1003. package/src/resources/extensions/bg-shell/utilities.ts +2 -1
  1004. package/src/resources/extensions/browser-tools/tools/intent.ts +13 -2
  1005. package/src/resources/extensions/claude-code-cli/stream-adapter.ts +21 -8
  1006. package/src/resources/extensions/claude-code-cli/tests/stream-adapter.test.ts +34 -13
  1007. package/src/resources/extensions/github-sync/cli.ts +3 -0
  1008. package/src/resources/extensions/github-sync/sync.ts +88 -58
  1009. package/src/resources/extensions/github-sync/tests/sync-source.test.ts +26 -0
  1010. package/src/resources/extensions/gsd/auto/loop-deps.ts +1 -1
  1011. package/src/resources/extensions/gsd/auto/phases.ts +92 -26
  1012. package/src/resources/extensions/gsd/auto/run-unit.ts +23 -11
  1013. package/src/resources/extensions/gsd/auto/session.ts +3 -0
  1014. package/src/resources/extensions/gsd/auto-artifact-paths.ts +60 -30
  1015. package/src/resources/extensions/gsd/auto-dashboard.ts +12 -2
  1016. package/src/resources/extensions/gsd/auto-direct-dispatch.ts +62 -24
  1017. package/src/resources/extensions/gsd/auto-dispatch.ts +247 -91
  1018. package/src/resources/extensions/gsd/auto-post-unit.ts +123 -44
  1019. package/src/resources/extensions/gsd/auto-prompts.ts +110 -7
  1020. package/src/resources/extensions/gsd/auto-recovery.ts +75 -13
  1021. package/src/resources/extensions/gsd/auto-start.ts +72 -72
  1022. package/src/resources/extensions/gsd/auto-timeout-recovery.ts +22 -0
  1023. package/src/resources/extensions/gsd/auto-timers.ts +37 -5
  1024. package/src/resources/extensions/gsd/auto-worktree.ts +140 -192
  1025. package/src/resources/extensions/gsd/auto.ts +74 -21
  1026. package/src/resources/extensions/gsd/bootstrap/agent-end-recovery.ts +20 -1
  1027. package/src/resources/extensions/gsd/bootstrap/db-tools.ts +38 -7
  1028. package/src/resources/extensions/gsd/bootstrap/dynamic-tools.ts +9 -84
  1029. package/src/resources/extensions/gsd/bootstrap/register-hooks.ts +83 -8
  1030. package/src/resources/extensions/gsd/bootstrap/system-context.ts +3 -4
  1031. package/src/resources/extensions/gsd/bootstrap/write-gate.ts +92 -15
  1032. package/src/resources/extensions/gsd/branch-patterns.ts +3 -3
  1033. package/src/resources/extensions/gsd/commands/catalog.ts +7 -6
  1034. package/src/resources/extensions/gsd/commands/context.ts +40 -6
  1035. package/src/resources/extensions/gsd/commands/dispatcher.ts +11 -5
  1036. package/src/resources/extensions/gsd/commands/handlers/auto.ts +2 -1
  1037. package/src/resources/extensions/gsd/commands/handlers/core.ts +2 -0
  1038. package/src/resources/extensions/gsd/commands/handlers/ops.ts +5 -0
  1039. package/src/resources/extensions/gsd/commands/handlers/workflow.ts +23 -2
  1040. package/src/resources/extensions/gsd/commands-bootstrap.ts +7 -0
  1041. package/src/resources/extensions/gsd/commands-codebase.ts +2 -1
  1042. package/src/resources/extensions/gsd/commands-config.ts +3 -3
  1043. package/src/resources/extensions/gsd/commands-debug.ts +27 -1
  1044. package/src/resources/extensions/gsd/commands-eval-review.ts +716 -0
  1045. package/src/resources/extensions/gsd/commands-extensions.ts +4 -4
  1046. package/src/resources/extensions/gsd/commands-handlers.ts +8 -8
  1047. package/src/resources/extensions/gsd/commands-logs.ts +2 -1
  1048. package/src/resources/extensions/gsd/commands-mcp-status.ts +2 -2
  1049. package/src/resources/extensions/gsd/commands-scan.ts +2 -1
  1050. package/src/resources/extensions/gsd/commands-ship.ts +101 -1
  1051. package/src/resources/extensions/gsd/commands-workflow-templates.ts +5 -4
  1052. package/src/resources/extensions/gsd/context-budget.ts +13 -2
  1053. package/src/resources/extensions/gsd/db-writer.ts +63 -79
  1054. package/src/resources/extensions/gsd/deep-project-setup-policy.ts +257 -0
  1055. package/src/resources/extensions/gsd/detection.ts +7 -7
  1056. package/src/resources/extensions/gsd/dispatch-guard.ts +6 -11
  1057. package/src/resources/extensions/gsd/docs/preferences-reference.md +6 -4
  1058. package/src/resources/extensions/gsd/doctor-engine-checks.ts +2 -2
  1059. package/src/resources/extensions/gsd/doctor-providers.ts +2 -2
  1060. package/src/resources/extensions/gsd/doctor-runtime-checks.ts +53 -0
  1061. package/src/resources/extensions/gsd/doctor-types.ts +1 -0
  1062. package/src/resources/extensions/gsd/eval-review-schema.ts +243 -0
  1063. package/src/resources/extensions/gsd/forensics.ts +10 -4
  1064. package/src/resources/extensions/gsd/git-service.ts +81 -3
  1065. package/src/resources/extensions/gsd/gsd-db.ts +88 -10
  1066. package/src/resources/extensions/gsd/gsd-home.ts +30 -0
  1067. package/src/resources/extensions/gsd/guided-flow.ts +345 -97
  1068. package/src/resources/extensions/gsd/init-wizard.ts +17 -20
  1069. package/src/resources/extensions/gsd/interrupted-session.ts +39 -2
  1070. package/src/resources/extensions/gsd/key-manager.ts +2 -2
  1071. package/src/resources/extensions/gsd/markdown-renderer.ts +58 -79
  1072. package/src/resources/extensions/gsd/migrate/command.ts +3 -3
  1073. package/src/resources/extensions/gsd/milestone-scope-classifier.ts +15 -8
  1074. package/src/resources/extensions/gsd/native-git-bridge.ts +19 -41
  1075. package/src/resources/extensions/gsd/onboarding-state.ts +2 -2
  1076. package/src/resources/extensions/gsd/parallel-merge.ts +14 -13
  1077. package/src/resources/extensions/gsd/parallel-monitor-overlay.ts +5 -2
  1078. package/src/resources/extensions/gsd/paths.ts +91 -1
  1079. package/src/resources/extensions/gsd/planning-depth.ts +137 -0
  1080. package/src/resources/extensions/gsd/preferences-models.ts +18 -1
  1081. package/src/resources/extensions/gsd/preferences-skills.ts +2 -1
  1082. package/src/resources/extensions/gsd/preferences-types.ts +11 -0
  1083. package/src/resources/extensions/gsd/preferences-validation.ts +9 -0
  1084. package/src/resources/extensions/gsd/preferences.ts +26 -5
  1085. package/src/resources/extensions/gsd/project-research-policy.ts +259 -0
  1086. package/src/resources/extensions/gsd/prompt-loader.ts +2 -3
  1087. package/src/resources/extensions/gsd/prompts/complete-slice.md +1 -1
  1088. package/src/resources/extensions/gsd/prompts/guided-discuss-milestone.md +2 -0
  1089. package/src/resources/extensions/gsd/prompts/guided-discuss-project.md +133 -0
  1090. package/src/resources/extensions/gsd/prompts/guided-discuss-requirements.md +122 -0
  1091. package/src/resources/extensions/gsd/prompts/guided-research-decision.md +70 -0
  1092. package/src/resources/extensions/gsd/prompts/guided-research-project.md +120 -0
  1093. package/src/resources/extensions/gsd/prompts/guided-workflow-preferences.md +68 -0
  1094. package/src/resources/extensions/gsd/prompts/parallel-research-slices.md +2 -0
  1095. package/src/resources/extensions/gsd/prompts/plan-milestone.md +8 -2
  1096. package/src/resources/extensions/gsd/prompts/plan-slice.md +9 -7
  1097. package/src/resources/extensions/gsd/prompts/refine-slice.md +1 -1
  1098. package/src/resources/extensions/gsd/prompts/rewrite-docs.md +2 -0
  1099. package/src/resources/extensions/gsd/prompts/system.md +4 -4
  1100. package/src/resources/extensions/gsd/queue-order.ts +6 -1
  1101. package/src/resources/extensions/gsd/repo-identity.ts +15 -9
  1102. package/src/resources/extensions/gsd/rethink.ts +2 -1
  1103. package/src/resources/extensions/gsd/safety/git-checkpoint.ts +10 -1
  1104. package/src/resources/extensions/gsd/schemas/__fixtures__/valid-project.md +26 -0
  1105. package/src/resources/extensions/gsd/schemas/__fixtures__/valid-requirements.md +57 -0
  1106. package/src/resources/extensions/gsd/schemas/__fixtures__/valid-roadmap.md +19 -0
  1107. package/src/resources/extensions/gsd/schemas/parsers.ts +346 -0
  1108. package/src/resources/extensions/gsd/schemas/validate.ts +452 -0
  1109. package/src/resources/extensions/gsd/skill-telemetry.ts +3 -2
  1110. package/src/resources/extensions/gsd/slice-cadence.ts +71 -6
  1111. package/src/resources/extensions/gsd/state.ts +91 -389
  1112. package/src/resources/extensions/gsd/tests/artifact-corruption-2630.test.ts +1 -0
  1113. package/src/resources/extensions/gsd/tests/artifact-validators.test.ts +524 -0
  1114. package/src/resources/extensions/gsd/tests/auto-dashboard.test.ts +20 -0
  1115. package/src/resources/extensions/gsd/tests/auto-discuss-milestone-deadlock-4973.test.ts +29 -4
  1116. package/src/resources/extensions/gsd/tests/auto-loop.test.ts +98 -31
  1117. package/src/resources/extensions/gsd/tests/auto-paused-session-validation.test.ts +6 -0
  1118. package/src/resources/extensions/gsd/tests/auto-remediate-slice-status.test.ts +21 -34
  1119. package/src/resources/extensions/gsd/tests/auto-start-clean-runtime-db-gated.test.ts +32 -1
  1120. package/src/resources/extensions/gsd/tests/auto-start-index-lock.test.ts +38 -0
  1121. package/src/resources/extensions/gsd/tests/auto-wrapup-inflight-guard.test.ts +56 -0
  1122. package/src/resources/extensions/gsd/tests/commands-eval-review.test.ts +612 -0
  1123. package/src/resources/extensions/gsd/tests/commands-ship-eval-warn.test.ts +155 -0
  1124. package/src/resources/extensions/gsd/tests/complete-task-rollback-evidence.test.ts +6 -7
  1125. package/src/resources/extensions/gsd/tests/complete-task.test.ts +8 -6
  1126. package/src/resources/extensions/gsd/tests/completed-at-reconcile.test.ts +12 -27
  1127. package/src/resources/extensions/gsd/tests/completed-units-metrics-sync.test.ts +18 -5
  1128. package/src/resources/extensions/gsd/tests/context-budget.test.ts +28 -0
  1129. package/src/resources/extensions/gsd/tests/crash-recovery.test.ts +50 -0
  1130. package/src/resources/extensions/gsd/tests/custom-engine-loop-integration.test.ts +2 -1
  1131. package/src/resources/extensions/gsd/tests/db-path-worktree-symlink.test.ts +4 -4
  1132. package/src/resources/extensions/gsd/tests/db-writer.test.ts +165 -21
  1133. package/src/resources/extensions/gsd/tests/debug-command-handler.test.ts +37 -0
  1134. package/src/resources/extensions/gsd/tests/deep-mode-integration.test.ts +406 -0
  1135. package/src/resources/extensions/gsd/tests/deep-planning-mode-dispatch.test.ts +881 -0
  1136. package/src/resources/extensions/gsd/tests/deep-project-auto-loop.test.ts +1562 -0
  1137. package/src/resources/extensions/gsd/tests/deep-project-setup-policy.test.ts +193 -0
  1138. package/src/resources/extensions/gsd/tests/derive-state-crossval.test.ts +6 -5
  1139. package/src/resources/extensions/gsd/tests/derive-state-db-disk-reconcile.test.ts +10 -38
  1140. package/src/resources/extensions/gsd/tests/derive-state-db.test.ts +136 -56
  1141. package/src/resources/extensions/gsd/tests/derive-state-draft.test.ts +3 -0
  1142. package/src/resources/extensions/gsd/tests/derive-state-helpers.test.ts +119 -61
  1143. package/src/resources/extensions/gsd/tests/derive-state.test.ts +4 -0
  1144. package/src/resources/extensions/gsd/tests/dispatch-complete-milestone-guard.test.ts +6 -20
  1145. package/src/resources/extensions/gsd/tests/dispatch-guard.test.ts +4 -5
  1146. package/src/resources/extensions/gsd/tests/dispatcher-stuck-planning.test.ts +14 -15
  1147. package/src/resources/extensions/gsd/tests/ensure-db-open.test.ts +11 -16
  1148. package/src/resources/extensions/gsd/tests/escalation.test.ts +2 -1
  1149. package/src/resources/extensions/gsd/tests/eval-review-schema.test.ts +282 -0
  1150. package/src/resources/extensions/gsd/tests/git-checkpoint.test.ts +9 -0
  1151. package/src/resources/extensions/gsd/tests/gsd-db.test.ts +2 -1
  1152. package/src/resources/extensions/gsd/tests/gsd-home.test.ts +43 -0
  1153. package/src/resources/extensions/gsd/tests/gsd-no-project-error-runtime.test.ts +15 -1
  1154. package/src/resources/extensions/gsd/tests/gsd-root-home-guard.test.ts +86 -0
  1155. package/src/resources/extensions/gsd/tests/gsdroot-worktree-detection.test.ts +15 -36
  1156. package/src/resources/extensions/gsd/tests/guided-flow-prompt-consolidation.test.ts +133 -0
  1157. package/src/resources/extensions/gsd/tests/handler-worktree-write-isolation.test.ts +57 -0
  1158. package/src/resources/extensions/gsd/tests/has-pending-deep-stage.test.ts +98 -0
  1159. package/src/resources/extensions/gsd/tests/init-skip-git.test.ts +19 -0
  1160. package/src/resources/extensions/gsd/tests/init-wizard.test.ts +17 -0
  1161. package/src/resources/extensions/gsd/tests/integration/auto-worktree.test.ts +1 -0
  1162. package/src/resources/extensions/gsd/tests/integration/commands-eval-review.integration.test.ts +254 -0
  1163. package/src/resources/extensions/gsd/tests/integration/doctor-runtime.test.ts +40 -0
  1164. package/src/resources/extensions/gsd/tests/integration/git-service.test.ts +42 -0
  1165. package/src/resources/extensions/gsd/tests/integration/parallel-merge.test.ts +15 -15
  1166. package/src/resources/extensions/gsd/tests/integration/state-machine-edge-cases.test.ts +15 -5
  1167. package/src/resources/extensions/gsd/tests/journal-integration.test.ts +124 -7
  1168. package/src/resources/extensions/gsd/tests/markdown-renderer.test.ts +84 -9
  1169. package/src/resources/extensions/gsd/tests/md-importer.test.ts +2 -1
  1170. package/src/resources/extensions/gsd/tests/memory-store.test.ts +3 -2
  1171. package/src/resources/extensions/gsd/tests/milestone-scope-classifier.test.ts +19 -0
  1172. package/src/resources/extensions/gsd/tests/model-unittype-mapping.test.ts +19 -0
  1173. package/src/resources/extensions/gsd/tests/native-git-bridge-exec-fallback.test.ts +22 -2
  1174. package/src/resources/extensions/gsd/tests/none-mode-gates.test.ts +51 -3
  1175. package/src/resources/extensions/gsd/tests/park-milestone.test.ts +2 -0
  1176. package/src/resources/extensions/gsd/tests/plan-milestone-artifact-verification.test.ts +40 -0
  1177. package/src/resources/extensions/gsd/tests/plan-slice-prompt.test.ts +0 -43
  1178. package/src/resources/extensions/gsd/tests/plan-slice.test.ts +33 -0
  1179. package/src/resources/extensions/gsd/tests/planning-depth-setter.test.ts +172 -0
  1180. package/src/resources/extensions/gsd/tests/post-unit-git-failure.test.ts +18 -0
  1181. package/src/resources/extensions/gsd/tests/preferences.test.ts +72 -0
  1182. package/src/resources/extensions/gsd/tests/prefs-wizard-coverage.test.ts +1 -0
  1183. package/src/resources/extensions/gsd/tests/progressive-planning.test.ts +25 -16
  1184. package/src/resources/extensions/gsd/tests/project-root-cwd-crash.test.ts +4 -4
  1185. package/src/resources/extensions/gsd/tests/projection-regression.test.ts +1 -0
  1186. package/src/resources/extensions/gsd/tests/prompt-budget-enforcement.test.ts +2 -2
  1187. package/src/resources/extensions/gsd/tests/prompt-contracts.test.ts +82 -21
  1188. package/src/resources/extensions/gsd/tests/quality-gates.test.ts +7 -16
  1189. package/src/resources/extensions/gsd/tests/ready-phrase-no-files-4573.test.ts +193 -0
  1190. package/src/resources/extensions/gsd/tests/register-hooks-compaction-checkpoint.test.ts +6 -1
  1191. package/src/resources/extensions/gsd/tests/register-hooks-depth-verification.test.ts +156 -0
  1192. package/src/resources/extensions/gsd/tests/replan-slice.test.ts +3 -0
  1193. package/src/resources/extensions/gsd/tests/resolve-ts.mjs +4 -0
  1194. package/src/resources/extensions/gsd/tests/rogue-file-detection.test.ts +3 -4
  1195. package/src/resources/extensions/gsd/tests/slice-cadence.test.ts +36 -0
  1196. package/src/resources/extensions/gsd/tests/slice-disk-reconcile.test.ts +10 -56
  1197. package/src/resources/extensions/gsd/tests/stale-slice-rows.test.ts +15 -16
  1198. package/src/resources/extensions/gsd/tests/start-auto-detached.test.ts +53 -0
  1199. package/src/resources/extensions/gsd/tests/stash-pop-gsd-conflict.test.ts +8 -2
  1200. package/src/resources/extensions/gsd/tests/stash-queued-context-files.test.ts +12 -6
  1201. package/src/resources/extensions/gsd/tests/state-corruption-2945.test.ts +1 -0
  1202. package/src/resources/extensions/gsd/tests/state-machine-full-walkthrough.test.ts +23 -27
  1203. package/src/resources/extensions/gsd/tests/steer-worktree-path.test.ts +13 -14
  1204. package/src/resources/extensions/gsd/tests/stop-auto-remote.test.ts +4 -3
  1205. package/src/resources/extensions/gsd/tests/sync-worktree-skip-current.test.ts +10 -33
  1206. package/src/resources/extensions/gsd/tests/token-counter.test.ts +9 -0
  1207. package/src/resources/extensions/gsd/tests/tool-param-optionality.test.ts +34 -0
  1208. package/src/resources/extensions/gsd/tests/unit-context-manifest.test.ts +10 -0
  1209. package/src/resources/extensions/gsd/tests/unit-runtime.test.ts +41 -0
  1210. package/src/resources/extensions/gsd/tests/uok-plan-v2-wiring.test.ts +48 -0
  1211. package/src/resources/extensions/gsd/tests/validate-milestone-write-order.test.ts +7 -8
  1212. package/src/resources/extensions/gsd/tests/validate-milestone.test.ts +9 -15
  1213. package/src/resources/extensions/gsd/tests/verify-artifact-tightened.test.ts +52 -1
  1214. package/src/resources/extensions/gsd/tests/workflow-logger-wiring.test.ts +12 -7
  1215. package/src/resources/extensions/gsd/tests/workflow-mcp-auto-prep.test.ts +4 -4
  1216. package/src/resources/extensions/gsd/tests/workflow-mcp.test.ts +81 -2
  1217. package/src/resources/extensions/gsd/tests/workflow-tool-executors.test.ts +244 -1
  1218. package/src/resources/extensions/gsd/tests/worktree-db-same-file.test.ts +13 -0
  1219. package/src/resources/extensions/gsd/tests/worktree-main-branch.test.ts +5 -0
  1220. package/src/resources/extensions/gsd/tests/worktree-path-injection.test.ts +236 -0
  1221. package/src/resources/extensions/gsd/tests/worktree-resolver.test.ts +103 -0
  1222. package/src/resources/extensions/gsd/tests/worktree-root-resolution.test.ts +50 -0
  1223. package/src/resources/extensions/gsd/tests/worktree-root.test.ts +69 -0
  1224. package/src/resources/extensions/gsd/tests/worktree-sync-milestones.test.ts +65 -71
  1225. package/src/resources/extensions/gsd/tests/worktree-sync-tasks.test.ts +26 -151
  1226. package/src/resources/extensions/gsd/tests/write-gate-predicates.test.ts +8 -6
  1227. package/src/resources/extensions/gsd/tests/write-gate.test.ts +121 -13
  1228. package/src/resources/extensions/gsd/token-counter.ts +2 -1
  1229. package/src/resources/extensions/gsd/tools/complete-milestone.ts +7 -5
  1230. package/src/resources/extensions/gsd/tools/complete-slice.ts +7 -14
  1231. package/src/resources/extensions/gsd/tools/complete-task.ts +19 -34
  1232. package/src/resources/extensions/gsd/tools/plan-slice.ts +10 -9
  1233. package/src/resources/extensions/gsd/tools/validate-milestone.ts +7 -5
  1234. package/src/resources/extensions/gsd/tools/workflow-tool-executors.ts +81 -14
  1235. package/src/resources/extensions/gsd/unit-context-manifest.ts +97 -1
  1236. package/src/resources/extensions/gsd/unit-runtime.ts +76 -24
  1237. package/src/resources/extensions/gsd/uok/plan-v2.ts +19 -1
  1238. package/src/resources/extensions/gsd/user-input-boundary.ts +166 -0
  1239. package/src/resources/extensions/gsd/watch/header-renderer.ts +2 -1
  1240. package/src/resources/extensions/gsd/workflow-install.ts +2 -3
  1241. package/src/resources/extensions/gsd/workflow-manifest.ts +4 -1
  1242. package/src/resources/extensions/gsd/workflow-mcp-auto-prep.ts +2 -18
  1243. package/src/resources/extensions/gsd/workflow-mcp.ts +41 -4
  1244. package/src/resources/extensions/gsd/workflow-migration.ts +4 -3
  1245. package/src/resources/extensions/gsd/workflow-plugins.ts +4 -5
  1246. package/src/resources/extensions/gsd/workflow-reconcile.ts +3 -3
  1247. package/src/resources/extensions/gsd/workflow-templates.ts +2 -3
  1248. package/src/resources/extensions/gsd/worktree-command.ts +4 -3
  1249. package/src/resources/extensions/gsd/worktree-manager.ts +6 -6
  1250. package/src/resources/extensions/gsd/worktree-resolver.ts +31 -7
  1251. package/src/resources/extensions/gsd/worktree-root.ts +47 -9
  1252. package/src/resources/extensions/mcp-client/index.ts +2 -2
  1253. package/src/resources/extensions/remote-questions/remote-command.ts +2 -1
  1254. package/src/resources/extensions/remote-questions/status.ts +2 -6
  1255. package/src/resources/extensions/remote-questions/store.ts +2 -6
  1256. package/src/resources/extensions/search-the-web/provider.ts +9 -8
  1257. package/src/resources/extensions/shared/next-action-ui.ts +8 -0
  1258. package/src/resources/extensions/shared/tests/next-action-ui-hasui.test.ts +112 -0
  1259. package/src/resources/extensions/subagent/index.ts +22 -9
  1260. package/src/resources/extensions/subagent/isolation.ts +2 -2
  1261. package/src/resources/extensions/subagent/tests/model-override.test.ts +55 -0
  1262. package/src/resources/extensions/ttsr/rule-loader.ts +2 -3
  1263. package/src/resources/extensions/voice/index.ts +3 -2
  1264. package/src/resources/extensions/voice/linux-ready.ts +2 -3
  1265. package/src/resources/skills/lint/SKILL.md +4 -0
  1266. package/src/resources/skills/review/SKILL.md +4 -0
  1267. package/src/resources/skills/test/SKILL.md +3 -0
  1268. package/src/resources/skills/verify-before-complete/SKILL.md +1 -1
  1269. package/dist/resources/extensions/gsd/auto-loop.js +0 -13
  1270. package/dist/resources/extensions/gsd/home-dir.js +0 -16
  1271. package/dist/resources/extensions/gsd/prompts/guided-complete-slice.md +0 -3
  1272. package/dist/resources/extensions/gsd/prompts/guided-execute-task.md +0 -3
  1273. package/dist/resources/extensions/gsd/prompts/guided-plan-milestone.md +0 -30
  1274. package/dist/resources/extensions/gsd/prompts/guided-plan-slice.md +0 -3
  1275. package/dist/web/standalone/.next/server/chunks/1926.js +0 -1
  1276. package/dist/web/standalone/.next/server/edge-runtime-webpack.js +0 -2
  1277. package/dist/web/standalone/.next/static/chunks/2824.08296bc2f9654698.js +0 -1
  1278. package/dist/web/standalone/.next/static/chunks/363642f4.cf8b455e0d94b478.js +0 -1
  1279. package/dist/web/standalone/.next/static/chunks/5326.adc4bf49a22f4e67.js +0 -1
  1280. package/dist/web/standalone/.next/static/chunks/webpack-f9f0dc45e4f3ac10.js +0 -1
  1281. package/dist/web/standalone/node_modules/@img/sharp-libvips-linuxmusl-x64/lib/index.js +0 -1
  1282. package/dist/web/standalone/node_modules/@img/sharp-libvips-linuxmusl-x64/lib/libvips-cpp.so.8.17.3 +0 -0
  1283. package/dist/web/standalone/node_modules/@img/sharp-libvips-linuxmusl-x64/package.json +0 -42
  1284. package/dist/web/standalone/node_modules/@img/sharp-libvips-linuxmusl-x64/versions.json +0 -30
  1285. package/dist/web/standalone/node_modules/@img/sharp-linuxmusl-x64/LICENSE +0 -191
  1286. package/dist/web/standalone/node_modules/@img/sharp-linuxmusl-x64/lib/sharp-linuxmusl-x64.node +0 -0
  1287. package/dist/web/standalone/node_modules/@img/sharp-linuxmusl-x64/package.json +0 -46
  1288. package/src/resources/extensions/gsd/auto-loop.ts +0 -16
  1289. package/src/resources/extensions/gsd/home-dir.ts +0 -19
  1290. package/src/resources/extensions/gsd/prompts/guided-complete-slice.md +0 -3
  1291. package/src/resources/extensions/gsd/prompts/guided-execute-task.md +0 -3
  1292. package/src/resources/extensions/gsd/prompts/guided-plan-milestone.md +0 -30
  1293. package/src/resources/extensions/gsd/prompts/guided-plan-slice.md +0 -3
  1294. package/src/resources/extensions/gsd/tests/home-dir.test.ts +0 -52
  1295. package/dist/web/standalone/.next/static/{QK8fABiGPmonfTgboN0Y9 → w9G0PxMD-Pnt83-0UQ1fv}/_buildManifest.js +0 -0
  1296. package/dist/web/standalone/.next/static/{QK8fABiGPmonfTgboN0Y9 → w9G0PxMD-Pnt83-0UQ1fv}/_ssgManifest.js +0 -0
  1297. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/at-rule.js +0 -0
  1298. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/comment.js +0 -0
  1299. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/declaration.js +4 -4
  1300. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/document.js +0 -0
  1301. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/fromJSON.js +3 -3
  1302. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/list.js +0 -0
  1303. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/parse.js +1 -1
  1304. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/postcss.js +12 -12
  1305. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/root.js +0 -0
  1306. package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/rule.js +6 -6
  1307. /package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/stringify.js +0 -0
  1308. /package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/symbols.js +0 -0
  1309. /package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/terminal-highlight.js +0 -0
  1310. /package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/warn-once.js +0 -0
  1311. /package/dist/web/standalone/node_modules/{next/node_modules/postcss → postcss}/lib/warning.js +0 -0
  1312. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/classes/comparator.js +0 -0
  1313. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/classes/range.js +0 -0
  1314. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/classes/semver.js +0 -0
  1315. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/functions/cmp.js +0 -0
  1316. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/functions/coerce.js +0 -0
  1317. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/functions/compare.js +0 -0
  1318. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/functions/eq.js +0 -0
  1319. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/functions/gt.js +0 -0
  1320. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/functions/gte.js +0 -0
  1321. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/functions/lt.js +0 -0
  1322. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/functions/lte.js +0 -0
  1323. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/functions/neq.js +0 -0
  1324. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/functions/parse.js +0 -0
  1325. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/functions/satisfies.js +0 -0
  1326. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/internal/constants.js +0 -0
  1327. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/internal/debug.js +0 -0
  1328. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/internal/identifiers.js +0 -0
  1329. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/internal/lrucache.js +0 -0
  1330. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/internal/parse-options.js +0 -0
  1331. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/internal/re.js +0 -0
  1332. /package/dist/web/standalone/node_modules/{semver → sharp/node_modules/semver}/package.json +0 -0
@@ -0,0 +1,133 @@
1
+ **Working directory:** `{{workingDirectory}}`. All file reads, writes, and shell commands MUST operate relative to this directory. Do NOT `cd` to any other directory. For `.gsd` files in this prompt, use absolute paths rooted at `{{workingDirectory}}` instead of discovering them with `Glob`.
2
+
3
+ Discuss the **project** as a whole. Identify gray areas at the project level — vision, users, anti-goals, key constraints — ask the user about them, and write `.gsd/PROJECT.md` with the decisions. Use the **Project** output template below. If a `GSD Skill Preferences` block is present in system context, use it to decide which skills to load and follow; do not override required artifact rules.
4
+
5
+ This stage runs ONCE per project, before any milestone-level discussion. It produces the project-level context that all subsequent milestones, requirements, and roadmaps will reference.
6
+
7
+ **Structured questions available: {{structuredQuestionsAvailable}}**
8
+
9
+ {{inlinedTemplates}}
10
+
11
+ ---
12
+
13
+ ## Stage Banner
14
+
15
+ Before your first action, print this banner verbatim in chat:
16
+
17
+ • QUESTIONING (project)
18
+
19
+ ---
20
+
21
+ ## Interview Protocol
22
+
23
+ ### Open the conversation
24
+
25
+ Ask the user a single freeform question in plain text, not structured: **"What do you want to build?"**
26
+
27
+ Wait for their response. This grounds every follow-up in their own terminology.
28
+
29
+ ### Before deeper rounds
30
+
31
+ Do a lightweight targeted investigation so your questions are grounded in reality:
32
+ - Scout the codebase (`rg`, `find`, or `scout`) — is this greenfield or brownfield? What language/framework signals exist?
33
+ - Identify any prior `.planning/` or `.gsd/` artifacts hinting at history
34
+ - Use `resolve_library` / `get_library_docs` for unfamiliar libraries the user mentions
35
+
36
+ **Web search budget:** typically 3–5 per turn. Prefer `resolve_library` / `get_library_docs` for library docs. Target 2–3 web searches in the investigation pass; distribute remaining searches across follow-up rounds.
37
+
38
+ Do **not** go deep — just enough that your follow-ups reflect what's actually true rather than what you assume.
39
+
40
+ ### Question rounds
41
+
42
+ Ask **1–3 questions per round**. Each round targets one of:
43
+ - **What they're building** — concrete enough to describe to a stranger
44
+ - **Who it's for** — primary users, secondary users, internal vs external
45
+ - **The core value** — the ONE thing that must work even if everything else is cut
46
+ - **Anti-goals** — what they explicitly don't want, what would disappoint them
47
+ - **Constraints** — budget, timeline, tech limitations, irreversible architectural choices
48
+ - **Existing context** — prior work, brownfield state, decisions already made
49
+ - **Milestone shape** — rough version sequence (v1 / v1.1 / ...) and what differentiates them
50
+
51
+ **Never fabricate or simulate user input.** Never generate fake transcript markers like `[User]`, `[Human]`, or `User:`. Ask one question round, then wait for the user's actual response before continuing.
52
+
53
+ **Plain-text default:** Project discovery is open-ended. Ask question rounds in plain text unless you are presenting 2–3 concrete alternatives with clear tradeoffs.
54
+
55
+ **If `{{structuredQuestionsAvailable}}` is `true` and you use `ask_user_questions`:** ask 1–3 questions per call. Every question object MUST include a stable lowercase `id`. Keep option labels short (3–5 words). Do not add a separate "Other" option; the question UI provides a freeform path automatically. Wait for each tool result before asking the next round.
56
+
57
+ **If `{{structuredQuestionsAvailable}}` is `false`:** ask questions in plain text. Keep each round to 1–3 focused questions.
58
+
59
+ After each round, investigate further if any answer opens a new unknown, then ask the next round.
60
+
61
+ ### Round cadence
62
+
63
+ After each round, decide whether you have enough depth to write a strong PROJECT.md.
64
+
65
+ - **Incremental persistence:** After every 2 question rounds, silently save `.gsd/PROJECT-DRAFT.md` using `gsd_summary_save` with `artifact_type: "PROJECT-DRAFT"` and no `milestone_id`. Crash protection. Do NOT mention this save to the user.
66
+ - If not ready, continue to the next round.
67
+ - Use a wrap-up prompt only when you believe the depth checklist below is satisfied or the user signals they want to stop.
68
+
69
+ ---
70
+
71
+ ## Questioning philosophy
72
+
73
+ **Start open, follow energy.** Let the user's enthusiasm guide where you dig deeper.
74
+
75
+ **Challenge vagueness.** When the user says "it should be smart" or "good UX", push for specifics.
76
+
77
+ **Position-first framing.** Have opinions. "I'd lean toward X because Y — does that match your thinking?" is better than "what do you think about X vs Y?"
78
+
79
+ **Negative constraints.** Ask what would disappoint them. What they explicitly don't want. Negative constraints are sharper than positive wishes.
80
+
81
+ **Anti-patterns — never do these:**
82
+ - Checklist walking through predetermined topics regardless of what the user said
83
+ - Canned generic questions ("What are your key success metrics?")
84
+ - Rapid-fire questions without acknowledging answers
85
+ - Asking about technical skill level
86
+ - Asking about specific milestone implementations — that's the next stage
87
+
88
+ ---
89
+
90
+ ## Depth Verification
91
+
92
+ Before moving to the wrap-up gate, verify you have covered:
93
+
94
+ - [ ] What they're building — concrete enough to describe to a stranger
95
+ - [ ] Who it's for
96
+ - [ ] Core value (the ONE thing that must work)
97
+ - [ ] Anti-goals / explicit non-wants
98
+ - [ ] Constraints (budget, time, tech, architecture)
99
+ - [ ] Greenfield vs brownfield state
100
+ - [ ] Rough milestone sequence (at least M001's intent)
101
+
102
+ **Print a structured depth summary in chat first** — using the user's own terminology. Cover what you understood, what shaped your understanding, and any areas of remaining uncertainty.
103
+
104
+ **Then confirm:**
105
+
106
+ **If `{{structuredQuestionsAvailable}}` is `true`:** use `ask_user_questions` with:
107
+ - header: "Depth Check"
108
+ - id: "depth_verification_project_confirm"
109
+ - question: "Did I capture the depth right?"
110
+ - options: "Yes, you got it (Recommended)", "Not quite — let me clarify"
111
+ - **The question ID must contain `depth_verification_project`** — this enables the write-gate downstream.
112
+
113
+ **If `{{structuredQuestionsAvailable}}` is `false`:** ask in plain text: "Did I capture that correctly? If not, tell me what I missed." Wait for explicit confirmation. **The same non-bypassable gate applies to the plain-text path** — if the user does not respond, gives an ambiguous answer, or does not explicitly confirm, you MUST re-ask.
114
+
115
+ If they clarify, absorb the correction and re-verify.
116
+
117
+ The depth verification is the only required confirmation gate. Do not add a second "ready to proceed?" gate after it.
118
+
119
+ **CRITICAL — Confirmation gate:** Do not write final PROJECT.md until the user selects the "(Recommended)" option (structured path) or explicitly confirms (plain-text path). If the user declines, cancels, does not respond, or the tool fails, you MUST re-ask — never rationalize past the block.
120
+
121
+ ---
122
+
123
+ ## Output
124
+
125
+ Once the user confirms depth:
126
+
127
+ 1. Use the **Project** output template (inlined above).
128
+ 2. Call `gsd_summary_save` with `artifact_type: "PROJECT"` and the full project markdown as `content`; omit `milestone_id`. The tool writes `.gsd/PROJECT.md` to disk and persists to DB. Preserve the user's exact terminology, emphasis, and framing.
129
+ 3. The `## Capability Contract` section MUST reference `.gsd/REQUIREMENTS.md` — that file does not yet exist; the next stage (`discuss-requirements`) will produce it.
130
+ 4. The `## Milestone Sequence` MUST list at least M001 with title and one-liner. Subsequent milestones may be listed as known intents; they will be elaborated in their own discuss-milestone stages.
131
+ 5. Do NOT use `artifact_type: "CONTEXT"` and do NOT pass `milestone_id: "PROJECT"`; that creates a fake milestone named PROJECT.
132
+ 6. {{commitInstruction}}
133
+ 7. Say exactly: `"Project context written."` — nothing else.
@@ -0,0 +1,122 @@
1
+ **Working directory:** `{{workingDirectory}}`. All file reads, writes, and shell commands MUST operate relative to this directory. Do NOT `cd` to any other directory. For `.gsd` files in this prompt, use absolute paths rooted at `{{workingDirectory}}` instead of discovering them with `Glob`.
2
+
3
+ Discuss **project-level requirements**. Read `.gsd/PROJECT.md` first — it is the authoritative source for vision, core value, anti-goals, and milestone sequence. All requirements must trace back to it. Identify gray areas about what capabilities the project must deliver, ask the user, and write `.gsd/REQUIREMENTS.md` using the v2 structured `R###` format. Use the **Requirements** output template below.
4
+
5
+ This stage runs ONCE per project, after `discuss-project` and before any milestone-level work. It produces the explicit capability contract that all milestones, slices, and verification will reference.
6
+
7
+ **Structured questions available: {{structuredQuestionsAvailable}}**
8
+
9
+ {{inlinedTemplates}}
10
+
11
+ ---
12
+
13
+ ## Stage Banner
14
+
15
+ Before your first action, print this banner verbatim in chat:
16
+
17
+ • REQUIREMENTS
18
+
19
+ ---
20
+
21
+ ## Pre-flight
22
+
23
+ 1. Read `.gsd/PROJECT.md` end-to-end. If it does not exist, STOP and emit: `"PROJECT.md missing — run discuss-project first."`
24
+ 2. Extract: Core Value, Anti-goals, Constraints, Milestone Sequence.
25
+ 3. Check for existing `.gsd/REQUIREMENTS.md` — if present, this is a refinement pass, not a fresh write. Read existing requirements and treat them as the working set.
26
+
27
+ ---
28
+
29
+ ## Interview Protocol
30
+
31
+ ### Before your first question round
32
+
33
+ Investigate to ground requirements in reality:
34
+ - Scout the codebase for existing capabilities (anything already built counts as `Validated` or `Active`)
35
+ - Cross-check the project's milestone sequence — every milestone must have at least one Active requirement it owns
36
+ - Use `resolve_library` / `get_library_docs` for libraries that imply capabilities (auth library → auth requirements)
37
+ - Identify table-stakes capabilities for the domain (research the domain only if PROJECT.md confidence is low)
38
+
39
+ **Web search budget:** 3–5 per turn. Target 1–2 web searches in this pre-investigation; reserve the rest for follow-ups.
40
+
41
+ ### Question rounds
42
+
43
+ Ask **1–3 questions per round**. Each round targets one dimension:
44
+
45
+ - **Capability scoping** — what must the project DO at the capability level? (Not features, capabilities. "User can recover account" not "Forgot-password button")
46
+ - **Class assignment** — for each capability, which class? (`core-capability`, `primary-user-loop`, `launchability`, `continuity`, `failure-visibility`, `integration`, `quality-attribute`, `operability`, `admin/support`, `compliance/security`, `differentiator`, `constraint`, `anti-feature`)
47
+ - **Milestone ownership** — which milestone in the sequence will own this capability? Provisional ownership for later milestones is fine.
48
+ - **Status** — Active (must build), Deferred (later), Out of Scope (explicit no), Validated (already proven)
49
+ - **Anti-features** — what capabilities are explicitly excluded? Capture as `out-of-scope` with rationale.
50
+ - **Quality attributes** — performance, reliability, observability, security thresholds. These are requirements too.
51
+
52
+ **Never fabricate or simulate user input.** Wait for actual responses.
53
+
54
+ **If `{{structuredQuestionsAvailable}}` is `true`:** use `ask_user_questions`. Every question object MUST include a stable lowercase `id`. For class assignments, present the allowed classes as multi-select options. For status, present the four statuses as exclusive options. Ask 1–3 questions per call. Wait for each tool result before asking the next round.
55
+
56
+ **If `{{structuredQuestionsAvailable}}` is `false`:** ask in plain text. Keep each round to 1–3 questions.
57
+
58
+ ### Round cadence
59
+
60
+ - **Incremental persistence:** After every 2 question rounds, silently save the current requirements draft using `gsd_summary_save` with `artifact_type: "REQUIREMENTS-DRAFT"` and no `milestone_id`. Crash protection. Do NOT mention this save.
61
+ - Continue rounds until the depth checklist is satisfied or the user signals stop.
62
+
63
+ ---
64
+
65
+ ## Questioning philosophy
66
+
67
+ **Capability-oriented, not feature-oriented.** "User can authenticate" is a capability. "Sign-up button shows on landing page" is implementation. Push back when users describe implementation — extract the underlying capability.
68
+
69
+ **Position-first framing.** Have opinions. "I'd suggest making this Active because the milestone goal can't ship without it — sound right?"
70
+
71
+ **Atomic and testable.** Each requirement should be one verifiable thing. Reject "user can sign up and manage profile" — split it.
72
+
73
+ **Anti-patterns — never do these:**
74
+ - Listing every conceivable feature ("requirement inflation")
75
+ - Vague verbs ("Handle", "Support") — push for "User can X" or "System emits Y when Z"
76
+ - Skipping anti-features — explicit out-of-scope is part of the contract
77
+ - Mapping requirements to slices that don't exist yet — use `M###/none yet` with the milestone id required
78
+
79
+ ---
80
+
81
+ ## Depth Verification
82
+
83
+ Before the wrap-up gate, verify:
84
+
85
+ - [ ] Every milestone in PROJECT.md has at least one Active requirement
86
+ - [ ] Core Value (from PROJECT.md) is covered by at least one Active requirement
87
+ - [ ] Each Active requirement has: ID, title, class, status, description, why-it-matters, source, primary owner (`M###/S##` or `M###/none yet`; never bare `none yet`), validation, notes
88
+ - [ ] At least one explicit Out of Scope entry per major capability area (anti-features captured)
89
+ - [ ] Quality attributes (performance, reliability, etc.) captured where the user has stated thresholds
90
+ - [ ] No requirement is implementation-flavored ("button", "endpoint", "table") — all are capability-flavored
91
+
92
+ **Print a structured requirements table in chat first** — markdown table with columns: ID, Title, Class, Status, Owner, Source. Group by status (Active / Deferred / Out of Scope / Validated). This is the user's audit trail.
93
+
94
+ **Then confirm:**
95
+
96
+ **If `{{structuredQuestionsAvailable}}` is `true`:** use `ask_user_questions` with:
97
+ - header: "Depth Check"
98
+ - id: "depth_verification_requirements_confirm"
99
+ - question: "Are these the right requirements at the right scope?"
100
+ - options: "Yes, ship it (Recommended)", "Not quite — let me adjust"
101
+ - **The question ID must contain `depth_verification_requirements`** — enables the write-gate.
102
+
103
+ **If `{{structuredQuestionsAvailable}}` is `false`:** ask in plain text: "Are these requirements right? Tell me anything to add, remove, or reclassify." Wait for explicit confirmation.
104
+
105
+ If they adjust, absorb and re-verify.
106
+
107
+ **CRITICAL — Confirmation gate:** Do not write final REQUIREMENTS.md until explicit confirmation. Never rationalize past it.
108
+
109
+ ---
110
+
111
+ ## Output
112
+
113
+ Once the user confirms:
114
+
115
+ 1. Use the **Requirements** output template (inlined above) to render the final markdown in working memory.
116
+ 2. Every entry must conform to the `R###` format with all listed fields. Use `gsd_requirement_save` (NOT plain file edit) for each requirement so DB state is saved first.
117
+ 3. After all `gsd_requirement_save` calls complete, call `gsd_summary_save` with `artifact_type: "REQUIREMENTS"`; omit `milestone_id`. The requirements table is the source of truth, and this tool renders `.gsd/REQUIREMENTS.md` from DB state. Pass the rendered markdown as `content` for audit context only; do not rely on markdown to update DB rows.
118
+ 4. The file MUST contain all required sections: `## Active`, `## Validated`, `## Deferred`, `## Out of Scope`, `## Traceability`, `## Coverage Summary`. Empty sections are OK; missing sections are not.
119
+ 5. Print the final coverage summary in chat: `Active: N | Validated: N | Deferred: N | Out of Scope: N | Mapped to slices: N | Unmapped active: N`.
120
+ 6. Do NOT use `artifact_type: "CONTEXT"` and do NOT pass `milestone_id: "REQUIREMENTS"`; that creates a fake milestone instead of `.gsd/REQUIREMENTS.md`.
121
+ 7. {{commitInstruction}}
122
+ 8. End your response with exactly: `Requirements written.`
@@ -0,0 +1,70 @@
1
+ **Working directory:** `{{workingDirectory}}`. All file reads, writes, and shell commands MUST operate relative to this directory. Do NOT `cd` to any other directory.
2
+
3
+ Capture the project research decision. This stage runs ONCE per project, after `discuss-requirements` and before any milestone-level work. It asks the user whether to run domain research now, then records the decision so downstream dispatch rules know what to do.
4
+
5
+ This is a **fixed-question** stage. Do NOT do open Socratic interviewing. Ask the one question below, capture the answer, write the marker file, end.
6
+
7
+ **Structured questions available: {{structuredQuestionsAvailable}}**
8
+
9
+ ---
10
+
11
+ ## Stage Banner
12
+
13
+ Print this banner verbatim in chat as your first action:
14
+
15
+ • RESEARCH DECISION
16
+
17
+ Then say: "Domain research finds table-stakes capabilities, ecosystem norms, and common pitfalls. Worth doing if you don't know this domain cold."
18
+
19
+ ---
20
+
21
+ ## The Question
22
+
23
+ **If `{{structuredQuestionsAvailable}}` is `true`:** call `ask_user_questions` exactly once with:
24
+
25
+ - **header:** "Research"
26
+ - **question:** "Run domain research before starting milestones?"
27
+ - **options:**
28
+ - "Skip (Recommended)" — go straight to milestone work; you know the domain
29
+ - "Yes" — runs 4 parallel research passes (stack, features, architecture, pitfalls) before milestone planning
30
+
31
+ **If `{{structuredQuestionsAvailable}}` is `false`:** ask in plain text: "Run domain research now? (y/n)"
32
+
33
+ ---
34
+
35
+ ## Output
36
+
37
+ Once the answer is captured:
38
+
39
+ 1. Make sure `.gsd/runtime/` exists: `mkdir -p .gsd/runtime/`
40
+ 2. Write `.gsd/runtime/research-decision.json` containing:
41
+ ```json
42
+ {
43
+ "decision": "research" | "skip",
44
+ "decided_at": "<ISO 8601 timestamp>",
45
+ "source": "research-decision"
46
+ }
47
+ ```
48
+ - Use `"research"` if the user picked "Yes" or answered yes/y in plain text
49
+ - Use `"skip"` if the user picked "Skip" or answered no/n
50
+ - Always include `"source": "research-decision"`
51
+ - Optional for ambiguous or "Other / let me explain" answers: add an `inference_note` field to the JSON. Do not put inference text in chat.
52
+ 3. Print exactly one of these one-line confirmations in chat:
53
+ ```text
54
+ Research decision: research
55
+ Research decision: skip
56
+ ```
57
+ 4. Say exactly:
58
+ ```text
59
+ Research decision recorded.
60
+ ```
61
+ Nothing else.
62
+
63
+ ---
64
+
65
+ ## Critical rules
66
+
67
+ - One question, one turn, write file, done. No follow-ups.
68
+ - Do NOT actually run research in this stage — that's a separate dispatch unit (`research-project`) that fires only if the decision is `research`.
69
+ - Do NOT call `ask_user_questions` more than once per turn.
70
+ - If the user picks "Other / let me explain" or gives an ambiguous freeform answer, treat it as "skip" (the recommended choice). Do not change the required confirmation strings.
@@ -0,0 +1,120 @@
1
+ **Working directory:** `{{workingDirectory}}`. All file reads, writes, and shell commands MUST operate relative to this directory. Do NOT `cd` to any other directory.
2
+
3
+ Run **project-level domain research** in 4 parallel dimensions. Read `.gsd/PROJECT.md` and `.gsd/REQUIREMENTS.md` first — they define the scope of what to research. Then spawn 4 parallel `Task` calls (one per dimension) using agent class `scout`, each writing its findings to `.gsd/research/`. This stage runs ONCE per project, after `discuss-requirements` and the `research-decision` gate, before any milestone-level work.
4
+
5
+ **Structured questions available: {{structuredQuestionsAvailable}}**
6
+
7
+ ---
8
+
9
+ ## Stage Banner
10
+
11
+ Print this banner verbatim in chat as your first action:
12
+
13
+ • RESEARCHING (project)
14
+
15
+ Then say: "Spawning 4 research agents in parallel: stack, features, architecture, pitfalls."
16
+
17
+ ---
18
+
19
+ ## Pre-flight
20
+
21
+ 1. Read `.gsd/PROJECT.md` end-to-end. Extract: domain, vision, current state, milestone sequence.
22
+ 2. Read `.gsd/REQUIREMENTS.md` end-to-end. Extract: Active requirement classes (focus research on what the project must deliver).
23
+ 3. `mkdir -p .gsd/research/`
24
+
25
+ If either file is missing, STOP and emit: `"PROJECT.md or REQUIREMENTS.md missing — research-project cannot run."`
26
+
27
+ ---
28
+
29
+ ## Fan-out
30
+
31
+ Issue **4 `Task` tool calls in a single assistant response** (one tool block containing four `Task` invocations). Use `agent: "scout"` for every task. Do not use `agent: "researcher"` — this unit runs under the `planning-dispatch` tools-policy and only `scout` is permitted for project research. The tool runtime executes the calls concurrently — that is the parallelism mechanism here. Do not split them across multiple turns; do not chain them sequentially. After issuing the four calls, wait for ALL of their tool results to come back before doing anything in the "After fan-out completes" step below.
32
+
33
+ Each task gets its own focused prompt. Each task writes one file.
34
+
35
+ ### Task 1 — Stack research → `.gsd/research/STACK.md`
36
+
37
+ Prompt:
38
+
39
+ > Research the standard stack for [domain] as of today. Identify the dominant libraries, frameworks, runtimes, and infrastructure tools used by [domain] products. For each: current stable version, primary alternatives, why teams pick it, when to avoid it.
40
+ >
41
+ > Constraints from PROJECT.md: [list any tech constraints / required frameworks the user already specified].
42
+ >
43
+ > Deliverable: `.gsd/research/STACK.md` with sections:
44
+ > - **Recommended Stack** (with versions and rationale)
45
+ > - **Alternatives Considered** (and why not)
46
+ > - **What NOT to use** (and why)
47
+ > - **Open questions** (anything where the user's choice will materially shape the architecture)
48
+ >
49
+ > Use `resolve_library` / `get_library_docs` for library docs. Use web search sparingly (2–3 queries). Cite sources where versions matter. Mark confidence per recommendation: high / medium / low.
50
+
51
+ ### Task 2 — Features research → `.gsd/research/FEATURES.md`
52
+
53
+ Prompt:
54
+
55
+ > Research what features [domain] products typically have. Categorize as **table stakes** (users expect this; missing it breaks the product) vs **differentiators** (compelling but optional).
56
+ >
57
+ > Active requirements from REQUIREMENTS.md to cross-check: [list R### IDs and titles].
58
+ >
59
+ > Deliverable: `.gsd/research/FEATURES.md` with sections per category (Authentication, Content, Notifications, etc.):
60
+ > - **Table stakes** — bullet list of expected capabilities, with one-sentence justification each
61
+ > - **Differentiators** — bullet list of optional capabilities
62
+ > - **Anti-features** — what successful [domain] products explicitly avoid
63
+ > - **Cross-check vs REQUIREMENTS.md** — which active requirements are covered, which features are missing from REQUIREMENTS, which REQUIREMENTS look excessive
64
+ >
65
+ > Use web search to surface 3–5 representative competitors / examples in the space. Don't go deep — aim for coverage breadth.
66
+
67
+ ### Task 3 — Architecture research → `.gsd/research/ARCHITECTURE.md`
68
+
69
+ Prompt:
70
+
71
+ > Research the typical architecture for [domain] products at the project's scale. Surface common patterns, data models, integration points, and scaling considerations.
72
+ >
73
+ > Vision/scale signals from PROJECT.md: [extract scale-relevant phrases — solo / small team / enterprise / planned user count].
74
+ >
75
+ > Deliverable: `.gsd/research/ARCHITECTURE.md` with sections:
76
+ > - **Recommended Architecture** — diagram-friendly description (data flow, services, key boundaries)
77
+ > - **Data Model Sketch** — core entities, relationships, where state lives
78
+ > - **Integration Points** — external services typically required (auth, payments, email, etc.)
79
+ > - **Scaling Tier** — what works at this project's scale, what to defer
80
+ > - **Reversibility risk** — which architectural choices are hardest to walk back later
81
+ >
82
+ > Use `resolve_library` for library-specific architecture docs. Mark confidence per recommendation.
83
+
84
+ ### Task 4 — Pitfalls research → `.gsd/research/PITFALLS.md`
85
+
86
+ Prompt:
87
+
88
+ > Research common failure modes, gotchas, and footguns for [domain] products. Things experienced builders wish they'd known earlier.
89
+ >
90
+ > Project type from PROJECT.md: [greenfield / brownfield / migration].
91
+ >
92
+ > Deliverable: `.gsd/research/PITFALLS.md` with sections:
93
+ > - **Domain Pitfalls** — failure modes specific to this domain (e.g., for auth: session fixation, password reset flows, token rotation)
94
+ > - **Stack Pitfalls** — known footguns of the recommended stack from STACK.md (or domain norm if STACK isn't ready)
95
+ > - **Scope Traps** — features that look small but are huge ("just add notifications", "just add search")
96
+ > - **Compliance / Security gotchas** — surfaces where regulators or attackers tend to bite
97
+ > - **Migration pitfalls** (only if brownfield) — common breakage when retrofitting [domain] capability into existing systems
98
+ >
99
+ > Web search for postmortems, incident reports, and "lessons learned" content. Sources matter — prefer specific writeups over generic listicles.
100
+
101
+ ---
102
+
103
+ ## After fan-out completes
104
+
105
+ Once all 4 tasks return:
106
+
107
+ 1. Verify all 4 files exist: `STACK.md`, `FEATURES.md`, `ARCHITECTURE.md`, `PITFALLS.md` in `.gsd/research/`. If any are missing, retry that task once.
108
+ 2. Print a concise summary in chat: one sentence per dimension, what each found or why it was blocked. The runtime clears the dispatch marker after this unit exits.
109
+ 3. Say exactly: `"Project research complete."` — nothing else.
110
+
111
+ ---
112
+
113
+ ## Critical rules
114
+
115
+ - **Issue all 4 `Task` calls in a single assistant response** (one block of four tool calls). The tool runtime parallelizes them; do NOT chain them across turns or await them individually.
116
+ - **Each task writes exactly one file** to `.gsd/research/`. No cross-writes.
117
+ - **Research is informational, not prescriptive** — it surfaces options; the user / requirements stage already chose what to build.
118
+ - **Stay within scope** — don't research milestones or slices. That's a different stage.
119
+ - **Budget:** ~3–5 web searches per dimension. Prefer `resolve_library` / `get_library_docs` for library questions.
120
+ - If any task fails twice, write a placeholder `.gsd/research/{DIMENSION}-BLOCKER.md` with the failure reason and continue. If all four dimensions are blockers, the runtime will stop before milestone planning because no usable research exists.
@@ -0,0 +1,68 @@
1
+ **Working directory:** `{{workingDirectory}}`. All file reads, writes, and shell commands MUST operate relative to this directory. Do NOT `cd` to any other directory. For `.gsd` files in this prompt, use absolute paths rooted at `{{workingDirectory}}` instead of discovering them with `Glob`.
2
+
3
+ Configure project workflow preferences. This stage runs ONCE per project, early in deep-mode bootstrap, before `discuss-project`. It applies a small set of recommended workflow defaults and persists them to the YAML frontmatter of `.gsd/PREFERENCES.md` (the same file the runtime reads its preferences from).
4
+
5
+ This is a **default-writing** stage — do NOT ask the user questions. Write the recommended defaults, then end. No follow-ups, no research, no opinion.
6
+
7
+ ---
8
+
9
+ ## Stage Banner
10
+
11
+ Print this banner verbatim in chat as your first action:
12
+
13
+ • WORKFLOW PREFERENCES
14
+
15
+ Then say: "Quick setup — applying recommended workflow defaults."
16
+
17
+ ---
18
+
19
+ ## Default Set
20
+
21
+ Use these recommended defaults without asking:
22
+
23
+ - `commit_policy: per-task` — atomic commit after every task; finest granularity, easiest to revert
24
+ - `branch_model: single` — all work on current branch
25
+ - `uat_dispatch: true` — verification runs automatically; failures pause execution
26
+ - `models.executor_class: balanced` — sensible cost/quality default
27
+ - `research: skip` — deterministic default; the dedicated research-decision stage can later switch to `research`
28
+
29
+ ---
30
+
31
+ ## Output
32
+
33
+ Apply the defaults:
34
+
35
+ 1. Read `{{workingDirectory}}/.gsd/PREFERENCES.md` if it exists. The file is YAML frontmatter (between `---` lines) followed by an optional markdown body. Parse the existing frontmatter so you can preserve unrelated keys (e.g. `planning_depth`).
36
+ 2. Merge the defaults into the frontmatter under these keys, preserving any existing explicit value:
37
+ - top-level `commit_policy: per-task`
38
+ - top-level `branch_model: single`
39
+ - top-level `uat_dispatch: true`
40
+ - top-level `research: skip`
41
+ - nested `models.executor_class: balanced`
42
+ 3. Also set top-level `workflow_prefs_captured: true` — this is the single explicit marker the dispatch layer uses to know the wizard has run.
43
+ 4. Write `{{workingDirectory}}/.gsd/PREFERENCES.md` back with the merged frontmatter and the original body preserved unchanged. Frontmatter delimiters are exactly `---` on their own lines.
44
+ 5. Pre-seed the research decision so the standalone `research-decision` stage is a no-op if the user already answered here:
45
+ - Ensure `{{workingDirectory}}/.gsd/runtime/` exists.
46
+ - Write `{{workingDirectory}}/.gsd/runtime/research-decision.json`:
47
+ ```json
48
+ {
49
+ "decision": "skip",
50
+ "decided_at": "<ISO 8601 timestamp>",
51
+ "source": "workflow-preferences",
52
+ "reason": "deterministic-default"
53
+ }
54
+ ```
55
+ Use `"skip"` unless an existing valid `{{workingDirectory}}/.gsd/runtime/research-decision.json` explicitly says `"research"` with `"source": "research-decision"` or `"source": "user"`.
56
+ 6. Print a concise summary in chat: each key on its own line, format `key: value`. Include `commit_policy`, `branch_model`, `uat_dispatch`, `models.executor_class`, and `research` (matching the preserved or pre-seeded runtime research decision).
57
+ 7. Say exactly: `"Workflow preferences saved."` — nothing else.
58
+
59
+ Do NOT write to `.gsd/config.json`; runtime preferences load from `PREFERENCES.md`.
60
+
61
+ ---
62
+
63
+ ## Critical rules
64
+
65
+ - Do NOT ask any questions. Defaults only, write file, done.
66
+ - Do NOT call `ask_user_questions`, `AskUserQuestion`, or any other interactive user-input tool in this stage.
67
+ - Do NOT change any keys other than the frontmatter keys specified plus `workflow_prefs_captured`. Research is persisted to `.gsd/runtime/research-decision.json`, NOT to `phases.skip_research`.
68
+ - Preserve existing explicit values for `commit_policy`, `branch_model`, `uat_dispatch`, and `models.executor_class`; only fill missing values with defaults.
@@ -1,5 +1,7 @@
1
1
  # Parallel Slice Research
2
2
 
3
+ **Working directory:** `{{workingDirectory}}`. All file reads, writes, and shell commands MUST operate relative to this directory. Do NOT `cd` to any other directory.
4
+
3
5
  You are dispatching parallel research agents for **{{sliceCount}} slices** in milestone **{{mid}} — {{midTitle}}**.
4
6
 
5
7
  ## Slices to Research
@@ -10,6 +10,12 @@ All relevant context has been preloaded below — start working immediately with
10
10
 
11
11
  {{inlinedContext}}
12
12
 
13
+ ## Already Planned? Soft Brake
14
+
15
+ If `{{outputPath}}` already exists on disk with at least one slice line (e.g. `- [ ] **S01:`) AND `gsd_query` reports slice rows for this milestone, a prior `gsd_plan_milestone` call already persisted the plan. Do **not** re-call `gsd_plan_milestone` — its UPSERT would overwrite the existing plan with whatever you reconstruct, which is unsafe when you don't have the original decomposition reasoning. Skip directly to the ready phrase at the end of this prompt.
16
+
17
+ If only the file exists (no DB rows) or only DB rows exist (no file), the prior write was incomplete — proceed with planning as normal so the tool reconciles both.
18
+
13
19
  ## Your Role in the Pipeline
14
20
 
15
21
  You are the first deep look at this milestone. You have full tool access — explore the codebase, look up docs, investigate technology choices. Your job is to understand the landscape and then strategically decompose the work into demoable slices.
@@ -23,7 +29,7 @@ Before decomposing, build your understanding:
23
29
  1. **Codebase exploration.** For small/familiar codebases, use `rg`, `find`, and targeted reads. For large or unfamiliar codebases, use `scout` to build a broad map efficiently before diving in.
24
30
  2. **Library docs.** Use `resolve_library` / `get_library_docs` for unfamiliar libraries — skip this for libraries already used in the codebase.
25
31
  3. **Skill Discovery ({{skillDiscoveryMode}}):**{{skillDiscoveryInstructions}}
26
- 4. **Requirements analysis.** If `.gsd/REQUIREMENTS.md` exists, research against it. Identify which Active requirements are table stakes, likely omissions, overbuilt risks, or domain-standard behaviors.
32
+ 4. **Requirements analysis.** If `.gsd/REQUIREMENTS.md` exists, research against it and treat Active requirements as the capability contract for this milestone. Identify which Active requirements are table stakes, likely omissions, overbuilt risks, or domain-standard behaviors. If `REQUIREMENTS.md` is missing, continue in legacy compatibility mode but explicitly note missing requirement coverage in the roadmap.
27
33
 
28
34
  ### Strategic Questions to Answer
29
35
 
@@ -47,7 +53,7 @@ Then:
47
53
  2. {{skillActivation}}
48
54
  3. Create the roadmap: decompose into demoable vertical slices — as many as the work genuinely needs, no more. A simple feature might be 1 slice. Don't decompose for decomposition's sake.
49
55
  4. Order by risk (high-risk first)
50
- 5. Call `gsd_plan_milestone` to persist the milestone planning fields, slice rows, and **horizontal checklist** in the DB-backed planning path. Do **not** write `{{outputPath}}`, `ROADMAP.md`, or other planning artifacts manually — the planning tool owns roadmap rendering and persistence.
56
+ 5. Call `gsd_plan_milestone` to persist the milestone planning fields, slice rows, and **horizontal checklist** in the DB-backed planning path. Fill the Horizontal Checklist with cross-cutting concerns considered during planning (requirements re-read, decisions re-evaluated, graceful shutdown, revenue paths, auth boundary, shared resources, reconnection). Omit it for trivial milestones where none apply. Do **not** write `{{outputPath}}`, `ROADMAP.md`, or other planning artifacts manually — the planning tool owns roadmap rendering and persistence.
51
57
  6. If planning produced structural decisions (e.g. slice ordering rationale, technology choices, scope exclusions), call `gsd_decision_save` for each decision — the tool auto-assigns IDs and regenerates `.gsd/DECISIONS.md` automatically.
52
58
 
53
59
  ## Requirement Mapping Rules
@@ -26,7 +26,7 @@ This unit runs under the `planning-dispatch` tools-policy: you may use the `suba
26
26
 
27
27
  - You'd otherwise read more than ~3 files to understand a subsystem → dispatch the **scout** agent for codebase recon and work from its compressed report.
28
28
  - The slice spans multiple subsystems and the decomposition isn't obvious → dispatch the **planner** agent or use the **decompose-into-slices** skill on a focused sub-area, then integrate.
29
- - You need current external information (library docs, API behavior, recent changes) → dispatch the **researcher** agent.
29
+ - You need current external information (library docs, API behavior, recent changes) → dispatch the **scout** agent.
30
30
 
31
31
  **Do not** dispatch implementation-tier agents (`worker`, `refactorer`, `tester`) from this unit — they would write user source and bypass this unit's write isolation. Implementation belongs in `execute-task`.
32
32
 
@@ -66,7 +66,7 @@ Narrate your decomposition reasoning — why you're grouping work this way, what
66
66
  {{executorContextConstraints}}
67
67
 
68
68
  Then:
69
- 0. If `REQUIREMENTS.md` was preloaded above, identify which Active requirements the roadmap says this slice owns or supports. These are the requirements this plan must deliver — every owned requirement needs at least one task that directly advances it, and verification must prove the requirement is met.
69
+ 0. If `REQUIREMENTS.md` was preloaded above, identify which Active requirements the roadmap says this slice owns or supports. Owned requirements are acceptance criteria for this slice — every owned requirement needs at least one task that directly advances it, and verification must prove the requirement is met. Supporting requirements are compatibility constraints only; do not pull a later slice's primary work into this slice unless the roadmap explicitly assigns that work here.
70
70
  0a. Call `memory_query` with keywords from the slice title and the source files listed below. Prior architectural decisions, conventions, and gotchas in this area should inform task decomposition — not be re-derived during execution.
71
71
  1. Read the templates:
72
72
  - `~/.gsd/agent/extensions/gsd/templates/plan.md`
@@ -80,7 +80,7 @@ Then:
80
80
  - Planned test files must only read from or import paths that are tracked in git. Do NOT plan tests whose inputs or fixtures are paths listed in `.gitignore` (e.g. `.gsd/`, `.planning/`, `.audits/`). If the scenario seems to require such a file, plan an inline fixture or a tracked sample instead.
81
81
  4. **For non-trivial slices only** — plan observability, proof level, and integration closure:
82
82
  - Include `Observability / Diagnostics` for backend, integration, async, stateful, or UI slices where failure diagnosis matters.
83
- - Fill `Proof Level` and `Integration Closure` when the slice crosses runtime boundaries or has meaningful integration concerns.
83
+ - Fill `Proof Level` and `Integration Closure` truthfully when the slice crosses runtime boundaries or has meaningful integration concerns — say what class of proof this slice really delivers and what end-to-end wiring still remains. Do not phrase fixture/contract-only proof as if it were live integration proof.
84
84
  - **Omit these sections entirely for simple slices** where they would all be "none" or trivially obvious.
85
85
  5. **Quality gates** — for non-trivial slices, fill the Threat Surface (Q3) and Requirement Impact (Q4) sections in the slice plan:
86
86
  - **Threat Surface:** Identify abuse scenarios, data exposure risks, and input trust boundaries. Required when the slice handles user input, authentication, authorization, or sensitive data. Omit entirely for internal refactoring or simple changes.
@@ -92,16 +92,18 @@ Then:
92
92
  - a matching task plan file with description, steps, must-haves, verification, inputs, and expected output
93
93
  - **Inputs and Expected Output must list concrete backtick-wrapped file paths** (e.g. `` `src/types.ts` ``). These are machine-parsed to derive task dependencies — vague prose without paths breaks parallel execution. Every task must have at least one output file path.
94
94
  - Observability Impact section **only if the task touches runtime boundaries, async flows, or error paths** — omit it otherwise
95
- 7. **Persist planning state through `gsd_plan_slice`.** Call it with the full slice planning payload (goal, demo, must-haves, verification, tasks, and metadata). The tool inserts all tasks in the same transaction, writes to the DB, and renders `{{outputPath}}` and `{{slicePath}}/tasks/T##-PLAN.md` files automatically. Do **not** call `gsd_plan_task` separately — `gsd_plan_slice` handles task persistence. Do **not** rely on direct `PLAN.md` writes as the source of truth; the DB-backed tool is the canonical write path for slice and task planning state.
95
+ 7. **Persist planning state through `gsd_plan_slice`.** Call it with the full slice planning payload: `goal`, `successCriteria`, optional `proofLevel`, optional `integrationClosure`, optional `observabilityImpact`, and `tasks`. Keep each task description's first paragraph concise; detailed steps and must-haves may follow, but the parent slice plan should read as a summary. The tool inserts all tasks in the same transaction, writes to the DB, and renders `{{outputPath}}` and `{{slicePath}}/tasks/T##-PLAN.md` files automatically. Do **not** call `gsd_plan_task` separately — `gsd_plan_slice` handles task persistence. Do **not** rely on direct `PLAN.md` writes as the source of truth; the DB-backed tool is the canonical write path for slice and task planning state.
96
96
  8. **Self-audit the plan.** Walk through each check — if any fail, fix the plan files before moving on:
97
97
  - **Completion semantics:** If every task were completed exactly as written, the slice goal/demo should actually be true.
98
- - **Requirement coverage:** Every must-have in the slice maps to at least one task. No must-have is orphaned. If `REQUIREMENTS.md` exists, every Active requirement this slice owns maps to at least one task.
98
+ - **Requirement coverage:** Every must-have in the slice maps to at least one task. No must-have is orphaned. If `REQUIREMENTS.md` exists, every Active requirement this slice owns maps to at least one task with verification that proves the requirement is met.
99
+ - **Decisions honored:** The plan respects locked decisions from any inlined context, research, or `.gsd/DECISIONS.md` artifacts. Do not silently re-litigate prior decisions.
99
100
  - **Task completeness:** Every task has steps, must-haves, verification, inputs, and expected output — none are blank or vague. Inputs and Expected Output list backtick-wrapped file paths, not prose descriptions.
100
101
  - **Dependency correctness:** Task ordering is consistent. No task references work from a later task.
101
102
  - **Key links planned:** For every pair of artifacts that must connect, there is an explicit step that wires them.
102
103
  - **Scope sanity:** Target 2–5 steps and 3–8 files per task. 10+ steps or 12+ files — must split. Each task must be completable in a single fresh context window.
103
- - **Feature completeness:** Every task produces real, user-facing progress not just internal scaffolding.
104
- - **Quality gate coverage:** For non-trivial slices, Threat Surface and Requirement Impact sections are present and specific (not placeholder text). For non-trivial tasks, Failure Modes, Load Profile, and Negative Tests are addressed in the task plan.
104
+ - **Proof-level truthfulness:** The proof-level wording does not overclaim live integration if only fixture/contract proof is planned.
105
+ - **Feature completeness:** Every task produces real, user-facing progress not just internal scaffolding. If the slice has a UI surface, at least one task builds the real UI; if it has an API, at least one task connects it to a real data source. Showing the completed result to a non-technical stakeholder should demonstrate real product progress rather than developer artifacts.
106
+ - **Quality gate coverage:** For non-trivial slices, Threat Surface (Q3: abuse, data exposure, input trust) and Requirement Impact (Q4: requirements touched, re-verify, decisions revisited) sections are present and specific (not placeholder text). For non-trivial tasks, Failure Modes (Q5), Load Profile (Q6), and Negative Tests (Q7) are addressed in the task plan.
105
107
  10. If planning produced structural decisions, append them to `.gsd/DECISIONS.md`
106
108
  11. {{commitInstruction}}
107
109
 
@@ -26,7 +26,7 @@ This unit runs under the `planning-dispatch` tools-policy: you may use the `suba
26
26
 
27
27
  - You'd otherwise read more than ~3 files to understand a subsystem touched by the sketch → dispatch the **scout** agent and work from its compressed report.
28
28
  - A specific area of the refinement needs deeper architectural analysis → dispatch the **planner** agent for a focused sub-plan, then integrate.
29
- - You need current external information (library docs, API behavior) → dispatch the **researcher** agent.
29
+ - You need current external information (library docs, API behavior) → dispatch the **scout** agent.
30
30
 
31
31
  **Do not** dispatch implementation-tier agents (`worker`, `refactorer`, `tester`) — they would write user source and bypass write isolation. Implementation belongs in `execute-task`.
32
32
 
@@ -1,5 +1,7 @@
1
1
  You are executing GSD auto-mode.
2
2
 
3
+ **Working directory:** `{{workingDirectory}}`. All file reads, writes, and shell commands MUST operate relative to this directory. Do NOT `cd` to any other directory.
4
+
3
5
  ## UNIT: Rewrite Documents — Apply Override(s) for Milestone {{milestoneId}} ("{{milestoneTitle}}")
4
6
 
5
7
  An override was issued by the user that changes a fundamental decision or approach. Your job is to propagate this change across all active planning documents so they are internally consistent and future tasks execute correctly.