gsd-pi 2.10.12 → 2.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (504) hide show
  1. package/dist/bundled-extension-paths.d.ts +2 -0
  2. package/dist/bundled-extension-paths.js +10 -0
  3. package/dist/loader.js +45 -28
  4. package/dist/onboarding.js +100 -0
  5. package/dist/resource-loader.js +12 -3
  6. package/dist/resources/GSD-WORKFLOW.md +661 -0
  7. package/dist/resources/agents/researcher.md +29 -0
  8. package/dist/resources/agents/scout.md +56 -0
  9. package/dist/resources/agents/worker.md +31 -0
  10. package/dist/resources/extensions/ask-user-questions.ts +289 -0
  11. package/dist/resources/extensions/async-jobs/async-bash-tool.ts +211 -0
  12. package/dist/resources/extensions/async-jobs/await-tool.ts +101 -0
  13. package/dist/resources/extensions/async-jobs/cancel-job-tool.ts +34 -0
  14. package/dist/resources/extensions/async-jobs/index.ts +133 -0
  15. package/dist/resources/extensions/async-jobs/job-manager.ts +211 -0
  16. package/dist/resources/extensions/bg-shell/index.ts +3179 -0
  17. package/dist/resources/extensions/browser-tools/BROWSER-TOOLS-V2-PROPOSAL.md +1277 -0
  18. package/dist/resources/extensions/browser-tools/capture.ts +165 -0
  19. package/dist/resources/extensions/browser-tools/core.d.ts +205 -0
  20. package/dist/resources/extensions/browser-tools/core.js +1057 -0
  21. package/dist/resources/extensions/browser-tools/evaluate-helpers.ts +184 -0
  22. package/dist/resources/extensions/browser-tools/index.ts +51 -0
  23. package/dist/resources/extensions/browser-tools/lifecycle.ts +270 -0
  24. package/dist/resources/extensions/browser-tools/package.json +24 -0
  25. package/dist/resources/extensions/browser-tools/refs.ts +264 -0
  26. package/dist/resources/extensions/browser-tools/settle.ts +197 -0
  27. package/dist/resources/extensions/browser-tools/state.ts +408 -0
  28. package/dist/resources/extensions/browser-tools/tests/browser-tools-integration.test.mjs +652 -0
  29. package/dist/resources/extensions/browser-tools/tests/browser-tools-unit.test.cjs +614 -0
  30. package/dist/resources/extensions/browser-tools/tools/assertions.ts +342 -0
  31. package/dist/resources/extensions/browser-tools/tools/forms.ts +801 -0
  32. package/dist/resources/extensions/browser-tools/tools/inspection.ts +492 -0
  33. package/dist/resources/extensions/browser-tools/tools/intent.ts +614 -0
  34. package/dist/resources/extensions/browser-tools/tools/interaction.ts +865 -0
  35. package/dist/resources/extensions/browser-tools/tools/navigation.ts +232 -0
  36. package/dist/resources/extensions/browser-tools/tools/pages.ts +303 -0
  37. package/dist/resources/extensions/browser-tools/tools/refs.ts +541 -0
  38. package/dist/resources/extensions/browser-tools/tools/screenshot.ts +83 -0
  39. package/dist/resources/extensions/browser-tools/tools/session.ts +400 -0
  40. package/dist/resources/extensions/browser-tools/tools/wait.ts +247 -0
  41. package/dist/resources/extensions/browser-tools/utils.ts +660 -0
  42. package/dist/resources/extensions/context7/index.ts +428 -0
  43. package/dist/resources/extensions/context7/package.json +11 -0
  44. package/dist/resources/extensions/get-secrets-from-user.ts +625 -0
  45. package/dist/resources/extensions/google-search/index.ts +336 -0
  46. package/dist/resources/extensions/google-search/package.json +9 -0
  47. package/dist/resources/extensions/gsd/activity-log.ts +116 -0
  48. package/dist/resources/extensions/gsd/auto.ts +3732 -0
  49. package/dist/resources/extensions/gsd/commands.ts +544 -0
  50. package/dist/resources/extensions/gsd/crash-recovery.ts +105 -0
  51. package/dist/resources/extensions/gsd/dashboard-overlay.ts +564 -0
  52. package/dist/resources/extensions/gsd/dispatch-guard.ts +78 -0
  53. package/dist/resources/extensions/gsd/docs/preferences-reference.md +278 -0
  54. package/dist/resources/extensions/gsd/doctor.ts +766 -0
  55. package/dist/resources/extensions/gsd/exit-command.ts +18 -0
  56. package/dist/resources/extensions/gsd/files.ts +857 -0
  57. package/dist/resources/extensions/gsd/git-service.ts +904 -0
  58. package/dist/resources/extensions/gsd/gitignore.ts +200 -0
  59. package/dist/resources/extensions/gsd/guided-flow.ts +1054 -0
  60. package/dist/resources/extensions/gsd/index.ts +735 -0
  61. package/dist/resources/extensions/gsd/metrics.ts +374 -0
  62. package/dist/resources/extensions/gsd/migrate/command.ts +218 -0
  63. package/dist/resources/extensions/gsd/migrate/index.ts +42 -0
  64. package/dist/resources/extensions/gsd/migrate/parser.ts +323 -0
  65. package/dist/resources/extensions/gsd/migrate/parsers.ts +624 -0
  66. package/dist/resources/extensions/gsd/migrate/preview.ts +48 -0
  67. package/dist/resources/extensions/gsd/migrate/transformer.ts +346 -0
  68. package/dist/resources/extensions/gsd/migrate/types.ts +370 -0
  69. package/dist/resources/extensions/gsd/migrate/validator.ts +55 -0
  70. package/dist/resources/extensions/gsd/migrate/writer.ts +539 -0
  71. package/dist/resources/extensions/gsd/native-git-bridge.ts +181 -0
  72. package/dist/resources/extensions/gsd/native-parser-bridge.ts +135 -0
  73. package/dist/resources/extensions/gsd/observability-validator.ts +408 -0
  74. package/dist/resources/extensions/gsd/package.json +11 -0
  75. package/dist/resources/extensions/gsd/paths.ts +339 -0
  76. package/dist/resources/extensions/gsd/post-unit-hooks.ts +449 -0
  77. package/dist/resources/extensions/gsd/preferences.ts +988 -0
  78. package/dist/resources/extensions/gsd/prompt-loader.ts +92 -0
  79. package/dist/resources/extensions/gsd/prompts/complete-milestone.md +25 -0
  80. package/dist/resources/extensions/gsd/prompts/complete-slice.md +27 -0
  81. package/dist/resources/extensions/gsd/prompts/discuss.md +237 -0
  82. package/dist/resources/extensions/gsd/prompts/doctor-heal.md +29 -0
  83. package/dist/resources/extensions/gsd/prompts/execute-task.md +63 -0
  84. package/dist/resources/extensions/gsd/prompts/guided-complete-slice.md +3 -0
  85. package/dist/resources/extensions/gsd/prompts/guided-discuss-milestone.md +5 -0
  86. package/dist/resources/extensions/gsd/prompts/guided-discuss-slice.md +61 -0
  87. package/dist/resources/extensions/gsd/prompts/guided-execute-task.md +3 -0
  88. package/dist/resources/extensions/gsd/prompts/guided-plan-milestone.md +29 -0
  89. package/dist/resources/extensions/gsd/prompts/guided-plan-slice.md +3 -0
  90. package/dist/resources/extensions/gsd/prompts/guided-research-slice.md +13 -0
  91. package/dist/resources/extensions/gsd/prompts/guided-resume-task.md +1 -0
  92. package/dist/resources/extensions/gsd/prompts/plan-milestone.md +78 -0
  93. package/dist/resources/extensions/gsd/prompts/plan-slice.md +55 -0
  94. package/dist/resources/extensions/gsd/prompts/queue.md +100 -0
  95. package/dist/resources/extensions/gsd/prompts/reassess-roadmap.md +48 -0
  96. package/dist/resources/extensions/gsd/prompts/replan-slice.md +39 -0
  97. package/dist/resources/extensions/gsd/prompts/research-milestone.md +37 -0
  98. package/dist/resources/extensions/gsd/prompts/research-slice.md +28 -0
  99. package/dist/resources/extensions/gsd/prompts/review-migration.md +66 -0
  100. package/dist/resources/extensions/gsd/prompts/run-uat.md +109 -0
  101. package/dist/resources/extensions/gsd/prompts/system.md +190 -0
  102. package/dist/resources/extensions/gsd/prompts/worktree-merge.md +123 -0
  103. package/dist/resources/extensions/gsd/roadmap-slices.ts +50 -0
  104. package/dist/resources/extensions/gsd/session-forensics.ts +500 -0
  105. package/dist/resources/extensions/gsd/skill-discovery.ts +137 -0
  106. package/dist/resources/extensions/gsd/state.ts +569 -0
  107. package/dist/resources/extensions/gsd/templates/context.md +76 -0
  108. package/dist/resources/extensions/gsd/templates/decisions.md +8 -0
  109. package/dist/resources/extensions/gsd/templates/milestone-summary.md +73 -0
  110. package/dist/resources/extensions/gsd/templates/plan.md +131 -0
  111. package/dist/resources/extensions/gsd/templates/preferences.md +23 -0
  112. package/dist/resources/extensions/gsd/templates/project.md +31 -0
  113. package/dist/resources/extensions/gsd/templates/reassessment.md +28 -0
  114. package/dist/resources/extensions/gsd/templates/requirements.md +81 -0
  115. package/dist/resources/extensions/gsd/templates/research.md +46 -0
  116. package/dist/resources/extensions/gsd/templates/roadmap.md +118 -0
  117. package/dist/resources/extensions/gsd/templates/secrets-manifest.md +22 -0
  118. package/dist/resources/extensions/gsd/templates/slice-context.md +58 -0
  119. package/dist/resources/extensions/gsd/templates/slice-summary.md +99 -0
  120. package/dist/resources/extensions/gsd/templates/state.md +19 -0
  121. package/dist/resources/extensions/gsd/templates/task-plan.md +52 -0
  122. package/dist/resources/extensions/gsd/templates/task-summary.md +57 -0
  123. package/dist/resources/extensions/gsd/templates/uat.md +54 -0
  124. package/dist/resources/extensions/gsd/tests/activity-log-prune.test.ts +297 -0
  125. package/dist/resources/extensions/gsd/tests/activity-log-save.test.ts +127 -0
  126. package/dist/resources/extensions/gsd/tests/auto-draft-pause.test.ts +109 -0
  127. package/dist/resources/extensions/gsd/tests/auto-preflight.test.ts +45 -0
  128. package/dist/resources/extensions/gsd/tests/auto-secrets-gate.test.ts +196 -0
  129. package/dist/resources/extensions/gsd/tests/auto-supervisor.test.mjs +53 -0
  130. package/dist/resources/extensions/gsd/tests/collect-from-manifest.test.ts +469 -0
  131. package/dist/resources/extensions/gsd/tests/complete-milestone.test.ts +200 -0
  132. package/dist/resources/extensions/gsd/tests/cost-projection.test.ts +134 -0
  133. package/dist/resources/extensions/gsd/tests/derive-state-deps.test.ts +312 -0
  134. package/dist/resources/extensions/gsd/tests/derive-state-draft.test.ts +299 -0
  135. package/dist/resources/extensions/gsd/tests/derive-state.test.ts +660 -0
  136. package/dist/resources/extensions/gsd/tests/discuss-prompt.test.ts +27 -0
  137. package/dist/resources/extensions/gsd/tests/dispatch-guard.test.ts +91 -0
  138. package/dist/resources/extensions/gsd/tests/doctor-fixlevel.test.ts +170 -0
  139. package/dist/resources/extensions/gsd/tests/doctor.test.ts +594 -0
  140. package/dist/resources/extensions/gsd/tests/draft-promotion.test.ts +169 -0
  141. package/dist/resources/extensions/gsd/tests/exit-command.test.ts +50 -0
  142. package/dist/resources/extensions/gsd/tests/git-service.test.ts +1788 -0
  143. package/dist/resources/extensions/gsd/tests/idle-recovery.test.ts +577 -0
  144. package/dist/resources/extensions/gsd/tests/integration-mixed-milestones.test.ts +580 -0
  145. package/dist/resources/extensions/gsd/tests/manifest-status.test.ts +283 -0
  146. package/dist/resources/extensions/gsd/tests/metrics-io.test.ts +176 -0
  147. package/dist/resources/extensions/gsd/tests/metrics.test.ts +188 -0
  148. package/dist/resources/extensions/gsd/tests/migrate-command.test.ts +369 -0
  149. package/dist/resources/extensions/gsd/tests/migrate-parser.test.ts +757 -0
  150. package/dist/resources/extensions/gsd/tests/migrate-transformer.test.ts +635 -0
  151. package/dist/resources/extensions/gsd/tests/migrate-validator-parsers.test.ts +414 -0
  152. package/dist/resources/extensions/gsd/tests/migrate-writer-integration.test.ts +297 -0
  153. package/dist/resources/extensions/gsd/tests/migrate-writer.test.ts +398 -0
  154. package/dist/resources/extensions/gsd/tests/must-have-parser.test.ts +291 -0
  155. package/dist/resources/extensions/gsd/tests/network-error-fallback.test.ts +54 -0
  156. package/dist/resources/extensions/gsd/tests/next-milestone-id.test.ts +66 -0
  157. package/dist/resources/extensions/gsd/tests/orphaned-branch.test.ts +353 -0
  158. package/dist/resources/extensions/gsd/tests/parsers.test.ts +1664 -0
  159. package/dist/resources/extensions/gsd/tests/plan-milestone.test.ts +133 -0
  160. package/dist/resources/extensions/gsd/tests/plan-quality-validator.test.ts +363 -0
  161. package/dist/resources/extensions/gsd/tests/post-unit-hooks.test.ts +297 -0
  162. package/dist/resources/extensions/gsd/tests/preferences-hooks.test.ts +226 -0
  163. package/dist/resources/extensions/gsd/tests/queue-draft-detection.test.ts +126 -0
  164. package/dist/resources/extensions/gsd/tests/reassess-prompt.test.ts +142 -0
  165. package/dist/resources/extensions/gsd/tests/regex-hardening.test.ts +281 -0
  166. package/dist/resources/extensions/gsd/tests/remote-questions.test.ts +155 -0
  167. package/dist/resources/extensions/gsd/tests/remote-status.test.ts +99 -0
  168. package/dist/resources/extensions/gsd/tests/replan-slice.test.ts +493 -0
  169. package/dist/resources/extensions/gsd/tests/requirements.test.ts +106 -0
  170. package/dist/resources/extensions/gsd/tests/resolve-ts-hooks.mjs +35 -0
  171. package/dist/resources/extensions/gsd/tests/resolve-ts.mjs +11 -0
  172. package/dist/resources/extensions/gsd/tests/roadmap-slices.test.ts +41 -0
  173. package/dist/resources/extensions/gsd/tests/run-uat.test.ts +316 -0
  174. package/dist/resources/extensions/gsd/tests/secure-env-collect.test.ts +185 -0
  175. package/dist/resources/extensions/gsd/tests/smart-entry-draft.test.ts +123 -0
  176. package/dist/resources/extensions/gsd/tests/test-helpers.ts +61 -0
  177. package/dist/resources/extensions/gsd/tests/unique-milestone-ids.test.ts +219 -0
  178. package/dist/resources/extensions/gsd/tests/unit-runtime.test.ts +234 -0
  179. package/dist/resources/extensions/gsd/tests/workspace-index.test.ts +75 -0
  180. package/dist/resources/extensions/gsd/tests/worktree-integration.test.ts +234 -0
  181. package/dist/resources/extensions/gsd/tests/worktree-manager.test.ts +141 -0
  182. package/dist/resources/extensions/gsd/tests/worktree.test.ts +597 -0
  183. package/dist/resources/extensions/gsd/tests/write-gate.test.ts +122 -0
  184. package/dist/resources/extensions/gsd/types.ts +296 -0
  185. package/dist/resources/extensions/gsd/unit-runtime.ts +184 -0
  186. package/dist/resources/extensions/gsd/workspace-index.ts +189 -0
  187. package/dist/resources/extensions/gsd/worktree-command.ts +845 -0
  188. package/dist/resources/extensions/gsd/worktree-manager.ts +459 -0
  189. package/dist/resources/extensions/gsd/{worktree.js → worktree.ts} +92 -61
  190. package/dist/resources/extensions/mac-tools/index.ts +852 -0
  191. package/dist/resources/extensions/mac-tools/swift-cli/Package.swift +22 -0
  192. package/dist/resources/extensions/mac-tools/swift-cli/Sources/main.swift +1318 -0
  193. package/dist/resources/extensions/mcporter/index.ts +429 -0
  194. package/dist/resources/extensions/remote-questions/config.ts +81 -0
  195. package/dist/resources/extensions/remote-questions/discord-adapter.ts +128 -0
  196. package/dist/resources/extensions/remote-questions/format.ts +163 -0
  197. package/dist/resources/extensions/remote-questions/manager.ts +192 -0
  198. package/dist/resources/extensions/remote-questions/remote-command.ts +361 -0
  199. package/dist/resources/extensions/remote-questions/slack-adapter.ts +92 -0
  200. package/dist/resources/extensions/remote-questions/status.ts +31 -0
  201. package/dist/resources/extensions/remote-questions/store.ts +77 -0
  202. package/dist/resources/extensions/remote-questions/types.ts +75 -0
  203. package/dist/resources/extensions/search-the-web/cache.ts +78 -0
  204. package/dist/resources/extensions/search-the-web/command-search-provider.ts +99 -0
  205. package/dist/resources/extensions/search-the-web/format.ts +258 -0
  206. package/dist/resources/extensions/search-the-web/http.ts +238 -0
  207. package/dist/resources/extensions/search-the-web/index.ts +65 -0
  208. package/dist/resources/extensions/search-the-web/native-search.ts +165 -0
  209. package/dist/resources/extensions/search-the-web/provider.ts +136 -0
  210. package/dist/resources/extensions/search-the-web/tavily.ts +116 -0
  211. package/dist/resources/extensions/search-the-web/tool-fetch-page.ts +581 -0
  212. package/dist/resources/extensions/search-the-web/tool-llm-context.ts +620 -0
  213. package/dist/resources/extensions/search-the-web/tool-search.ts +635 -0
  214. package/dist/resources/extensions/search-the-web/url-utils.ts +91 -0
  215. package/dist/resources/extensions/shared/bundled-extension-paths.ts +11 -0
  216. package/dist/resources/extensions/shared/confirm-ui.ts +126 -0
  217. package/dist/resources/extensions/shared/interview-ui.ts +613 -0
  218. package/dist/resources/extensions/shared/next-action-ui.ts +197 -0
  219. package/dist/resources/extensions/shared/progress-widget.ts +282 -0
  220. package/dist/resources/extensions/shared/terminal.ts +23 -0
  221. package/dist/resources/extensions/shared/thinking-widget.ts +107 -0
  222. package/dist/resources/extensions/shared/ui.ts +400 -0
  223. package/dist/resources/extensions/shared/wizard-ui.ts +551 -0
  224. package/dist/resources/extensions/slash-commands/audit.ts +88 -0
  225. package/dist/resources/extensions/slash-commands/clear.ts +10 -0
  226. package/dist/resources/extensions/slash-commands/create-extension.ts +297 -0
  227. package/dist/resources/extensions/slash-commands/create-slash-command.ts +234 -0
  228. package/dist/resources/extensions/slash-commands/index.ts +12 -0
  229. package/dist/resources/extensions/subagent/agents.ts +126 -0
  230. package/dist/resources/extensions/subagent/index.ts +1072 -0
  231. package/dist/resources/extensions/subagent/isolation.ts +498 -0
  232. package/dist/resources/extensions/ttsr/index.ts +163 -0
  233. package/dist/resources/extensions/ttsr/rule-loader.ts +121 -0
  234. package/dist/resources/extensions/ttsr/ttsr-interrupt.md +6 -0
  235. package/dist/resources/extensions/ttsr/ttsr-manager.ts +430 -0
  236. package/dist/resources/extensions/universal-config/discovery.ts +78 -0
  237. package/dist/resources/extensions/universal-config/format.ts +160 -0
  238. package/dist/resources/extensions/universal-config/index.ts +118 -0
  239. package/dist/resources/extensions/universal-config/package.json +11 -0
  240. package/dist/resources/extensions/universal-config/scanners.ts +579 -0
  241. package/dist/resources/extensions/universal-config/tests/discovery.test.ts +111 -0
  242. package/dist/resources/extensions/universal-config/tests/format.test.ts +111 -0
  243. package/dist/resources/extensions/universal-config/tests/scanners.test.ts +438 -0
  244. package/dist/resources/extensions/universal-config/tools.ts +60 -0
  245. package/dist/resources/extensions/universal-config/types.ts +116 -0
  246. package/dist/resources/extensions/voice/index.ts +271 -0
  247. package/dist/resources/extensions/voice/speech-recognizer.py +504 -0
  248. package/dist/resources/extensions/voice/speech-recognizer.swift +154 -0
  249. package/dist/resources/skills/debug-like-expert/SKILL.md +231 -0
  250. package/dist/resources/skills/debug-like-expert/references/debugging-mindset.md +253 -0
  251. package/dist/resources/skills/debug-like-expert/references/hypothesis-testing.md +373 -0
  252. package/dist/resources/skills/debug-like-expert/references/investigation-techniques.md +337 -0
  253. package/dist/resources/skills/debug-like-expert/references/verification-patterns.md +425 -0
  254. package/dist/resources/skills/debug-like-expert/references/when-to-research.md +361 -0
  255. package/dist/resources/skills/frontend-design/SKILL.md +45 -0
  256. package/dist/resources/skills/github-workflows/SKILL.md +92 -0
  257. package/dist/resources/skills/github-workflows/references/gh/SKILL.md +255 -0
  258. package/dist/resources/skills/github-workflows/references/gh/references/issue-stories.md +204 -0
  259. package/dist/resources/skills/github-workflows/references/gh/references/labels.md +170 -0
  260. package/dist/resources/skills/github-workflows/references/gh/references/milestones.md +158 -0
  261. package/dist/resources/skills/github-workflows/references/gh/references/projects-v2.md +177 -0
  262. package/dist/resources/skills/github-workflows/references/gh/scripts/experiment_cleanup.py +191 -0
  263. package/dist/resources/skills/github-workflows/references/gh/scripts/github_project_setup.py +799 -0
  264. package/dist/resources/skills/github-workflows/references/gh/tests/__init__.py +0 -0
  265. package/dist/resources/skills/github-workflows/references/gh/tests/test_github_project_setup.py +608 -0
  266. package/dist/resources/skills/swiftui/SKILL.md +208 -0
  267. package/dist/resources/skills/swiftui/references/animations.md +921 -0
  268. package/dist/resources/skills/swiftui/references/architecture.md +1561 -0
  269. package/dist/resources/skills/swiftui/references/layout-system.md +1186 -0
  270. package/dist/resources/skills/swiftui/references/navigation.md +1492 -0
  271. package/dist/resources/skills/swiftui/references/networking-async.md +214 -0
  272. package/dist/resources/skills/swiftui/references/performance.md +1706 -0
  273. package/dist/resources/skills/swiftui/references/platform-integration.md +204 -0
  274. package/dist/resources/skills/swiftui/references/state-management.md +1443 -0
  275. package/dist/resources/skills/swiftui/references/swiftdata.md +297 -0
  276. package/dist/resources/skills/swiftui/references/testing-debugging.md +247 -0
  277. package/dist/resources/skills/swiftui/references/uikit-appkit-interop.md +218 -0
  278. package/dist/resources/skills/swiftui/workflows/add-feature.md +191 -0
  279. package/dist/resources/skills/swiftui/workflows/build-new-app.md +311 -0
  280. package/dist/resources/skills/swiftui/workflows/debug-swiftui.md +192 -0
  281. package/dist/resources/skills/swiftui/workflows/optimize-performance.md +197 -0
  282. package/dist/resources/skills/swiftui/workflows/ship-app.md +203 -0
  283. package/dist/resources/skills/swiftui/workflows/write-tests.md +235 -0
  284. package/dist/wizard.js +1 -0
  285. package/package.json +8 -6
  286. package/packages/native/dist/fd/index.d.ts +1 -0
  287. package/packages/native/dist/fd/index.js +1 -0
  288. package/packages/native/dist/grep/index.d.ts +2 -1
  289. package/packages/native/dist/grep/index.js +1 -0
  290. package/packages/native/src/__tests__/fd.test.mjs +35 -0
  291. package/packages/native/src/__tests__/grep.test.mjs +26 -9
  292. package/packages/native/src/fd/index.ts +1 -0
  293. package/packages/native/src/grep/index.ts +3 -2
  294. package/packages/pi-agent-core/dist/agent-loop.d.ts.map +1 -1
  295. package/packages/pi-agent-core/dist/agent-loop.js +169 -55
  296. package/packages/pi-agent-core/dist/agent-loop.js.map +1 -1
  297. package/packages/pi-agent-core/dist/agent.d.ts +13 -1
  298. package/packages/pi-agent-core/dist/agent.d.ts.map +1 -1
  299. package/packages/pi-agent-core/dist/agent.js +16 -0
  300. package/packages/pi-agent-core/dist/agent.js.map +1 -1
  301. package/packages/pi-agent-core/dist/types.d.ts +91 -1
  302. package/packages/pi-agent-core/dist/types.d.ts.map +1 -1
  303. package/packages/pi-agent-core/dist/types.js.map +1 -1
  304. package/packages/pi-agent-core/src/agent-loop.ts +273 -63
  305. package/packages/pi-agent-core/src/agent.ts +24 -0
  306. package/packages/pi-agent-core/src/types.ts +98 -0
  307. package/packages/pi-ai/dist/env-api-keys.js +2 -0
  308. package/packages/pi-ai/dist/env-api-keys.js.map +1 -1
  309. package/packages/pi-ai/dist/models.generated.d.ts +314 -0
  310. package/packages/pi-ai/dist/models.generated.d.ts.map +1 -1
  311. package/packages/pi-ai/dist/models.generated.js +236 -0
  312. package/packages/pi-ai/dist/models.generated.js.map +1 -1
  313. package/packages/pi-ai/dist/providers/google-gemini-cli.d.ts.map +1 -1
  314. package/packages/pi-ai/dist/providers/google-gemini-cli.js +6 -0
  315. package/packages/pi-ai/dist/providers/google-gemini-cli.js.map +1 -1
  316. package/packages/pi-ai/dist/providers/openai-completions.d.ts.map +1 -1
  317. package/packages/pi-ai/dist/providers/openai-completions.js +2 -0
  318. package/packages/pi-ai/dist/providers/openai-completions.js.map +1 -1
  319. package/packages/pi-ai/dist/types.d.ts +1 -1
  320. package/packages/pi-ai/dist/types.d.ts.map +1 -1
  321. package/packages/pi-ai/dist/types.js.map +1 -1
  322. package/packages/pi-ai/src/env-api-keys.ts +2 -0
  323. package/packages/pi-ai/src/models.generated.ts +236 -0
  324. package/packages/pi-ai/src/providers/google-gemini-cli.ts +8 -0
  325. package/packages/pi-ai/src/providers/openai-completions.ts +3 -0
  326. package/packages/pi-ai/src/types.ts +2 -1
  327. package/packages/pi-coding-agent/dist/cli/args.d.ts.map +1 -1
  328. package/packages/pi-coding-agent/dist/cli/args.js +1 -0
  329. package/packages/pi-coding-agent/dist/cli/args.js.map +1 -1
  330. package/packages/pi-coding-agent/dist/core/agent-session.d.ts +26 -0
  331. package/packages/pi-coding-agent/dist/core/agent-session.d.ts.map +1 -1
  332. package/packages/pi-coding-agent/dist/core/agent-session.js +137 -22
  333. package/packages/pi-coding-agent/dist/core/agent-session.js.map +1 -1
  334. package/packages/pi-coding-agent/dist/core/auth-storage.d.ts +20 -0
  335. package/packages/pi-coding-agent/dist/core/auth-storage.d.ts.map +1 -1
  336. package/packages/pi-coding-agent/dist/core/auth-storage.js +43 -0
  337. package/packages/pi-coding-agent/dist/core/auth-storage.js.map +1 -1
  338. package/packages/pi-coding-agent/dist/core/fallback-resolver.d.ts +51 -0
  339. package/packages/pi-coding-agent/dist/core/fallback-resolver.d.ts.map +1 -0
  340. package/packages/pi-coding-agent/dist/core/fallback-resolver.js +119 -0
  341. package/packages/pi-coding-agent/dist/core/fallback-resolver.js.map +1 -0
  342. package/packages/pi-coding-agent/dist/core/fallback-resolver.test.d.ts +2 -0
  343. package/packages/pi-coding-agent/dist/core/fallback-resolver.test.d.ts.map +1 -0
  344. package/packages/pi-coding-agent/dist/core/fallback-resolver.test.js +183 -0
  345. package/packages/pi-coding-agent/dist/core/fallback-resolver.test.js.map +1 -0
  346. package/packages/pi-coding-agent/dist/core/index.d.ts +1 -0
  347. package/packages/pi-coding-agent/dist/core/index.d.ts.map +1 -1
  348. package/packages/pi-coding-agent/dist/core/index.js +1 -0
  349. package/packages/pi-coding-agent/dist/core/index.js.map +1 -1
  350. package/packages/pi-coding-agent/dist/core/model-resolver.d.ts.map +1 -1
  351. package/packages/pi-coding-agent/dist/core/model-resolver.js +1 -0
  352. package/packages/pi-coding-agent/dist/core/model-resolver.js.map +1 -1
  353. package/packages/pi-coding-agent/dist/core/session-manager.d.ts +12 -1
  354. package/packages/pi-coding-agent/dist/core/session-manager.d.ts.map +1 -1
  355. package/packages/pi-coding-agent/dist/core/session-manager.js +37 -1
  356. package/packages/pi-coding-agent/dist/core/session-manager.js.map +1 -1
  357. package/packages/pi-coding-agent/dist/core/session-manager.test.d.ts +2 -0
  358. package/packages/pi-coding-agent/dist/core/session-manager.test.d.ts.map +1 -0
  359. package/packages/pi-coding-agent/dist/core/session-manager.test.js +61 -0
  360. package/packages/pi-coding-agent/dist/core/session-manager.test.js.map +1 -0
  361. package/packages/pi-coding-agent/dist/core/settings-manager.d.ts +20 -0
  362. package/packages/pi-coding-agent/dist/core/settings-manager.d.ts.map +1 -1
  363. package/packages/pi-coding-agent/dist/core/settings-manager.js +47 -0
  364. package/packages/pi-coding-agent/dist/core/settings-manager.js.map +1 -1
  365. package/packages/pi-coding-agent/dist/core/tools/find.d.ts.map +1 -1
  366. package/packages/pi-coding-agent/dist/core/tools/find.js +1 -0
  367. package/packages/pi-coding-agent/dist/core/tools/find.js.map +1 -1
  368. package/packages/pi-coding-agent/dist/modes/interactive/components/footer.d.ts.map +1 -1
  369. package/packages/pi-coding-agent/dist/modes/interactive/components/footer.js +6 -15
  370. package/packages/pi-coding-agent/dist/modes/interactive/components/footer.js.map +1 -1
  371. package/packages/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts +18 -1
  372. package/packages/pi-coding-agent/dist/modes/interactive/components/login-dialog.d.ts.map +1 -1
  373. package/packages/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +46 -4
  374. package/packages/pi-coding-agent/dist/modes/interactive/components/login-dialog.js.map +1 -1
  375. package/packages/pi-coding-agent/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  376. package/packages/pi-coding-agent/dist/modes/interactive/interactive-mode.js +25 -2
  377. package/packages/pi-coding-agent/dist/modes/interactive/interactive-mode.js.map +1 -1
  378. package/packages/pi-coding-agent/src/cli/args.ts +1 -0
  379. package/packages/pi-coding-agent/src/core/agent-session.ts +167 -22
  380. package/packages/pi-coding-agent/src/core/auth-storage.ts +45 -0
  381. package/packages/pi-coding-agent/src/core/fallback-resolver.test.ts +229 -0
  382. package/packages/pi-coding-agent/src/core/fallback-resolver.ts +165 -0
  383. package/packages/pi-coding-agent/src/core/index.ts +1 -0
  384. package/packages/pi-coding-agent/src/core/model-resolver.ts +1 -0
  385. package/packages/pi-coding-agent/src/core/session-manager.test.ts +65 -0
  386. package/packages/pi-coding-agent/src/core/session-manager.ts +51 -1
  387. package/packages/pi-coding-agent/src/core/settings-manager.ts +66 -0
  388. package/packages/pi-coding-agent/src/core/tools/find.ts +1 -0
  389. package/packages/pi-coding-agent/src/modes/interactive/components/footer.ts +6 -16
  390. package/packages/pi-coding-agent/src/modes/interactive/components/login-dialog.ts +49 -4
  391. package/packages/pi-coding-agent/src/modes/interactive/interactive-mode.ts +28 -2
  392. package/packages/pi-tui/dist/autocomplete.d.ts.map +1 -1
  393. package/packages/pi-tui/dist/autocomplete.js +3 -4
  394. package/packages/pi-tui/dist/autocomplete.js.map +1 -1
  395. package/packages/pi-tui/dist/components/editor.d.ts +7 -0
  396. package/packages/pi-tui/dist/components/editor.d.ts.map +1 -1
  397. package/packages/pi-tui/dist/components/editor.js +57 -50
  398. package/packages/pi-tui/dist/components/editor.js.map +1 -1
  399. package/packages/pi-tui/src/autocomplete.ts +3 -5
  400. package/packages/pi-tui/src/components/editor.ts +70 -49
  401. package/pkg/dist/core/export-html/ansi-to-html.d.ts +22 -0
  402. package/pkg/dist/core/export-html/ansi-to-html.d.ts.map +1 -0
  403. package/pkg/dist/core/export-html/ansi-to-html.js +249 -0
  404. package/pkg/dist/core/export-html/ansi-to-html.js.map +1 -0
  405. package/pkg/dist/core/export-html/index.d.ts +37 -0
  406. package/pkg/dist/core/export-html/index.d.ts.map +1 -0
  407. package/pkg/dist/core/export-html/index.js +223 -0
  408. package/pkg/dist/core/export-html/index.js.map +1 -0
  409. package/pkg/dist/core/export-html/template.css +971 -0
  410. package/pkg/dist/core/export-html/template.html +54 -0
  411. package/pkg/dist/core/export-html/template.js +1583 -0
  412. package/pkg/dist/core/export-html/tool-renderer.d.ts +38 -0
  413. package/pkg/dist/core/export-html/tool-renderer.d.ts.map +1 -0
  414. package/pkg/dist/core/export-html/tool-renderer.js +70 -0
  415. package/pkg/dist/core/export-html/tool-renderer.js.map +1 -0
  416. package/pkg/dist/core/export-html/vendor/highlight.min.js +1213 -0
  417. package/pkg/dist/core/export-html/vendor/marked.min.js +6 -0
  418. package/scripts/postinstall.js +30 -17
  419. package/src/resources/extensions/bg-shell/index.ts +51 -7
  420. package/src/resources/extensions/gsd/activity-log.ts +61 -14
  421. package/src/resources/extensions/gsd/auto.ts +288 -19
  422. package/src/resources/extensions/gsd/commands.ts +9 -3
  423. package/src/resources/extensions/gsd/dashboard-overlay.ts +55 -12
  424. package/src/resources/extensions/gsd/docs/preferences-reference.md +25 -0
  425. package/src/resources/extensions/gsd/doctor.ts +60 -3
  426. package/src/resources/extensions/gsd/files.ts +45 -1
  427. package/src/resources/extensions/gsd/git-service.ts +46 -41
  428. package/src/resources/extensions/gsd/guided-flow.ts +81 -9
  429. package/src/resources/extensions/gsd/index.ts +62 -1
  430. package/src/resources/extensions/gsd/native-git-bridge.ts +181 -0
  431. package/src/resources/extensions/gsd/paths.ts +35 -4
  432. package/src/resources/extensions/gsd/post-unit-hooks.ts +449 -0
  433. package/src/resources/extensions/gsd/preferences.ts +232 -1
  434. package/src/resources/extensions/gsd/prompt-loader.ts +45 -3
  435. package/src/resources/extensions/gsd/prompts/complete-milestone.md +1 -1
  436. package/src/resources/extensions/gsd/prompts/complete-slice.md +1 -3
  437. package/src/resources/extensions/gsd/prompts/discuss.md +10 -8
  438. package/src/resources/extensions/gsd/prompts/execute-task.md +4 -2
  439. package/src/resources/extensions/gsd/prompts/guided-complete-slice.md +3 -1
  440. package/src/resources/extensions/gsd/prompts/guided-discuss-milestone.md +3 -1
  441. package/src/resources/extensions/gsd/prompts/guided-discuss-slice.md +3 -1
  442. package/src/resources/extensions/gsd/prompts/guided-execute-task.md +3 -1
  443. package/src/resources/extensions/gsd/prompts/guided-plan-milestone.md +4 -2
  444. package/src/resources/extensions/gsd/prompts/guided-plan-slice.md +3 -1
  445. package/src/resources/extensions/gsd/prompts/guided-research-slice.md +3 -1
  446. package/src/resources/extensions/gsd/prompts/plan-milestone.md +9 -12
  447. package/src/resources/extensions/gsd/prompts/plan-slice.md +1 -3
  448. package/src/resources/extensions/gsd/prompts/queue.md +3 -1
  449. package/src/resources/extensions/gsd/prompts/research-milestone.md +1 -1
  450. package/src/resources/extensions/gsd/prompts/research-slice.md +1 -1
  451. package/src/resources/extensions/gsd/state.ts +130 -18
  452. package/src/resources/extensions/gsd/templates/context.md +1 -1
  453. package/src/resources/extensions/gsd/templates/state.md +3 -3
  454. package/src/resources/extensions/gsd/tests/activity-log-save.test.ts +127 -0
  455. package/src/resources/extensions/gsd/tests/complete-milestone.test.ts +5 -1
  456. package/src/resources/extensions/gsd/tests/doctor.test.ts +115 -1
  457. package/src/resources/extensions/gsd/tests/draft-promotion.test.ts +6 -2
  458. package/src/resources/extensions/gsd/tests/git-service.test.ts +35 -35
  459. package/src/resources/extensions/gsd/tests/idle-recovery.test.ts +8 -8
  460. package/src/resources/extensions/gsd/tests/integration-mixed-milestones.test.ts +4 -1
  461. package/src/resources/extensions/gsd/tests/network-error-fallback.test.ts +54 -0
  462. package/src/resources/extensions/gsd/tests/orphaned-branch.test.ts +5 -5
  463. package/src/resources/extensions/gsd/tests/post-unit-hooks.test.ts +297 -0
  464. package/src/resources/extensions/gsd/tests/preferences-hooks.test.ts +226 -0
  465. package/src/resources/extensions/gsd/tests/regex-hardening.test.ts +12 -0
  466. package/src/resources/extensions/gsd/tests/unit-runtime.test.ts +6 -0
  467. package/src/resources/extensions/gsd/tests/worktree-integration.test.ts +4 -4
  468. package/src/resources/extensions/gsd/tests/worktree-manager.test.ts +4 -4
  469. package/src/resources/extensions/gsd/tests/worktree.test.ts +19 -19
  470. package/src/resources/extensions/gsd/types.ts +109 -0
  471. package/src/resources/extensions/gsd/worktree-manager.ts +72 -13
  472. package/src/resources/extensions/gsd/worktree.ts +5 -4
  473. package/src/resources/extensions/search-the-web/command-search-provider.ts +8 -4
  474. package/src/resources/extensions/search-the-web/native-search.ts +32 -23
  475. package/src/resources/extensions/search-the-web/provider.ts +19 -2
  476. package/src/resources/extensions/search-the-web/tool-fetch-page.ts +62 -0
  477. package/src/resources/extensions/search-the-web/tool-llm-context.ts +62 -3
  478. package/src/resources/extensions/search-the-web/tool-search.ts +62 -3
  479. package/src/resources/extensions/shared/bundled-extension-paths.ts +11 -0
  480. package/src/resources/extensions/subagent/index.ts +2 -1
  481. package/src/resources/skills/github-workflows/SKILL.md +5 -0
  482. package/dist/resources/extensions/gsd/git-service.d.ts +0 -225
  483. package/dist/resources/extensions/gsd/git-service.js +0 -756
  484. package/dist/resources/extensions/gsd/preferences.d.ts +0 -122
  485. package/dist/resources/extensions/gsd/preferences.js +0 -616
  486. package/dist/resources/extensions/gsd/worktree.d.ts +0 -106
  487. package/dist/resources/extensions/remote-questions/config.d.ts +0 -14
  488. package/dist/resources/extensions/remote-questions/config.js +0 -68
  489. package/dist/resources/extensions/remote-questions/discord-adapter.d.ts +0 -17
  490. package/dist/resources/extensions/remote-questions/discord-adapter.js +0 -118
  491. package/dist/resources/extensions/remote-questions/format.d.ts +0 -38
  492. package/dist/resources/extensions/remote-questions/format.js +0 -119
  493. package/dist/resources/extensions/remote-questions/manager.d.ts +0 -23
  494. package/dist/resources/extensions/remote-questions/manager.js +0 -161
  495. package/dist/resources/extensions/remote-questions/remote-command.d.ts +0 -6
  496. package/dist/resources/extensions/remote-questions/remote-command.js +0 -358
  497. package/dist/resources/extensions/remote-questions/slack-adapter.d.ts +0 -15
  498. package/dist/resources/extensions/remote-questions/slack-adapter.js +0 -82
  499. package/dist/resources/extensions/remote-questions/status.d.ts +0 -9
  500. package/dist/resources/extensions/remote-questions/status.js +0 -25
  501. package/dist/resources/extensions/remote-questions/store.d.ts +0 -11
  502. package/dist/resources/extensions/remote-questions/store.js +0 -66
  503. package/dist/resources/extensions/remote-questions/types.d.ts +0 -68
  504. package/dist/resources/extensions/remote-questions/types.js +0 -4
@@ -1,756 +0,0 @@
1
- /**
2
- * GSD Git Service
3
- *
4
- * Core git operations for GSD: types, constants, and pure helpers.
5
- * Higher-level operations (commit, staging, branching) build on these.
6
- *
7
- * This module centralizes the GitPreferences interface, runtime exclusion
8
- * paths, commit type inference, and the runGit shell helper.
9
- */
10
- import { execSync } from "node:child_process";
11
- import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
12
- import { join } from "node:path";
13
- import { detectWorktreeName, getSliceBranchName, SLICE_BRANCH_RE, } from "./worktree.js";
14
- export const VALID_BRANCH_NAME = /^[a-zA-Z0-9_\-\/.]+$/;
15
- /**
16
- * Thrown when a slice merge hits code conflicts in non-.gsd files.
17
- * The working tree is left in a conflicted state (no reset) so the
18
- * caller can dispatch a fix-merge session to resolve it.
19
- */
20
- export class MergeConflictError extends Error {
21
- conflictedFiles;
22
- strategy;
23
- branch;
24
- mainBranch;
25
- constructor(conflictedFiles, strategy, branch, mainBranch) {
26
- super(`${strategy === "merge" ? "Merge" : "Squash-merge"} of "${branch}" into "${mainBranch}" ` +
27
- `failed with conflicts in ${conflictedFiles.length} non-.gsd file(s): ${conflictedFiles.join(", ")}`);
28
- this.name = "MergeConflictError";
29
- this.conflictedFiles = conflictedFiles;
30
- this.strategy = strategy;
31
- this.branch = branch;
32
- this.mainBranch = mainBranch;
33
- }
34
- }
35
- // ─── Constants ─────────────────────────────────────────────────────────────
36
- /**
37
- * GSD runtime paths that should be excluded from smart staging.
38
- * These are transient/generated artifacts that should never be committed.
39
- * Matches the union of SKIP_PATHS + SKIP_EXACT in worktree-manager.ts
40
- * and the first 7 entries in gitignore.ts BASELINE_PATTERNS.
41
- */
42
- export const RUNTIME_EXCLUSION_PATHS = [
43
- ".gsd/activity/",
44
- ".gsd/runtime/",
45
- ".gsd/worktrees/",
46
- ".gsd/auto.lock",
47
- ".gsd/metrics.json",
48
- ".gsd/completed-units.json",
49
- ".gsd/STATE.md",
50
- ];
51
- /**
52
- * GSD planning artifact paths that must be force-added even when .gsd/
53
- * is in .gitignore. These are durable planning files that the agent writes
54
- * and that must survive squash-merges to main.
55
- *
56
- * `git add --force` is a no-op when the path doesn't exist or has no
57
- * changes, so this list is safe to apply unconditionally.
58
- */
59
- const GSD_DURABLE_PATHS = [
60
- ".gsd/milestones/",
61
- ".gsd/DECISIONS.md",
62
- ".gsd/QUEUE.md",
63
- ".gsd/PROJECT.md",
64
- ".gsd/REQUIREMENTS.md",
65
- ];
66
- // ─── Integration Branch Metadata ───────────────────────────────────────────
67
- /**
68
- * Path to the milestone metadata file that stores the integration branch.
69
- * Format: .gsd/milestones/<MID>/<MID>-META.json
70
- */
71
- function milestoneMetaPath(basePath, milestoneId) {
72
- return join(basePath, ".gsd", "milestones", milestoneId, `${milestoneId}-META.json`);
73
- }
74
- /**
75
- * Read the integration branch recorded for a milestone.
76
- * Returns null if no metadata file exists or the branch isn't set.
77
- */
78
- export function readIntegrationBranch(basePath, milestoneId) {
79
- try {
80
- const metaFile = milestoneMetaPath(basePath, milestoneId);
81
- if (!existsSync(metaFile))
82
- return null;
83
- const data = JSON.parse(readFileSync(metaFile, "utf-8"));
84
- const branch = data?.integrationBranch;
85
- if (typeof branch === "string" && branch.trim() !== "" && VALID_BRANCH_NAME.test(branch)) {
86
- return branch;
87
- }
88
- return null;
89
- }
90
- catch {
91
- return null;
92
- }
93
- }
94
- /**
95
- * Persist the integration branch for a milestone.
96
- *
97
- * Called when auto-mode starts on a milestone. Records the branch the user
98
- * was on at that point, so that slice branches merge back to it instead of
99
- * the repo's default branch. Idempotent when the branch matches; updates
100
- * the record when the user starts from a different branch.
101
- *
102
- * The file is committed immediately so it survives branch switches — the
103
- * pre-switch auto-commit excludes `.gsd/` to avoid merge conflicts, and
104
- * uncommitted `.gsd/` files are discarded during checkout.
105
- */
106
- export function writeIntegrationBranch(basePath, milestoneId, branch) {
107
- // Don't record slice branches as the integration target
108
- if (SLICE_BRANCH_RE.test(branch))
109
- return;
110
- // Validate
111
- if (!VALID_BRANCH_NAME.test(branch))
112
- return;
113
- // Skip if already recorded with the same branch (idempotent across restarts).
114
- // If recorded with a different branch, update it — the user started auto-mode
115
- // from a new branch and expects slices to merge back there (#300).
116
- const existingBranch = readIntegrationBranch(basePath, milestoneId);
117
- if (existingBranch === branch)
118
- return;
119
- const metaFile = milestoneMetaPath(basePath, milestoneId);
120
- mkdirSync(join(basePath, ".gsd", "milestones", milestoneId), { recursive: true });
121
- // Merge with existing metadata if present
122
- let existing = {};
123
- try {
124
- if (existsSync(metaFile)) {
125
- existing = JSON.parse(readFileSync(metaFile, "utf-8"));
126
- }
127
- }
128
- catch { /* corrupt file — overwrite */ }
129
- existing.integrationBranch = branch;
130
- writeFileSync(metaFile, JSON.stringify(existing, null, 2) + "\n", "utf-8");
131
- // Commit immediately — .gsd/ files are discarded during branch switches
132
- // (ensureSliceBranch excludes .gsd/ from pre-switch auto-commit and runs
133
- // git checkout -- .gsd/ to prevent checkout conflicts). Without this
134
- // commit, the metadata would be lost on the first branch switch.
135
- try {
136
- runGit(basePath, ["add", "--force", metaFile]);
137
- runGit(basePath, ["commit", "-F", "-"], {
138
- input: `chore(${milestoneId}): record integration branch`,
139
- });
140
- }
141
- catch {
142
- // Non-fatal — file is on disk even if commit fails (e.g. nothing to commit
143
- // because the file was already tracked with identical content)
144
- }
145
- }
146
- // ─── Git Helper ────────────────────────────────────────────────────────────
147
- /** Env overlay that suppresses all interactive git credential prompts. */
148
- const GIT_NO_PROMPT_ENV = {
149
- ...process.env,
150
- GIT_TERMINAL_PROMPT: "0",
151
- GIT_ASKPASS: "",
152
- };
153
- /**
154
- * Run a git command in the given directory.
155
- * Returns trimmed stdout. Throws on non-zero exit unless allowFailure is set.
156
- * When `input` is provided, it is piped to stdin.
157
- */
158
- export function runGit(basePath, args, options = {}) {
159
- try {
160
- return execSync(`git ${args.join(" ")}`, {
161
- cwd: basePath,
162
- stdio: [options.input != null ? "pipe" : "ignore", "pipe", "pipe"],
163
- encoding: "utf-8",
164
- env: GIT_NO_PROMPT_ENV,
165
- ...(options.input != null ? { input: options.input } : {}),
166
- }).trim();
167
- }
168
- catch (error) {
169
- if (options.allowFailure)
170
- return "";
171
- const message = error instanceof Error ? error.message : String(error);
172
- throw new Error(`git ${args.join(" ")} failed in ${basePath}: ${message}`);
173
- }
174
- }
175
- // ─── Commit Type Inference ─────────────────────────────────────────────────
176
- /**
177
- * Keyword-to-commit-type mapping. Order matters — first match wins.
178
- * Each entry: [keywords[], commitType]
179
- */
180
- const COMMIT_TYPE_RULES = [
181
- [["fix", "bug", "patch", "hotfix"], "fix"],
182
- [["refactor", "restructure", "reorganize"], "refactor"],
183
- [["doc", "docs", "documentation"], "docs"],
184
- [["test", "tests", "testing"], "test"],
185
- [["chore", "cleanup", "clean up", "archive", "remove", "delete"], "chore"],
186
- ];
187
- /**
188
- * Infer a conventional commit type from a slice title.
189
- * Uses case-insensitive word-boundary matching against known keywords.
190
- * Returns "feat" when no keywords match.
191
- */
192
- // ─── GitServiceImpl ────────────────────────────────────────────────────
193
- export class GitServiceImpl {
194
- basePath;
195
- prefs;
196
- /** Active milestone ID — used to resolve the integration branch. */
197
- _milestoneId = null;
198
- constructor(basePath, prefs = {}) {
199
- this.basePath = basePath;
200
- this.prefs = prefs;
201
- }
202
- /**
203
- * Set the active milestone ID for integration branch resolution.
204
- * When set, getMainBranch() will check the milestone's metadata file
205
- * for a recorded integration branch before falling back to repo defaults.
206
- */
207
- setMilestoneId(milestoneId) {
208
- this._milestoneId = milestoneId;
209
- }
210
- /** Convenience wrapper: run git in this repo's basePath. */
211
- git(args, options = {}) {
212
- return runGit(this.basePath, args, options);
213
- }
214
- /**
215
- * Smart staging: `git add -A` excluding GSD runtime paths via pathspec.
216
- * Falls back to plain `git add -A` if the exclusion pathspec fails.
217
- * @param extraExclusions Additional pathspec exclusions beyond RUNTIME_EXCLUSION_PATHS.
218
- */
219
- smartStage(extraExclusions = []) {
220
- const allExclusions = [...RUNTIME_EXCLUSION_PATHS, ...extraExclusions];
221
- // One-time cleanup: if runtime files are already tracked in the index
222
- // (from older versions where the fallback bug staged them), untrack them
223
- // in a dedicated commit. This must happen as a separate commit because
224
- // the git reset HEAD step below would otherwise undo the rm --cached.
225
- if (!this._runtimeFilesCleanedUp) {
226
- let cleaned = false;
227
- for (const exclusion of RUNTIME_EXCLUSION_PATHS) {
228
- const result = this.git(["rm", "--cached", "-r", "--ignore-unmatch", exclusion], { allowFailure: true });
229
- if (result && result.includes("rm '"))
230
- cleaned = true;
231
- }
232
- if (cleaned) {
233
- this.git(["commit", "-F", "-"], { input: "chore: untrack .gsd/ runtime files from git index" });
234
- }
235
- this._runtimeFilesCleanedUp = true;
236
- }
237
- // Stage everything, then unstage excluded paths.
238
- //
239
- // Previous approach used pathspec excludes (:(exclude)...) with git add -A,
240
- // but that fails when .gsd/ is in .gitignore — git exits non-zero before
241
- // evaluating the excludes. The catch fallback ran plain `git add -A`,
242
- // staging all tracked runtime files unconditionally and defeating the
243
- // exclusion list entirely.
244
- //
245
- // git reset HEAD silently succeeds when the path isn't staged, so no
246
- // error handling is needed per-path.
247
- this.git(["add", "-A"]);
248
- // Force-add GSD planning artifacts that live under .gsd/ but may be
249
- // blocked by a .gsd/ gitignore pattern. `git add -A` respects .gitignore,
250
- // so new files (CONTEXT.md, SUMMARY.md, PLAN.md, etc.) in gitignored
251
- // directories are silently skipped. Without this force-add, planning
252
- // artifacts are never committed — they exist on disk but not in git.
253
- // Squash-merges then delete them on main because they appear as "removed
254
- // relative to main" during the merge.
255
- //
256
- // Only force-add durable planning paths — runtime paths are excluded
257
- // by the reset step below.
258
- for (const durablePath of GSD_DURABLE_PATHS) {
259
- this.git(["add", "--force", "--", durablePath], { allowFailure: true });
260
- }
261
- for (const exclusion of allExclusions) {
262
- this.git(["reset", "HEAD", "--", exclusion], { allowFailure: true });
263
- }
264
- }
265
- /** Tracks whether runtime file cleanup has run this session. */
266
- _runtimeFilesCleanedUp = false;
267
- /**
268
- * Stage files (smart staging) and commit.
269
- * Returns the commit message string on success, or null if nothing to commit.
270
- * Uses `git commit -F -` with stdin pipe for safe multi-line message handling.
271
- */
272
- commit(opts) {
273
- this.smartStage();
274
- // Check if anything was actually staged
275
- const staged = this.git(["diff", "--cached", "--stat"], { allowFailure: true });
276
- if (!staged && !opts.allowEmpty)
277
- return null;
278
- this.git(["commit", "-F", "-", ...(opts.allowEmpty ? ["--allow-empty"] : [])], { input: opts.message });
279
- return opts.message;
280
- }
281
- /**
282
- * Auto-commit dirty working tree with a conventional chore message.
283
- * Returns the commit message on success, or null if nothing to commit.
284
- * @param extraExclusions Additional paths to exclude from staging (e.g. [".gsd/"] for pre-switch commits).
285
- */
286
- autoCommit(unitType, unitId, extraExclusions = []) {
287
- // Quick check: is there anything dirty at all?
288
- const status = this.git(["status", "--short"], { allowFailure: true });
289
- if (!status)
290
- return null;
291
- this.smartStage(extraExclusions);
292
- // After smart staging, check if anything was actually staged
293
- // (all changes might have been runtime files that got excluded)
294
- const staged = this.git(["diff", "--cached", "--stat"], { allowFailure: true });
295
- if (!staged)
296
- return null;
297
- const message = `chore(${unitId}): auto-commit after ${unitType}`;
298
- this.git(["commit", "-F", "-"], { input: message });
299
- return message;
300
- }
301
- // ─── Branch Queries ────────────────────────────────────────────────────
302
- /**
303
- * Get the integration branch for this repo — the branch that slice
304
- * branches are created from and merged back into.
305
- *
306
- * This is often `main` or `master`, but not necessarily. When a user
307
- * starts GSD on a feature branch like `f-123-new-thing`, that branch
308
- * is recorded as the integration target, and all slice branches merge
309
- * back into it — not the repo's default branch. The name "main branch"
310
- * in variable names is historical; think of it as "integration branch".
311
- *
312
- * Resolution order:
313
- * 1. Explicit `main_branch` preference (user override, highest priority)
314
- * 2. Milestone integration branch from metadata file (recorded at milestone start)
315
- * 3. Worktree base branch (worktree/<name>)
316
- * 4. origin/HEAD symbolic-ref → main/master fallback → current branch
317
- */
318
- getMainBranch() {
319
- // Explicit preference takes priority (double-check validity as defense-in-depth)
320
- if (this.prefs.main_branch && VALID_BRANCH_NAME.test(this.prefs.main_branch)) {
321
- return this.prefs.main_branch;
322
- }
323
- // Check milestone integration branch — recorded when auto-mode starts
324
- if (this._milestoneId) {
325
- const integrationBranch = readIntegrationBranch(this.basePath, this._milestoneId);
326
- if (integrationBranch) {
327
- // Verify the branch still exists locally (could have been deleted)
328
- const exists = this.git(["show-ref", "--verify", `refs/heads/${integrationBranch}`], { allowFailure: true });
329
- if (exists)
330
- return integrationBranch;
331
- }
332
- }
333
- const wtName = detectWorktreeName(this.basePath);
334
- if (wtName) {
335
- const wtBranch = `worktree/${wtName}`;
336
- const exists = this.git(["show-ref", "--verify", `refs/heads/${wtBranch}`], { allowFailure: true });
337
- if (exists)
338
- return wtBranch;
339
- return this.git(["branch", "--show-current"]);
340
- }
341
- const symbolic = this.git(["symbolic-ref", "refs/remotes/origin/HEAD"], { allowFailure: true });
342
- if (symbolic) {
343
- const match = symbolic.match(/refs\/remotes\/origin\/(.+)$/);
344
- if (match)
345
- return match[1];
346
- }
347
- const mainExists = this.git(["show-ref", "--verify", "refs/heads/main"], { allowFailure: true });
348
- if (mainExists)
349
- return "main";
350
- const masterExists = this.git(["show-ref", "--verify", "refs/heads/master"], { allowFailure: true });
351
- if (masterExists)
352
- return "master";
353
- return this.git(["branch", "--show-current"]);
354
- }
355
- /** Get the current branch name. */
356
- getCurrentBranch() {
357
- return this.git(["branch", "--show-current"]);
358
- }
359
- /** True if currently on a GSD slice branch. */
360
- isOnSliceBranch() {
361
- const current = this.getCurrentBranch();
362
- return SLICE_BRANCH_RE.test(current);
363
- }
364
- /** Returns the slice branch name if on one, null otherwise. */
365
- getActiveSliceBranch() {
366
- try {
367
- const current = this.getCurrentBranch();
368
- return SLICE_BRANCH_RE.test(current) ? current : null;
369
- }
370
- catch {
371
- return null;
372
- }
373
- }
374
- // ─── Branch Lifecycle ──────────────────────────────────────────────────
375
- /**
376
- * Check if a local branch exists.
377
- */
378
- branchExists(branch) {
379
- try {
380
- this.git(["show-ref", "--verify", "--quiet", `refs/heads/${branch}`]);
381
- return true;
382
- }
383
- catch {
384
- return false;
385
- }
386
- }
387
- /**
388
- * Ensure the slice branch exists and is checked out.
389
- *
390
- * Creates the branch from the current working branch if it's not a slice
391
- * branch (preserves planning artifacts). Falls back to the integration
392
- * branch when on another slice branch (avoids chaining slice branches).
393
- *
394
- * Auto-commits dirty state via smart staging before checkout so runtime
395
- * files are never accidentally committed during branch switches.
396
- *
397
- * Returns true if the branch was newly created.
398
- */
399
- ensureSliceBranch(milestoneId, sliceId) {
400
- const wtName = detectWorktreeName(this.basePath);
401
- const branch = getSliceBranchName(milestoneId, sliceId, wtName);
402
- const current = this.getCurrentBranch();
403
- if (current === branch)
404
- return false;
405
- let created = false;
406
- if (!this.branchExists(branch)) {
407
- // Fetch from remote before creating a new branch (best-effort).
408
- const remotes = this.git(["remote"], { allowFailure: true });
409
- if (remotes) {
410
- const remote = this.prefs.remote ?? "origin";
411
- const fetchResult = this.git(["fetch", "--prune", remote], { allowFailure: true });
412
- if (fetchResult === "" && remotes.split("\n").includes(remote)) {
413
- // Check if local is behind upstream (informational only)
414
- const behind = this.git(["rev-list", "--count", "HEAD..@{upstream}"], { allowFailure: true });
415
- if (behind && parseInt(behind, 10) > 0) {
416
- console.error(`GitService: local branch is ${behind} commit(s) behind upstream`);
417
- }
418
- }
419
- }
420
- // Branch from current when it's a normal working branch (not a slice).
421
- // If already on a slice branch, fall back to the integration branch to avoid chaining.
422
- const mainBranch = this.getMainBranch();
423
- const base = SLICE_BRANCH_RE.test(current) ? mainBranch : current;
424
- this.git(["branch", branch, base]);
425
- created = true;
426
- }
427
- else {
428
- // Branch exists — check it's not checked out in another worktree
429
- const worktreeList = this.git(["worktree", "list", "--porcelain"]);
430
- if (worktreeList.includes(`branch refs/heads/${branch}`)) {
431
- throw new Error(`Branch "${branch}" is already in use by another worktree. ` +
432
- `Remove that worktree first, or switch it to a different branch.`);
433
- }
434
- }
435
- // Auto-commit dirty state via smart staging before checkout.
436
- // Exclude .gsd/ to prevent merge conflicts when both branches modify planning artifacts.
437
- this.autoCommit("pre-switch", current, [".gsd/"]);
438
- // Discard uncommitted .gsd/ changes so checkout doesn't fail.
439
- // Two-step approach handles both tracked and untracked runtime files:
440
- // 1. `checkout --` reverts tracked .gsd/ files to their HEAD versions.
441
- // 2. `clean -fdx` removes untracked runtime files that the target branch has
442
- // tracked — e.g., when a prior cleanup commit removed STATE.md from the
443
- // current branch's HEAD but the target branch still has it committed.
444
- this.git(["checkout", "--", ".gsd/"], { allowFailure: true });
445
- this.discardUntrackedRuntimeFiles();
446
- this.git(["checkout", branch]);
447
- return created;
448
- }
449
- /**
450
- * Switch to the integration branch, auto-committing dirty state via smart staging first.
451
- */
452
- switchToMain() {
453
- const mainBranch = this.getMainBranch();
454
- const current = this.getCurrentBranch();
455
- if (current === mainBranch)
456
- return;
457
- // Exclude .gsd/ to prevent merge conflicts when both branches modify planning artifacts.
458
- this.autoCommit("pre-switch", current, [".gsd/"]);
459
- // Discard uncommitted .gsd/ changes so checkout doesn't fail.
460
- // Two-step approach handles both tracked and untracked runtime files.
461
- this.git(["checkout", "--", ".gsd/"], { allowFailure: true });
462
- this.discardUntrackedRuntimeFiles();
463
- this.git(["checkout", mainBranch]);
464
- }
465
- /**
466
- * Remove untracked runtime files from the working tree.
467
- *
468
- * Complements `git checkout -- .gsd/` (which only handles tracked files).
469
- * Runtime files can end up untracked after a cleanup commit removes them
470
- * from the current branch's HEAD — but the target branch may still have
471
- * them committed. Without this step, `git checkout` fails with:
472
- * "The following untracked working tree files would be overwritten by checkout"
473
- *
474
- * `git clean -fdx` is safe here because:
475
- * - Only removes *untracked* files (tracked files are untouched)
476
- * - Targets only the specific runtime paths listed in RUNTIME_EXCLUSION_PATHS
477
- * - These files are always regenerated by GSD on the next run
478
- */
479
- discardUntrackedRuntimeFiles() {
480
- this.git(["clean", "-fdx", "--", ...RUNTIME_EXCLUSION_PATHS], { allowFailure: true });
481
- }
482
- // ─── S05 Features ─────────────────────────────────────────────────────
483
- /**
484
- * Create a snapshot ref for the given label (typically a slice branch name).
485
- * Gated on prefs.snapshots === true. Ref path: refs/gsd/snapshots/<label>/<timestamp>
486
- * The ref points at HEAD, capturing the current commit before destructive operations.
487
- */
488
- createSnapshot(label) {
489
- if (this.prefs.snapshots !== true)
490
- return;
491
- const now = new Date();
492
- const ts = now.getFullYear().toString()
493
- + String(now.getMonth() + 1).padStart(2, "0")
494
- + String(now.getDate()).padStart(2, "0")
495
- + "-"
496
- + String(now.getHours()).padStart(2, "0")
497
- + String(now.getMinutes()).padStart(2, "0")
498
- + String(now.getSeconds()).padStart(2, "0");
499
- const refPath = `refs/gsd/snapshots/${label}/${ts}`;
500
- this.git(["update-ref", refPath, "HEAD"]);
501
- }
502
- /**
503
- * Run pre-merge verification check. Auto-detects test runner from project
504
- * files, or uses custom command from prefs.pre_merge_check.
505
- * Gated on prefs.pre_merge_check (false = skip, string = custom command).
506
- * Stub: to be implemented in T03.
507
- */
508
- runPreMergeCheck() {
509
- if (this.prefs.pre_merge_check === false || this.prefs.pre_merge_check === undefined) {
510
- return { passed: true, skipped: true };
511
- }
512
- // Determine command: explicit string or auto-detect from package.json
513
- let command;
514
- if (typeof this.prefs.pre_merge_check === "string") {
515
- command = this.prefs.pre_merge_check;
516
- }
517
- else {
518
- // Auto-detect: look for package.json with a test script
519
- try {
520
- const pkg = execSync("cat package.json", { cwd: this.basePath, encoding: "utf-8" });
521
- const parsed = JSON.parse(pkg);
522
- if (parsed.scripts?.test) {
523
- command = "npm test";
524
- }
525
- else {
526
- return { passed: true, skipped: true };
527
- }
528
- }
529
- catch {
530
- return { passed: true, skipped: true };
531
- }
532
- }
533
- try {
534
- execSync(command, { cwd: this.basePath, stdio: "pipe", encoding: "utf-8" });
535
- return { passed: true, skipped: false, command };
536
- }
537
- catch (err) {
538
- const msg = err instanceof Error ? err.message : String(err);
539
- return { passed: false, skipped: false, command, error: msg };
540
- }
541
- }
542
- // ─── Merge ─────────────────────────────────────────────────────────────
543
- /**
544
- * Build a rich squash-commit message with a task list from branch commits.
545
- *
546
- * Format:
547
- * type(scope): title
548
- *
549
- * Tasks:
550
- * - commit subject 1
551
- * - commit subject 2
552
- *
553
- * Branch: gsd/M001/S01
554
- */
555
- buildRichCommitMessage(commitType, milestoneId, sliceId, sliceTitle, mainBranch, branch) {
556
- const subject = `${commitType}(${milestoneId}/${sliceId}): ${sliceTitle}`;
557
- // Collect branch commit subjects
558
- const logOutput = this.git(["log", "--oneline", "--format=%s", `${mainBranch}..${branch}`], { allowFailure: true });
559
- if (!logOutput)
560
- return subject;
561
- const subjects = logOutput.split("\n").filter(Boolean);
562
- const MAX_ENTRIES = 20;
563
- const truncated = subjects.length > MAX_ENTRIES;
564
- const displayed = truncated ? subjects.slice(0, MAX_ENTRIES) : subjects;
565
- const taskLines = displayed.map(s => `- ${s}`).join("\n");
566
- const truncationLine = truncated ? `\n- ... and ${subjects.length - MAX_ENTRIES} more` : "";
567
- return `${subject}\n\nTasks:\n${taskLines}${truncationLine}\n\nBranch: ${branch}`;
568
- }
569
- /**
570
- * Squash-merge a slice branch into the integration branch and delete it.
571
- *
572
- * The integration branch is resolved by getMainBranch() — this may be
573
- * `main`, a feature branch, or a worktree branch depending on context.
574
- *
575
- * Flow: snapshot branch HEAD → squash merge → rich commit via stdin →
576
- * auto-push (if enabled) → delete branch.
577
- *
578
- * Must be called from the integration branch. Uses `inferCommitType(sliceTitle)`
579
- * for the conventional commit type instead of hardcoding `feat`.
580
- *
581
- * Throws when:
582
- * - Not currently on the integration branch
583
- * - The slice branch does not exist
584
- * - The slice branch has no commits ahead of the integration branch
585
- */
586
- mergeSliceToMain(milestoneId, sliceId, sliceTitle) {
587
- const mainBranch = this.getMainBranch();
588
- const current = this.getCurrentBranch();
589
- if (current !== mainBranch) {
590
- throw new Error(`mergeSliceToMain must be called from the main branch ("${mainBranch}"), ` +
591
- `but currently on "${current}"`);
592
- }
593
- const wtName = detectWorktreeName(this.basePath);
594
- const branch = getSliceBranchName(milestoneId, sliceId, wtName);
595
- if (!this.branchExists(branch)) {
596
- throw new Error(`Slice branch "${branch}" does not exist. Nothing to merge.`);
597
- }
598
- // Check commits ahead
599
- const aheadCount = this.git(["rev-list", "--count", `${mainBranch}..${branch}`]);
600
- if (aheadCount === "0") {
601
- throw new Error(`Slice branch "${branch}" has no commits ahead of "${mainBranch}". Nothing to merge.`);
602
- }
603
- // Snapshot the branch HEAD before merge (gated on prefs)
604
- // We need to save the ref while the branch still exists
605
- this.createSnapshot(branch);
606
- // Build rich commit message before squash (needs branch history)
607
- const commitType = inferCommitType(sliceTitle);
608
- const message = this.buildRichCommitMessage(commitType, milestoneId, sliceId, sliceTitle, mainBranch, branch);
609
- // Pull latest main before merging to avoid conflicts from remote changes
610
- this.git(["pull", "--rebase", "origin", mainBranch], { allowFailure: true });
611
- // Untrack runtime files that may have been manually committed (e.g. via `gsd queue`)
612
- // to prevent merge conflicts on files that belong in .gitignore (#189)
613
- for (const exclusion of RUNTIME_EXCLUSION_PATHS) {
614
- this.git(["rm", "--cached", "-r", "--ignore-unmatch", exclusion], { allowFailure: true });
615
- }
616
- const untrackDiff = this.git(["diff", "--cached", "--stat"], { allowFailure: true });
617
- if (untrackDiff && untrackDiff.trim()) {
618
- this.git(["commit", "-m", "chore: untrack .gsd/ runtime files before merge"], { allowFailure: true });
619
- }
620
- // Merge slice branch — strategy is configurable via git.merge_strategy
621
- // preference. Default: "squash" (preserves existing behavior).
622
- // "merge" uses --no-ff which is more resilient to conflicts from
623
- // long-lived branches or frequently-changing .gsd/* artifacts.
624
- const strategy = this.prefs.merge_strategy ?? "squash";
625
- const mergeArgs = strategy === "merge"
626
- ? ["merge", "--no-ff", "-m", message, branch]
627
- : ["merge", "--squash", branch];
628
- try {
629
- this.git(mergeArgs);
630
- }
631
- catch (mergeError) {
632
- // Check if conflicts can be auto-resolved (#189, #218)
633
- const conflicted = this.git(["diff", "--name-only", "--diff-filter=U"], { allowFailure: true });
634
- if (conflicted) {
635
- const conflictedFiles = conflicted.split("\n").filter(Boolean);
636
- const isRuntimeConflict = (f) => RUNTIME_EXCLUSION_PATHS.some(excl => f.startsWith(excl.replace(/\/$/, "")));
637
- const runtimeConflicts = conflictedFiles.filter(isRuntimeConflict);
638
- const gsdConflicts = conflictedFiles.filter(f => f.startsWith(".gsd/") && !isRuntimeConflict(f));
639
- const otherConflicts = conflictedFiles.filter(f => !isRuntimeConflict(f) && !f.startsWith(".gsd/"));
640
- let resolvedAny = false;
641
- if (runtimeConflicts.length > 0) {
642
- // Runtime conflicts: take theirs and remove from index
643
- for (const f of runtimeConflicts) {
644
- this.git(["checkout", "--theirs", "--", f], { allowFailure: true });
645
- this.git(["rm", "--cached", "--ignore-unmatch", f], { allowFailure: true });
646
- }
647
- resolvedAny = true;
648
- }
649
- if (gsdConflicts.length > 0) {
650
- // Non-runtime .gsd/ conflicts (DECISIONS.md, REQUIREMENTS.md, ROADMAP.md, etc.):
651
- // The slice branch has the authoritative .gsd/ state since the LLM just finished
652
- // updating these artifacts during complete-slice. Take theirs (the slice branch).
653
- for (const f of gsdConflicts) {
654
- this.git(["checkout", "--theirs", "--", f], { allowFailure: true });
655
- }
656
- resolvedAny = true;
657
- }
658
- if (resolvedAny) {
659
- this.git(["add", "-A"], { allowFailure: true });
660
- // Re-check remaining conflicts after auto-resolving runtime and .gsd/ files
661
- const remaining = this.git(["diff", "--name-only", "--diff-filter=U"], {
662
- allowFailure: true,
663
- });
664
- if (remaining) {
665
- const remainingFiles = remaining
666
- .split("\n")
667
- .filter(Boolean)
668
- .filter(f => !isRuntimeConflict(f) && !f.startsWith(".gsd/"));
669
- if (remainingFiles.length > 0) {
670
- // Non-runtime, non-.gsd/ conflicts: leave working tree in conflicted state and throw
671
- // MergeConflictError so the caller can dispatch a fix-merge session.
672
- throw new MergeConflictError(remainingFiles, strategy, branch, mainBranch);
673
- }
674
- }
675
- // No remaining non-runtime, non-.gsd/ conflicts — let the merge proceed
676
- }
677
- else {
678
- // No runtime or .gsd/ conflicts to auto-resolve; throw with original conflicted files
679
- // so the caller can dispatch a fix-merge session.
680
- throw new MergeConflictError(otherConflicts.length ? otherConflicts : conflictedFiles, strategy, branch, mainBranch);
681
- }
682
- }
683
- else {
684
- // No conflicted files detected but merge still failed — reset and throw
685
- this.git(["reset", "--hard", "HEAD"], { allowFailure: true });
686
- const msg = mergeError instanceof Error ? mergeError.message : String(mergeError);
687
- throw new Error(`${strategy === "merge" ? "Merge" : "Squash-merge"} of "${branch}" into "${mainBranch}" failed. ` +
688
- `Working tree has been reset to a clean state. ` +
689
- `Resolve manually: git checkout ${mainBranch} && git merge ${strategy === "merge" ? "--no-ff" : "--squash"} ${branch}\n` +
690
- `Original error: ${msg}`);
691
- }
692
- }
693
- // Strip runtime files from the merge result before committing (#302).
694
- // This replaces the old approach of checking out the slice branch to
695
- // untrack runtime files pre-merge, which failed when the working tree
696
- // had uncommitted .gsd/ changes that blocked the checkout.
697
- for (const exclusion of RUNTIME_EXCLUSION_PATHS) {
698
- this.git(["rm", "--cached", "-r", "--ignore-unmatch", exclusion], { allowFailure: true });
699
- }
700
- if (strategy === "squash") {
701
- // After stripping runtime files, there may be nothing left to commit.
702
- // This happens when the only changes in the slice were runtime artifacts.
703
- const stagedDiff = this.git(["diff", "--cached", "--stat"], { allowFailure: true });
704
- if (stagedDiff?.trim()) {
705
- this.git(["commit", "-F", "-"], { input: message });
706
- }
707
- else {
708
- // Nothing to commit — clean up the squash-merge state
709
- this.git(["reset", "HEAD"], { allowFailure: true });
710
- }
711
- }
712
- else {
713
- // --no-ff already committed; amend to include runtime file removal
714
- const runtimeDiff = this.git(["diff", "--cached", "--stat"], { allowFailure: true });
715
- if (runtimeDiff?.trim()) {
716
- this.git(["commit", "--amend", "--no-edit"]);
717
- }
718
- }
719
- // Delete the merged branch
720
- this.git(["branch", "-D", branch]);
721
- // Auto-push to remote if enabled
722
- if (this.prefs.auto_push === true) {
723
- const remote = this.prefs.remote ?? "origin";
724
- const pushResult = this.git(["push", remote, mainBranch], { allowFailure: true });
725
- if (pushResult === "") {
726
- // push succeeded (empty stdout is normal) or failed silently
727
- // Verify by checking if remote is reachable — the allowFailure handles errors
728
- }
729
- }
730
- return {
731
- branch,
732
- mergedCommitMessage: `${commitType}(${milestoneId}/${sliceId}): ${sliceTitle}`,
733
- deletedBranch: true,
734
- };
735
- }
736
- }
737
- // ─── Commit Type Inference ─────────────────────────────────────────────────
738
- export function inferCommitType(sliceTitle) {
739
- const lower = sliceTitle.toLowerCase();
740
- for (const [keywords, commitType] of COMMIT_TYPE_RULES) {
741
- for (const keyword of keywords) {
742
- // "clean up" is multi-word — use indexOf for it
743
- if (keyword.includes(" ")) {
744
- if (lower.includes(keyword))
745
- return commitType;
746
- }
747
- else {
748
- // Word boundary match: keyword must not be surrounded by word chars
749
- const re = new RegExp(`\\b${keyword}\\b`, "i");
750
- if (re.test(lower))
751
- return commitType;
752
- }
753
- }
754
- }
755
- return "feat";
756
- }