specweave 0.24.1 → 0.24.8

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 (173) hide show
  1. package/CLAUDE.md +106 -0
  2. package/README.md +34 -0
  3. package/dist/src/cli/commands/init.d.ts.map +1 -1
  4. package/dist/src/cli/commands/init.js +80 -41
  5. package/dist/src/cli/commands/init.js.map +1 -1
  6. package/dist/src/cli/helpers/issue-tracker/github-multi-repo.d.ts +5 -2
  7. package/dist/src/cli/helpers/issue-tracker/github-multi-repo.d.ts.map +1 -1
  8. package/dist/src/cli/helpers/issue-tracker/github-multi-repo.js +72 -6
  9. package/dist/src/cli/helpers/issue-tracker/github-multi-repo.js.map +1 -1
  10. package/dist/src/cli/helpers/issue-tracker/github.d.ts +2 -1
  11. package/dist/src/cli/helpers/issue-tracker/github.d.ts.map +1 -1
  12. package/dist/src/cli/helpers/issue-tracker/github.js +4 -3
  13. package/dist/src/cli/helpers/issue-tracker/github.js.map +1 -1
  14. package/dist/src/cli/helpers/issue-tracker/index.d.ts.map +1 -1
  15. package/dist/src/cli/helpers/issue-tracker/index.js +26 -9
  16. package/dist/src/cli/helpers/issue-tracker/index.js.map +1 -1
  17. package/dist/src/cli/helpers/issue-tracker/types.d.ts +2 -1
  18. package/dist/src/cli/helpers/issue-tracker/types.d.ts.map +1 -1
  19. package/dist/src/cli/helpers/issue-tracker/types.js.map +1 -1
  20. package/dist/src/config/types.d.ts +24 -24
  21. package/dist/src/core/config/types.d.ts +25 -0
  22. package/dist/src/core/config/types.d.ts.map +1 -1
  23. package/dist/src/core/config/types.js +6 -0
  24. package/dist/src/core/config/types.js.map +1 -1
  25. package/dist/src/core/repo-structure/git-error-handler.d.ts +37 -0
  26. package/dist/src/core/repo-structure/git-error-handler.d.ts.map +1 -0
  27. package/dist/src/core/repo-structure/git-error-handler.js +214 -0
  28. package/dist/src/core/repo-structure/git-error-handler.js.map +1 -0
  29. package/dist/src/core/repo-structure/git-provider.d.ts +183 -0
  30. package/dist/src/core/repo-structure/git-provider.d.ts.map +1 -0
  31. package/dist/src/core/repo-structure/git-provider.js +57 -0
  32. package/dist/src/core/repo-structure/git-provider.js.map +1 -0
  33. package/dist/src/core/repo-structure/github-validator.d.ts +1 -0
  34. package/dist/src/core/repo-structure/github-validator.d.ts.map +1 -1
  35. package/dist/src/core/repo-structure/github-validator.js +35 -9
  36. package/dist/src/core/repo-structure/github-validator.js.map +1 -1
  37. package/dist/src/core/repo-structure/platform-registry.d.ts +114 -0
  38. package/dist/src/core/repo-structure/platform-registry.d.ts.map +1 -0
  39. package/dist/src/core/repo-structure/platform-registry.js +195 -0
  40. package/dist/src/core/repo-structure/platform-registry.js.map +1 -0
  41. package/dist/src/core/repo-structure/prompt-consolidator.d.ts +30 -0
  42. package/dist/src/core/repo-structure/prompt-consolidator.d.ts.map +1 -1
  43. package/dist/src/core/repo-structure/prompt-consolidator.js +69 -0
  44. package/dist/src/core/repo-structure/prompt-consolidator.js.map +1 -1
  45. package/dist/src/core/repo-structure/providers/bitbucket-provider.d.ts +54 -0
  46. package/dist/src/core/repo-structure/providers/bitbucket-provider.d.ts.map +1 -0
  47. package/dist/src/core/repo-structure/providers/bitbucket-provider.js +104 -0
  48. package/dist/src/core/repo-structure/providers/bitbucket-provider.js.map +1 -0
  49. package/dist/src/core/repo-structure/providers/github-provider.d.ts +53 -0
  50. package/dist/src/core/repo-structure/providers/github-provider.d.ts.map +1 -0
  51. package/dist/src/core/repo-structure/providers/github-provider.js +239 -0
  52. package/dist/src/core/repo-structure/providers/github-provider.js.map +1 -0
  53. package/dist/src/core/repo-structure/providers/gitlab-provider.d.ts +50 -0
  54. package/dist/src/core/repo-structure/providers/gitlab-provider.d.ts.map +1 -0
  55. package/dist/src/core/repo-structure/providers/gitlab-provider.js +97 -0
  56. package/dist/src/core/repo-structure/providers/gitlab-provider.js.map +1 -0
  57. package/dist/src/core/repo-structure/providers/index.d.ts +33 -0
  58. package/dist/src/core/repo-structure/providers/index.d.ts.map +1 -0
  59. package/dist/src/core/repo-structure/providers/index.js +60 -0
  60. package/dist/src/core/repo-structure/providers/index.js.map +1 -0
  61. package/dist/src/core/repo-structure/repo-bulk-discovery.d.ts +33 -0
  62. package/dist/src/core/repo-structure/repo-bulk-discovery.d.ts.map +1 -0
  63. package/dist/src/core/repo-structure/repo-bulk-discovery.js +275 -0
  64. package/dist/src/core/repo-structure/repo-bulk-discovery.js.map +1 -0
  65. package/dist/src/core/repo-structure/repo-structure-manager.d.ts +18 -2
  66. package/dist/src/core/repo-structure/repo-structure-manager.d.ts.map +1 -1
  67. package/dist/src/core/repo-structure/repo-structure-manager.js +303 -85
  68. package/dist/src/core/repo-structure/repo-structure-manager.js.map +1 -1
  69. package/dist/src/core/repo-structure/url-generator.d.ts +80 -0
  70. package/dist/src/core/repo-structure/url-generator.d.ts.map +1 -0
  71. package/dist/src/core/repo-structure/url-generator.js +110 -0
  72. package/dist/src/core/repo-structure/url-generator.js.map +1 -0
  73. package/dist/src/init/architecture/types.d.ts +6 -6
  74. package/dist/src/utils/plugin-validator.d.ts.map +1 -1
  75. package/dist/src/utils/plugin-validator.js +15 -14
  76. package/dist/src/utils/plugin-validator.js.map +1 -1
  77. package/package.json +4 -4
  78. package/plugins/specweave/.claude-plugin/plugin.json +4 -4
  79. package/plugins/specweave/agents/pm/AGENT.md +2 -0
  80. package/plugins/specweave/commands/specweave-do.md +0 -47
  81. package/plugins/specweave/commands/specweave-increment.md +0 -82
  82. package/plugins/specweave/commands/specweave-next.md +0 -47
  83. package/plugins/specweave/hooks/post-task-completion.sh +67 -6
  84. package/plugins/specweave/hooks/pre-edit-spec.sh +11 -0
  85. package/plugins/specweave/hooks/pre-task-completion.sh +69 -2
  86. package/plugins/specweave/hooks/pre-write-spec.sh +11 -0
  87. package/plugins/specweave/skills/increment-planner/SKILL.md +124 -4
  88. package/plugins/specweave-ado/lib/ado-multi-project-sync.js +0 -1
  89. package/plugins/specweave-jira/lib/enhanced-jira-sync.js +3 -3
  90. package/plugins/specweave/agents/pm/AGENT.md.bak +0 -1893
  91. package/plugins/specweave/hooks/docs-changed.sh.backup +0 -79
  92. package/plugins/specweave/hooks/human-input-required.sh.backup +0 -75
  93. package/plugins/specweave/hooks/lib/migrate-increment-work.sh.bak +0 -245
  94. package/plugins/specweave/hooks/lib/sync-spec-content.sh.bak +0 -149
  95. package/plugins/specweave/hooks/lib/validate-spec-status.sh.bak +0 -163
  96. package/plugins/specweave/hooks/post-first-increment.sh.backup +0 -61
  97. package/plugins/specweave/hooks/post-first-increment.sh.bak +0 -61
  98. package/plugins/specweave/hooks/post-increment-change.sh.backup +0 -98
  99. package/plugins/specweave/hooks/post-increment-completion.sh.backup +0 -231
  100. package/plugins/specweave/hooks/post-increment-planning.sh.backup +0 -1048
  101. package/plugins/specweave/hooks/post-increment-status-change.sh.backup +0 -147
  102. package/plugins/specweave/hooks/post-spec-update.sh.backup +0 -158
  103. package/plugins/specweave/hooks/post-spec-update.sh.bak +0 -158
  104. package/plugins/specweave/hooks/post-user-story-complete.sh.backup +0 -179
  105. package/plugins/specweave/hooks/post-user-story-complete.sh.bak +0 -179
  106. package/plugins/specweave/hooks/pre-command-deduplication.sh.backup +0 -83
  107. package/plugins/specweave/hooks/pre-command-deduplication.sh.bak +0 -83
  108. package/plugins/specweave/hooks/pre-implementation.sh.backup +0 -67
  109. package/plugins/specweave/hooks/pre-task-completion.sh.backup +0 -194
  110. package/plugins/specweave/hooks/pre-tool-use.sh.backup +0 -133
  111. package/plugins/specweave/hooks/user-prompt-submit.sh.backup +0 -386
  112. package/plugins/specweave/hooks/user-prompt-submit.sh.bak +0 -386
  113. package/plugins/specweave/lib/hooks/auto-transition.js.bak +0 -50
  114. package/plugins/specweave/lib/hooks/auto-transition.ts.bak +0 -84
  115. package/plugins/specweave/lib/hooks/git-diff-analyzer.d.js.bak +0 -0
  116. package/plugins/specweave/lib/hooks/git-diff-analyzer.d.ts.bak +0 -89
  117. package/plugins/specweave/lib/hooks/git-diff-analyzer.js.bak +0 -142
  118. package/plugins/specweave/lib/hooks/git-diff-analyzer.ts.bak +0 -269
  119. package/plugins/specweave/lib/hooks/invoke-translator-skill.d.js.bak +0 -0
  120. package/plugins/specweave/lib/hooks/invoke-translator-skill.d.ts.bak +0 -60
  121. package/plugins/specweave/lib/hooks/invoke-translator-skill.js.bak +0 -155
  122. package/plugins/specweave/lib/hooks/invoke-translator-skill.ts.bak +0 -264
  123. package/plugins/specweave/lib/hooks/prepare-reflection-context.d.js.bak +0 -0
  124. package/plugins/specweave/lib/hooks/prepare-reflection-context.d.ts.bak +0 -42
  125. package/plugins/specweave/lib/hooks/prepare-reflection-context.js.bak +0 -110
  126. package/plugins/specweave/lib/hooks/prepare-reflection-context.ts.bak +0 -178
  127. package/plugins/specweave/lib/hooks/reflection-config-loader.d.js.bak +0 -0
  128. package/plugins/specweave/lib/hooks/reflection-config-loader.d.ts.bak +0 -45
  129. package/plugins/specweave/lib/hooks/reflection-config-loader.js.bak +0 -92
  130. package/plugins/specweave/lib/hooks/reflection-config-loader.ts.bak +0 -156
  131. package/plugins/specweave/lib/hooks/reflection-parser.d.js.bak +0 -0
  132. package/plugins/specweave/lib/hooks/reflection-parser.d.ts.bak +0 -33
  133. package/plugins/specweave/lib/hooks/reflection-parser.js.bak +0 -301
  134. package/plugins/specweave/lib/hooks/reflection-parser.ts.bak +0 -484
  135. package/plugins/specweave/lib/hooks/reflection-prompt-builder.d.js.bak +0 -0
  136. package/plugins/specweave/lib/hooks/reflection-prompt-builder.d.ts.bak +0 -56
  137. package/plugins/specweave/lib/hooks/reflection-prompt-builder.js.bak +0 -182
  138. package/plugins/specweave/lib/hooks/reflection-prompt-builder.ts.bak +0 -306
  139. package/plugins/specweave/lib/hooks/reflection-storage.d.js.bak +0 -0
  140. package/plugins/specweave/lib/hooks/reflection-storage.d.ts.bak +0 -64
  141. package/plugins/specweave/lib/hooks/reflection-storage.js.bak +0 -231
  142. package/plugins/specweave/lib/hooks/reflection-storage.ts.bak +0 -369
  143. package/plugins/specweave/lib/hooks/run-self-reflection.d.js.bak +0 -0
  144. package/plugins/specweave/lib/hooks/run-self-reflection.d.ts.bak +0 -43
  145. package/plugins/specweave/lib/hooks/run-self-reflection.js.bak +0 -132
  146. package/plugins/specweave/lib/hooks/run-self-reflection.ts.bak +0 -258
  147. package/plugins/specweave/lib/hooks/sync-cache.js.bak +0 -294
  148. package/plugins/specweave/lib/hooks/sync-living-docs.d.js.bak +0 -1
  149. package/plugins/specweave/lib/hooks/sync-living-docs.d.ts.bak +0 -27
  150. package/plugins/specweave/lib/hooks/sync-living-docs.js.bak +0 -339
  151. package/plugins/specweave/lib/hooks/sync-us-tasks.js.bak +0 -476
  152. package/plugins/specweave/lib/hooks/translate-file.d.js.bak +0 -0
  153. package/plugins/specweave/lib/hooks/translate-file.d.ts.bak +0 -59
  154. package/plugins/specweave/lib/hooks/translate-file.js.bak +0 -289
  155. package/plugins/specweave/lib/hooks/translate-file.ts.bak +0 -428
  156. package/plugins/specweave/lib/hooks/translate-living-docs.d.js.bak +0 -0
  157. package/plugins/specweave/lib/hooks/translate-living-docs.d.ts.bak +0 -13
  158. package/plugins/specweave/lib/hooks/translate-living-docs.js.bak +0 -119
  159. package/plugins/specweave/lib/hooks/translate-living-docs.ts.bak +0 -224
  160. package/plugins/specweave/lib/hooks/update-ac-status.js.bak +0 -51
  161. package/plugins/specweave/lib/hooks/update-ac-status.ts.bak +0 -103
  162. package/plugins/specweave/lib/hooks/update-tasks-md.d.js.bak +0 -1
  163. package/plugins/specweave/lib/hooks/update-tasks-md.d.ts.bak +0 -29
  164. package/plugins/specweave/lib/hooks/update-tasks-md.js.bak +0 -296
  165. package/plugins/specweave/lib/hooks/update-tasks-md.ts.bak +0 -489
  166. package/plugins/specweave-ado/hooks/post-living-docs-update.sh.backup +0 -353
  167. package/plugins/specweave-ado/hooks/post-task-completion.sh.backup +0 -172
  168. package/plugins/specweave-ado/lib/enhanced-ado-sync.js +0 -170
  169. package/plugins/specweave-github/hooks/.specweave/logs/hooks-debug.log +0 -228
  170. package/plugins/specweave-github/hooks/post-task-completion.sh.backup +0 -258
  171. package/plugins/specweave-jira/hooks/post-task-completion.sh.backup +0 -172
  172. package/plugins/specweave-release/hooks/.specweave/logs/dora-tracking.log +0 -444
  173. package/plugins/specweave-release/hooks/post-task-completion.sh.backup +0 -110
@@ -1,228 +0,0 @@
1
- [Sat Nov 22 02:20:23 EST 2025] [GitHub] 🔗 GitHub sync hook fired
2
- [Sat Nov 22 02:20:23 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
3
- [Sat Nov 22 02:20:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
4
- [Sat Nov 22 02:20:26 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
5
- [Sat Nov 22 02:20:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
6
- [Sat Nov 22 02:20:26 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
7
- [Sat Nov 22 02:20:28 EST 2025] [GitHub] 🔗 GitHub sync hook fired
8
- [Sat Nov 22 02:20:28 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
9
- [Sat Nov 22 02:20:31 EST 2025] [GitHub] 🔗 GitHub sync hook fired
10
- [Sat Nov 22 02:20:31 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
11
- [Sat Nov 22 02:20:31 EST 2025] [GitHub] 🔗 GitHub sync hook fired
12
- [Sat Nov 22 02:20:31 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
13
- [Sat Nov 22 02:20:33 EST 2025] [GitHub] 🔗 GitHub sync hook fired
14
- [Sat Nov 22 02:20:33 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
15
- [Sat Nov 22 02:20:36 EST 2025] [GitHub] 🔗 GitHub sync hook fired
16
- [Sat Nov 22 02:20:36 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
17
- [Sat Nov 22 13:23:12 EST 2025] [GitHub] 🔗 GitHub sync hook fired
18
- [Sat Nov 22 13:23:12 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
19
- [Sat Nov 22 13:23:14 EST 2025] [GitHub] 🔗 GitHub sync hook fired
20
- [Sat Nov 22 13:23:14 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
21
- [Sat Nov 22 13:23:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
22
- [Sat Nov 22 13:23:15 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
23
- [Sat Nov 22 13:23:17 EST 2025] [GitHub] 🔗 GitHub sync hook fired
24
- [Sat Nov 22 13:23:17 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
25
- [Sat Nov 22 13:23:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
26
- [Sat Nov 22 13:23:19 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
27
- [Sat Nov 22 13:23:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
28
- [Sat Nov 22 13:23:19 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
29
- [Sat Nov 22 13:23:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
30
- [Sat Nov 22 13:23:19 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
31
- [Sat Nov 22 13:23:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
32
- [Sat Nov 22 13:23:19 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
33
- [Sat Nov 22 13:27:47 EST 2025] [GitHub] 🔗 GitHub sync hook fired
34
- [Sat Nov 22 13:27:47 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
35
- [Sat Nov 22 13:27:49 EST 2025] [GitHub] 🔗 GitHub sync hook fired
36
- [Sat Nov 22 13:27:49 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
37
- [Sat Nov 22 13:27:49 EST 2025] [GitHub] 🔗 GitHub sync hook fired
38
- [Sat Nov 22 13:27:49 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
39
- [Sat Nov 22 13:27:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
40
- [Sat Nov 22 13:27:52 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
41
- [Sat Nov 22 13:27:54 EST 2025] [GitHub] 🔗 GitHub sync hook fired
42
- [Sat Nov 22 13:27:54 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
43
- [Sat Nov 22 13:27:54 EST 2025] [GitHub] 🔗 GitHub sync hook fired
44
- [Sat Nov 22 13:27:54 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
45
- [Sat Nov 22 13:27:54 EST 2025] [GitHub] 🔗 GitHub sync hook fired
46
- [Sat Nov 22 13:27:54 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
47
- [Sat Nov 22 13:27:54 EST 2025] [GitHub] 🔗 GitHub sync hook fired
48
- [Sat Nov 22 13:27:54 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
49
- [Sat Nov 22 14:10:04 EST 2025] [GitHub] 🔗 GitHub sync hook fired
50
- [Sat Nov 22 14:10:04 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
51
- [Sat Nov 22 14:10:09 EST 2025] [GitHub] 🔗 GitHub sync hook fired
52
- [Sat Nov 22 14:10:09 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
53
- [Sat Nov 22 14:10:14 EST 2025] [GitHub] 🔗 GitHub sync hook fired
54
- [Sat Nov 22 14:10:14 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
55
- [Sat Nov 22 14:10:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
56
- [Sat Nov 22 14:10:19 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
57
- [Sat Nov 22 14:27:50 EST 2025] [GitHub] 🔗 GitHub sync hook fired
58
- [Sat Nov 22 14:27:50 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
59
- [Sat Nov 22 14:27:55 EST 2025] [GitHub] 🔗 GitHub sync hook fired
60
- [Sat Nov 22 14:27:55 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
61
- [Sat Nov 22 14:28:00 EST 2025] [GitHub] 🔗 GitHub sync hook fired
62
- [Sat Nov 22 14:28:00 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
63
- [Sat Nov 22 14:28:05 EST 2025] [GitHub] 🔗 GitHub sync hook fired
64
- [Sat Nov 22 14:28:05 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
65
- [Sat Nov 22 14:39:21 EST 2025] [GitHub] 🔗 GitHub sync hook fired
66
- [Sat Nov 22 14:39:21 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
67
- [Sat Nov 22 14:39:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
68
- [Sat Nov 22 14:39:26 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
69
- [Sat Nov 22 14:39:31 EST 2025] [GitHub] 🔗 GitHub sync hook fired
70
- [Sat Nov 22 14:39:31 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
71
- [Sat Nov 22 14:39:36 EST 2025] [GitHub] 🔗 GitHub sync hook fired
72
- [Sat Nov 22 14:39:36 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
73
- [Sat Nov 22 15:58:47 EST 2025] [GitHub] 🔗 GitHub sync hook fired
74
- [Sat Nov 22 15:58:47 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
75
- [Sat Nov 22 15:58:53 EST 2025] [GitHub] 🔗 GitHub sync hook fired
76
- [Sat Nov 22 15:58:53 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
77
- [Sat Nov 22 15:58:58 EST 2025] [GitHub] 🔗 GitHub sync hook fired
78
- [Sat Nov 22 15:58:58 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
79
- [Sat Nov 22 15:59:03 EST 2025] [GitHub] 🔗 GitHub sync hook fired
80
- [Sat Nov 22 15:59:03 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
81
- [Sat Nov 22 15:59:21 EST 2025] [GitHub] 🔗 GitHub sync hook fired
82
- [Sat Nov 22 15:59:21 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
83
- [Sat Nov 22 15:59:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
84
- [Sat Nov 22 15:59:26 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
85
- [Sat Nov 22 15:59:32 EST 2025] [GitHub] 🔗 GitHub sync hook fired
86
- [Sat Nov 22 15:59:32 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
87
- [Sat Nov 22 15:59:37 EST 2025] [GitHub] 🔗 GitHub sync hook fired
88
- [Sat Nov 22 15:59:37 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
89
- [Sat Nov 22 16:00:32 EST 2025] [GitHub] 🔗 GitHub sync hook fired
90
- [Sat Nov 22 16:00:32 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
91
- [Sat Nov 22 16:00:37 EST 2025] [GitHub] 🔗 GitHub sync hook fired
92
- [Sat Nov 22 16:00:37 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
93
- [Sat Nov 22 16:00:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
94
- [Sat Nov 22 16:00:42 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
95
- [Sat Nov 22 16:00:47 EST 2025] [GitHub] 🔗 GitHub sync hook fired
96
- [Sat Nov 22 16:00:47 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
97
- [Sat Nov 22 16:01:04 EST 2025] [GitHub] 🔗 GitHub sync hook fired
98
- [Sat Nov 22 16:01:04 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
99
- [Sat Nov 22 16:01:09 EST 2025] [GitHub] 🔗 GitHub sync hook fired
100
- [Sat Nov 22 16:01:09 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
101
- [Sat Nov 22 16:01:14 EST 2025] [GitHub] 🔗 GitHub sync hook fired
102
- [Sat Nov 22 16:01:14 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
103
- [Sat Nov 22 16:01:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
104
- [Sat Nov 22 16:01:19 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
105
- [Sat Nov 22 16:02:06 EST 2025] [GitHub] 🔗 GitHub sync hook fired
106
- [Sat Nov 22 16:02:06 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
107
- [Sat Nov 22 16:02:11 EST 2025] [GitHub] 🔗 GitHub sync hook fired
108
- [Sat Nov 22 16:02:11 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
109
- [Sat Nov 22 16:02:16 EST 2025] [GitHub] 🔗 GitHub sync hook fired
110
- [Sat Nov 22 16:02:16 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
111
- [Sat Nov 22 16:02:21 EST 2025] [GitHub] 🔗 GitHub sync hook fired
112
- [Sat Nov 22 16:02:21 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
113
- [Sat Nov 22 16:25:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
114
- [Sat Nov 22 16:25:52 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
115
- [Sat Nov 22 16:26:09 EST 2025] [GitHub] 🔗 GitHub sync hook fired
116
- [Sat Nov 22 16:26:09 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
117
- [Sat Nov 22 16:26:34 EST 2025] [GitHub] 🔗 GitHub sync hook fired
118
- [Sat Nov 22 16:26:34 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
119
- [Sat Nov 22 16:31:31 EST 2025] [GitHub] 🔗 GitHub sync hook fired
120
- [Sat Nov 22 16:31:31 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
121
- [Sat Nov 22 16:32:18 EST 2025] [GitHub] 🔗 GitHub sync hook fired
122
- [Sat Nov 22 16:32:18 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
123
- [Sat Nov 22 16:34:23 EST 2025] [GitHub] 🔗 GitHub sync hook fired
124
- [Sat Nov 22 16:34:23 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
125
- [Sat Nov 22 16:37:25 EST 2025] [GitHub] 🔗 GitHub sync hook fired
126
- [Sat Nov 22 16:37:25 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
127
- [Sat Nov 22 16:37:25 EST 2025] [GitHub] 🔗 GitHub sync hook fired
128
- [Sat Nov 22 16:37:25 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
129
- [Sat Nov 22 16:40:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
130
- [Sat Nov 22 16:40:42 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
131
- [Sat Nov 22 16:42:45 EST 2025] [GitHub] 🔗 GitHub sync hook fired
132
- [Sat Nov 22 16:42:45 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
133
- [Sat Nov 22 16:44:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
134
- [Sat Nov 22 16:44:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
135
- [Sat Nov 22 16:44:13 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
136
- [Sat Nov 22 16:44:13 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
137
- [Sat Nov 22 16:45:33 EST 2025] [GitHub] 🔗 GitHub sync hook fired
138
- [Sat Nov 22 16:45:33 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
139
- [Sat Nov 22 16:46:24 EST 2025] [GitHub] 🔗 GitHub sync hook fired
140
- [Sat Nov 22 16:46:24 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
141
- [Sat Nov 22 16:50:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
142
- [Sat Nov 22 16:50:19 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
143
- [Sat Nov 22 16:50:35 EST 2025] [GitHub] 🔗 GitHub sync hook fired
144
- [Sat Nov 22 16:50:35 EST 2025] [GitHub] 🔗 GitHub sync hook fired
145
- [Sat Nov 22 16:50:35 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
146
- [Sat Nov 22 16:50:35 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
147
- [Sat Nov 22 16:56:06 EST 2025] [GitHub] 🔗 GitHub sync hook fired
148
- [Sat Nov 22 16:56:06 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
149
- [Sat Nov 22 16:56:43 EST 2025] [GitHub] 🔗 GitHub sync hook fired
150
- [Sat Nov 22 16:56:43 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
151
- [Sat Nov 22 16:56:43 EST 2025] [GitHub] 🔗 GitHub sync hook fired
152
- [Sat Nov 22 16:56:43 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
153
- [Sat Nov 22 16:58:17 EST 2025] [GitHub] 🔗 GitHub sync hook fired
154
- [Sat Nov 22 16:58:17 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
155
- [Sat Nov 22 17:01:31 EST 2025] [GitHub] 🔗 GitHub sync hook fired
156
- [Sat Nov 22 17:01:31 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
157
- [Sat Nov 22 17:04:01 EST 2025] [GitHub] 🔗 GitHub sync hook fired
158
- [Sat Nov 22 17:04:01 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
159
- [Sat Nov 22 17:11:03 EST 2025] [GitHub] 🔗 GitHub sync hook fired
160
- [Sat Nov 22 17:11:03 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
161
- [Sat Nov 22 17:11:47 EST 2025] [GitHub] 🔗 GitHub sync hook fired
162
- [Sat Nov 22 17:11:47 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
163
- [Sat Nov 22 17:12:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
164
- [Sat Nov 22 17:12:15 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
165
- [Sat Nov 22 17:12:35 EST 2025] [GitHub] 🔗 GitHub sync hook fired
166
- [Sat Nov 22 17:12:35 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
167
- [Sat Nov 22 17:12:37 EST 2025] [GitHub] 🔗 GitHub sync hook fired
168
- [Sat Nov 22 17:12:37 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
169
- [Sat Nov 22 17:12:38 EST 2025] [GitHub] 🔗 GitHub sync hook fired
170
- [Sat Nov 22 17:12:38 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
171
- [Sat Nov 22 17:12:40 EST 2025] [GitHub] 🔗 GitHub sync hook fired
172
- [Sat Nov 22 17:12:40 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
173
- [Sat Nov 22 17:12:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
174
- [Sat Nov 22 17:12:42 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
175
- [Sat Nov 22 17:12:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
176
- [Sat Nov 22 17:12:42 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
177
- [Sat Nov 22 17:12:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
178
- [Sat Nov 22 17:12:42 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
179
- [Sat Nov 22 17:12:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
180
- [Sat Nov 22 17:12:42 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
181
- [Sat Nov 22 17:14:22 EST 2025] [GitHub] 🔗 GitHub sync hook fired
182
- [Sat Nov 22 17:14:22 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
183
- [Sat Nov 22 17:15:06 EST 2025] [GitHub] 🔗 GitHub sync hook fired
184
- [Sat Nov 22 17:15:06 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
185
- [Sat Nov 22 17:16:25 EST 2025] [GitHub] 🔗 GitHub sync hook fired
186
- [Sat Nov 22 17:16:25 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
187
- [Sat Nov 22 17:16:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
188
- [Sat Nov 22 17:16:42 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
189
- [Sat Nov 22 17:16:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
190
- [Sat Nov 22 17:16:42 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
191
- [Sat Nov 22 17:19:09 EST 2025] [GitHub] 🔗 GitHub sync hook fired
192
- [Sat Nov 22 17:19:09 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
193
- [Sat Nov 22 17:20:04 EST 2025] [GitHub] 🔗 GitHub sync hook fired
194
- [Sat Nov 22 17:20:04 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
195
- [Sat Nov 22 17:20:22 EST 2025] [GitHub] 🔗 GitHub sync hook fired
196
- [Sat Nov 22 17:20:22 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
197
- [Sat Nov 22 17:21:17 EST 2025] [GitHub] 🔗 GitHub sync hook fired
198
- [Sat Nov 22 17:21:17 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
199
- [Sat Nov 22 17:21:40 EST 2025] [GitHub] 🔗 GitHub sync hook fired
200
- [Sat Nov 22 17:21:40 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
201
- [Sat Nov 22 17:22:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
202
- [Sat Nov 22 17:22:42 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
203
- [Sat Nov 22 17:24:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
204
- [Sat Nov 22 17:24:15 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
205
- [Sat Nov 22 17:24:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
206
- [Sat Nov 22 17:24:15 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
207
- [Sat Nov 22 17:25:43 EST 2025] [GitHub] 🔗 GitHub sync hook fired
208
- [Sat Nov 22 17:25:43 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
209
- [Sat Nov 22 17:26:45 EST 2025] [GitHub] 🔗 GitHub sync hook fired
210
- [Sat Nov 22 17:26:45 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
211
- [Sat Nov 22 17:27:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
212
- [Sat Nov 22 17:27:15 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
213
- [Sat Nov 22 17:27:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
214
- [Sat Nov 22 17:27:15 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
215
- [Sat Nov 22 17:27:41 EST 2025] [GitHub] 🔗 GitHub sync hook fired
216
- [Sat Nov 22 17:27:41 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
217
- [Sat Nov 22 17:28:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
218
- [Sat Nov 22 17:28:19 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
219
- [Sat Nov 22 17:28:51 EST 2025] [GitHub] 🔗 GitHub sync hook fired
220
- [Sat Nov 22 17:28:51 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
221
- [Sat Nov 22 17:29:10 EST 2025] [GitHub] 🔗 GitHub sync hook fired
222
- [Sat Nov 22 17:29:10 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
223
- [Sat Nov 22 17:29:10 EST 2025] [GitHub] 🔗 GitHub sync hook fired
224
- [Sat Nov 22 17:29:10 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
225
- [Sat Nov 22 17:55:39 EST 2025] [GitHub] 🔗 GitHub sync hook fired
226
- [Sat Nov 22 17:55:39 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
227
- [Sat Nov 22 17:56:38 EST 2025] [GitHub] 🔗 GitHub sync hook fired
228
- [Sat Nov 22 17:56:38 EST 2025] [GitHub] âš ī¸ sync-spec-content CLI not found at /Users/antonabyzov/Projects/github/specweave/plugins/specweave-github/hooks/dist/src/cli/commands/sync-spec-content.js, skipping sync
@@ -1,258 +0,0 @@
1
- #!/bin/bash
2
-
3
- # SpecWeave GitHub Sync Hook
4
- # Runs after task completion to sync progress to GitHub Projects
5
- #
6
- # ARCHITECTURE (v0.19.0+): IMMUTABLE DESCRIPTIONS + PROGRESS COMMENTS
7
- # - User Story files (.specweave/docs/internal/specs/) ↔ GitHub Issues
8
- # - Issue descriptions created once (IMMUTABLE snapshot)
9
- # - All updates via progress comments (audit trail)
10
- #
11
- # This hook is part of the specweave-github plugin and handles:
12
- # - Finding which spec user stories the current work belongs to
13
- # - Syncing progress via GitHub comments (NOT editing issue body)
14
- # - Creating audit trail of all changes over time
15
- # - Notifying stakeholders via GitHub notifications
16
- #
17
- # Dependencies:
18
- # - Node.js and TypeScript CLI (dist/cli/commands/sync-spec-content.js)
19
- # - GitHub CLI (gh) must be installed and authenticated
20
- # - ProgressCommentBuilder (lib/progress-comment-builder.ts)
21
-
22
- set -e
23
-
24
- # ============================================================================
25
- # PROJECT ROOT DETECTION
26
- # ============================================================================
27
-
28
- # Find project root by searching upward for .specweave/ directory
29
- find_project_root() {
30
- local dir="$1"
31
- while [ "$dir" != "/" ]; do
32
- if [ -d "$dir/.specweave" ]; then
33
- echo "$dir"
34
- return 0
35
- fi
36
- dir="$(dirname "$dir")"
37
- done
38
- # Fallback: try current directory
39
- if [ -d "$(pwd)/.specweave" ]; then
40
- pwd
41
- else
42
- echo "$(pwd)"
43
- fi
44
- }
45
-
46
- PROJECT_ROOT="$(find_project_root "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)")"
47
- cd "$PROJECT_ROOT" 2>/dev/null || true
48
-
49
- # ============================================================================
50
- # CONFIGURATION
51
- # ============================================================================
52
-
53
- LOGS_DIR=".specweave/logs"
54
- DEBUG_LOG="$LOGS_DIR/hooks-debug.log"
55
-
56
- mkdir -p "$LOGS_DIR" 2>/dev/null || true
57
-
58
- # ============================================================================
59
- # PRECONDITIONS CHECK
60
- # ============================================================================
61
-
62
- echo "[$(date)] [GitHub] 🔗 GitHub sync hook fired" >> "$DEBUG_LOG" 2>/dev/null || true
63
-
64
- # Check if Node.js is available
65
- if ! command -v node &> /dev/null; then
66
- echo "[$(date)] [GitHub] âš ī¸ Node.js not found, skipping GitHub sync" >> "$DEBUG_LOG" 2>/dev/null || true
67
- cat <<EOF
68
- {
69
- "continue": true
70
- }
71
- EOF
72
- exit 0
73
- fi
74
-
75
- # Check if github-spec-content-sync CLI exists
76
- SYNC_CLI="$PROJECT_ROOT/dist/src/cli/commands/sync-spec-content.js"
77
- if [ ! -f "$SYNC_CLI" ]; then
78
- echo "[$(date)] [GitHub] âš ī¸ sync-spec-content CLI not found at $SYNC_CLI, skipping sync" >> "$DEBUG_LOG" 2>/dev/null || true
79
- cat <<EOF
80
- {
81
- "continue": true
82
- }
83
- EOF
84
- exit 0
85
- fi
86
-
87
- # Check for gh CLI
88
- if ! command -v gh &> /dev/null; then
89
- echo "[$(date)] [GitHub] âš ī¸ GitHub CLI (gh) not found, skipping sync" >> "$DEBUG_LOG" 2>/dev/null || true
90
- cat <<EOF
91
- {
92
- "continue": true
93
- }
94
- EOF
95
- exit 0
96
- fi
97
-
98
- # ============================================================================
99
- # DETECT ALL SPECS (Multi-Spec Support)
100
- # ============================================================================
101
-
102
- # Strategy: Use multi-spec detector to find ALL specs referenced in current increment
103
-
104
- # 1. Detect current increment (temporary context)
105
- CURRENT_INCREMENT=$(ls -td .specweave/increments/*/ 2>/dev/null | xargs -n1 basename | grep -v "_backlog" | grep -v "_archive" | grep -v "_working" | head -1)
106
-
107
- if [ -z "$CURRENT_INCREMENT" ]; then
108
- echo "[$(date)] [GitHub] â„šī¸ No active increment, checking for spec changes..." >> "$DEBUG_LOG" 2>/dev/null || true
109
- # Fall through to sync all changed specs
110
- fi
111
-
112
- # 2. Use TypeScript CLI to detect all specs
113
- DETECT_CLI="$PROJECT_ROOT/dist/src/cli/commands/detect-specs.js"
114
-
115
- if [ -f "$DETECT_CLI" ]; then
116
- echo "[$(date)] [GitHub] 🔍 Detecting all specs in increment $CURRENT_INCREMENT..." >> "$DEBUG_LOG" 2>/dev/null || true
117
-
118
- # Call detect-specs CLI and capture JSON output
119
- DETECTION_RESULT=$(node "$DETECT_CLI" 2>> "$DEBUG_LOG" || echo "{}")
120
-
121
- # Extract spec count
122
- SPEC_COUNT=$(echo "$DETECTION_RESULT" | node -e "const fs=require('fs'); const data=JSON.parse(fs.readFileSync(0,'utf-8')); console.log(data.specs?.length || 0)")
123
-
124
- echo "[$(date)] [GitHub] 📋 Detected $SPEC_COUNT spec(s)" >> "$DEBUG_LOG" 2>/dev/null || true
125
-
126
- # Store detection result for later use
127
- echo "$DETECTION_RESULT" > /tmp/specweave-detected-specs.json
128
- else
129
- echo "[$(date)] [GitHub] âš ī¸ detect-specs CLI not found at $DETECT_CLI, falling back to git diff" >> "$DEBUG_LOG" 2>/dev/null || true
130
- SPEC_COUNT=0
131
- fi
132
-
133
- # ============================================================================
134
- # SYNC ALL DETECTED SPECS TO GITHUB (Multi-Spec Support)
135
- # ============================================================================
136
-
137
- if [ -f /tmp/specweave-detected-specs.json ] && [ "$SPEC_COUNT" -gt 0 ]; then
138
- # Multi-spec sync: Loop through all detected specs
139
- echo "[$(date)] [GitHub] 🔄 Syncing $SPEC_COUNT spec(s) to GitHub..." >> "$DEBUG_LOG" 2>/dev/null || true
140
-
141
- # Extract spec paths using Node.js
142
- SPEC_PATHS=$(node -e "
143
- const fs = require('fs');
144
- const data = JSON.parse(fs.readFileSync('/tmp/specweave-detected-specs.json', 'utf-8'));
145
- const syncable = data.specs.filter(s => s.syncEnabled && s.project !== '_parent');
146
- syncable.forEach(s => console.log(s.path));
147
- " 2>> "$DEBUG_LOG")
148
-
149
- # Count syncable specs
150
- SYNCABLE_COUNT=$(echo "$SPEC_PATHS" | grep -v '^$' | wc -l | tr -d ' ')
151
-
152
- if [ "$SYNCABLE_COUNT" -gt 0 ]; then
153
- echo "[$(date)] [GitHub] 📋 Syncing $SYNCABLE_COUNT syncable spec(s) (excluding _parent)" >> "$DEBUG_LOG" 2>/dev/null || true
154
-
155
- # Sync each spec
156
- echo "$SPEC_PATHS" | while read -r SPEC_FILE; do
157
- if [ -n "$SPEC_FILE" ] && [ -f "$SPEC_FILE" ]; then
158
- # Extract project and spec ID from path
159
- SPEC_NAME=$(basename "$SPEC_FILE" .md)
160
- PROJECT=$(basename "$(dirname "$SPEC_FILE")")
161
-
162
- echo "[$(date)] [GitHub] 🔄 Syncing $PROJECT/$SPEC_NAME..." >> "$DEBUG_LOG" 2>/dev/null || true
163
-
164
- (cd "$PROJECT_ROOT" && node "$SYNC_CLI" --spec "$SPEC_FILE" --provider github) 2>&1 | tee -a "$DEBUG_LOG" >/dev/null || {
165
- echo "[$(date)] [GitHub] âš ī¸ Spec sync failed for $PROJECT/$SPEC_NAME (non-blocking)" >> "$DEBUG_LOG" 2>/dev/null || true
166
- }
167
-
168
- echo "[$(date)] [GitHub] ✅ Synced $PROJECT/$SPEC_NAME" >> "$DEBUG_LOG" 2>/dev/null || true
169
- fi
170
- done
171
-
172
- echo "[$(date)] [GitHub] ✅ Multi-spec sync complete ($SYNCABLE_COUNT synced)" >> "$DEBUG_LOG" 2>/dev/null || true
173
- else
174
- echo "[$(date)] [GitHub] â„šī¸ No syncable specs (all specs are _parent or syncEnabled=false)" >> "$DEBUG_LOG" 2>/dev/null || true
175
- fi
176
-
177
- # Cleanup temp file
178
- rm -f /tmp/specweave-detected-specs.json 2>/dev/null || true
179
- else
180
- # Fallback: Sync all modified specs (check git diff)
181
- echo "[$(date)] [GitHub] 🔄 Checking for modified specs..." >> "$DEBUG_LOG" 2>/dev/null || true
182
-
183
- MODIFIED_SPECS=$(git diff --name-only HEAD .specweave/docs/internal/specs/**/*.md 2>/dev/null || echo "")
184
-
185
- if [ -n "$MODIFIED_SPECS" ]; then
186
- echo "[$(date)] [GitHub] 📝 Found modified specs:" >> "$DEBUG_LOG" 2>/dev/null || true
187
- echo "$MODIFIED_SPECS" >> "$DEBUG_LOG" 2>/dev/null || true
188
-
189
- # Sync each modified spec
190
- echo "$MODIFIED_SPECS" | while read -r SPEC_FILE; do
191
- if [ -n "$SPEC_FILE" ] && [ -f "$SPEC_FILE" ]; then
192
- echo "[$(date)] [GitHub] 🔄 Syncing $SPEC_FILE..." >> "$DEBUG_LOG" 2>/dev/null || true
193
- (cd "$PROJECT_ROOT" && node "$SYNC_CLI" --spec "$SPEC_FILE" --provider github) 2>&1 | tee -a "$DEBUG_LOG" >/dev/null || true
194
- fi
195
- done
196
-
197
- echo "[$(date)] [GitHub] ✅ Batch spec sync complete" >> "$DEBUG_LOG" 2>/dev/null || true
198
- else
199
- echo "[$(date)] [GitHub] â„šī¸ No modified specs found, skipping sync" >> "$DEBUG_LOG" 2>/dev/null || true
200
- fi
201
- fi
202
-
203
- # ============================================================================
204
- # EPIC GITHUB ISSUE SYNC (DEPRECATED v0.24.0+)
205
- # ============================================================================
206
- #
207
- # âš ī¸ DEPRECATED: SpecWeave now syncs ONLY at User Story level.
208
- #
209
- # Feature/Epic-level issues are no longer updated.
210
- # Use /specweave-github:sync instead to sync User Story issues.
211
- #
212
- # To re-enable (NOT recommended):
213
- # export SPECWEAVE_ENABLE_EPIC_SYNC=true
214
- #
215
- # @see .specweave/increments/0047-us-task-linkage/reports/GITHUB-TITLE-FORMAT-FIX-PLAN.md
216
- # ============================================================================
217
-
218
- if [ "$SPECWEAVE_ENABLE_EPIC_SYNC" = "true" ]; then
219
- echo "[$(date)] [GitHub] 🔄 Checking for Epic GitHub issue update (DEPRECATED)..." >> "$DEBUG_LOG" 2>/dev/null || true
220
-
221
- # Find active increment ID
222
- ACTIVE_INCREMENT=$(ls -t .specweave/increments/ | grep -v '^\.' | while read inc; do
223
- if [ -f ".specweave/increments/$inc/metadata.json" ]; then
224
- STATUS=$(grep -o '"status"[[:space:]]*:[[:space:]]*"[^"]*"' ".specweave/increments/$inc/metadata.json" 2>/dev/null | sed 's/.*"\([^"]*\)".*/\1/' || true)
225
- if [ "$STATUS" = "active" ]; then
226
- echo "$inc"
227
- break
228
- fi
229
- fi
230
- done | head -1)
231
-
232
- if [ -n "$ACTIVE_INCREMENT" ]; then
233
- echo "[$(date)] [GitHub] đŸŽ¯ Active increment: $ACTIVE_INCREMENT" >> "$DEBUG_LOG" 2>/dev/null || true
234
-
235
- # Run Epic sync script (silently, errors logged to debug log)
236
- if [ -f "$PROJECT_ROOT/scripts/update-epic-github-issue.sh" ]; then
237
- echo "[$(date)] [GitHub] 🚀 Updating Epic GitHub issue (DEPRECATED)..." >> "$DEBUG_LOG" 2>/dev/null || true
238
- "$PROJECT_ROOT/scripts/update-epic-github-issue.sh" "$ACTIVE_INCREMENT" >> "$DEBUG_LOG" 2>&1 || true
239
- echo "[$(date)] [GitHub] âš ī¸ Epic sync is deprecated. Use /specweave-github:sync instead." >> "$DEBUG_LOG" 2>/dev/null || true
240
- else
241
- echo "[$(date)] [GitHub] âš ī¸ Epic sync script not found, skipping" >> "$DEBUG_LOG" 2>/dev/null || true
242
- fi
243
- else
244
- echo "[$(date)] [GitHub] â„šī¸ No active increment found, skipping Epic sync" >> "$DEBUG_LOG" 2>/dev/null || true
245
- fi
246
- else
247
- echo "[$(date)] [GitHub] â„šī¸ Epic sync disabled (sync at User Story level only)" >> "$DEBUG_LOG" 2>/dev/null || true
248
- fi
249
-
250
- # ============================================================================
251
- # OUTPUT TO CLAUDE
252
- # ============================================================================
253
-
254
- cat <<EOF
255
- {
256
- "continue": true
257
- }
258
- EOF