specweave 0.24.8 → 0.24.9

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 (130) hide show
  1. package/dist/src/cli/commands/init.d.ts.map +1 -1
  2. package/dist/src/cli/commands/init.js +3 -1
  3. package/dist/src/cli/commands/init.js.map +1 -1
  4. package/dist/src/cli/helpers/issue-tracker/github-multi-repo.d.ts.map +1 -1
  5. package/dist/src/cli/helpers/issue-tracker/github-multi-repo.js +18 -2
  6. package/dist/src/cli/helpers/issue-tracker/github-multi-repo.js.map +1 -1
  7. package/dist/src/core/repo-structure/git-error-handler.d.ts +1 -1
  8. package/dist/src/core/repo-structure/git-error-handler.d.ts.map +1 -1
  9. package/dist/src/core/repo-structure/git-provider.d.ts +1 -1
  10. package/dist/src/core/repo-structure/git-provider.d.ts.map +1 -1
  11. package/dist/src/core/repo-structure/platform-registry.d.ts.map +1 -1
  12. package/dist/src/core/repo-structure/platform-registry.js +20 -9
  13. package/dist/src/core/repo-structure/platform-registry.js.map +1 -1
  14. package/dist/src/core/repo-structure/prompt-consolidator.d.ts +13 -1
  15. package/dist/src/core/repo-structure/prompt-consolidator.d.ts.map +1 -1
  16. package/dist/src/core/repo-structure/prompt-consolidator.js +38 -5
  17. package/dist/src/core/repo-structure/prompt-consolidator.js.map +1 -1
  18. package/dist/src/core/repo-structure/providers/azure-devops-provider.d.ts +64 -0
  19. package/dist/src/core/repo-structure/providers/azure-devops-provider.d.ts.map +1 -0
  20. package/dist/src/core/repo-structure/providers/azure-devops-provider.js +263 -0
  21. package/dist/src/core/repo-structure/providers/azure-devops-provider.js.map +1 -0
  22. package/dist/src/core/repo-structure/providers/bitbucket-provider.d.ts +12 -11
  23. package/dist/src/core/repo-structure/providers/bitbucket-provider.d.ts.map +1 -1
  24. package/dist/src/core/repo-structure/providers/bitbucket-provider.js +164 -30
  25. package/dist/src/core/repo-structure/providers/bitbucket-provider.js.map +1 -1
  26. package/dist/src/core/repo-structure/providers/gitlab-provider.d.ts +10 -9
  27. package/dist/src/core/repo-structure/providers/gitlab-provider.d.ts.map +1 -1
  28. package/dist/src/core/repo-structure/providers/gitlab-provider.js +182 -28
  29. package/dist/src/core/repo-structure/providers/gitlab-provider.js.map +1 -1
  30. package/dist/src/core/repo-structure/providers/index.d.ts +3 -1
  31. package/dist/src/core/repo-structure/providers/index.d.ts.map +1 -1
  32. package/dist/src/core/repo-structure/providers/index.js +10 -2
  33. package/dist/src/core/repo-structure/providers/index.js.map +1 -1
  34. package/dist/src/core/repo-structure/providers/local-provider.d.ts +61 -0
  35. package/dist/src/core/repo-structure/providers/local-provider.d.ts.map +1 -0
  36. package/dist/src/core/repo-structure/providers/local-provider.js +148 -0
  37. package/dist/src/core/repo-structure/providers/local-provider.js.map +1 -0
  38. package/dist/src/core/repo-structure/repo-structure-manager.d.ts +11 -1
  39. package/dist/src/core/repo-structure/repo-structure-manager.d.ts.map +1 -1
  40. package/dist/src/core/repo-structure/repo-structure-manager.js +268 -84
  41. package/dist/src/core/repo-structure/repo-structure-manager.js.map +1 -1
  42. package/package.json +1 -1
  43. package/plugins/specweave/agents/pm/AGENT.md.bak +1893 -0
  44. package/plugins/specweave/hooks/docs-changed.sh.backup +79 -0
  45. package/plugins/specweave/hooks/human-input-required.sh.backup +75 -0
  46. package/plugins/specweave/hooks/lib/migrate-increment-work.sh.bak +245 -0
  47. package/plugins/specweave/hooks/lib/sync-spec-content.sh.bak +149 -0
  48. package/plugins/specweave/hooks/lib/validate-spec-status.sh.bak +163 -0
  49. package/plugins/specweave/hooks/post-first-increment.sh.backup +61 -0
  50. package/plugins/specweave/hooks/post-first-increment.sh.bak +61 -0
  51. package/plugins/specweave/hooks/post-increment-change.sh.backup +98 -0
  52. package/plugins/specweave/hooks/post-increment-completion.sh.backup +231 -0
  53. package/plugins/specweave/hooks/post-increment-planning.sh.backup +1048 -0
  54. package/plugins/specweave/hooks/post-increment-status-change.sh.backup +147 -0
  55. package/plugins/specweave/hooks/post-spec-update.sh.backup +158 -0
  56. package/plugins/specweave/hooks/post-spec-update.sh.bak +158 -0
  57. package/plugins/specweave/hooks/post-task-completion.sh +69 -175
  58. package/plugins/specweave/hooks/post-user-story-complete.sh.backup +179 -0
  59. package/plugins/specweave/hooks/post-user-story-complete.sh.bak +179 -0
  60. package/plugins/specweave/hooks/pre-command-deduplication.sh.backup +83 -0
  61. package/plugins/specweave/hooks/pre-command-deduplication.sh.bak +83 -0
  62. package/plugins/specweave/hooks/pre-implementation.sh.backup +67 -0
  63. package/plugins/specweave/hooks/pre-task-completion.sh.backup +194 -0
  64. package/plugins/specweave/hooks/pre-tool-use.sh.backup +133 -0
  65. package/plugins/specweave/hooks/user-prompt-submit.sh.backup +386 -0
  66. package/plugins/specweave/hooks/user-prompt-submit.sh.bak +386 -0
  67. package/plugins/specweave/lib/hooks/auto-transition.js.bak +50 -0
  68. package/plugins/specweave/lib/hooks/auto-transition.ts.bak +84 -0
  69. package/plugins/specweave/lib/hooks/consolidated-sync.js +183 -0
  70. package/plugins/specweave/lib/hooks/git-diff-analyzer.d.js.bak +0 -0
  71. package/plugins/specweave/lib/hooks/git-diff-analyzer.d.ts.bak +89 -0
  72. package/plugins/specweave/lib/hooks/git-diff-analyzer.js.bak +142 -0
  73. package/plugins/specweave/lib/hooks/git-diff-analyzer.ts.bak +269 -0
  74. package/plugins/specweave/lib/hooks/invoke-translator-skill.d.js.bak +0 -0
  75. package/plugins/specweave/lib/hooks/invoke-translator-skill.d.ts.bak +60 -0
  76. package/plugins/specweave/lib/hooks/invoke-translator-skill.js.bak +155 -0
  77. package/plugins/specweave/lib/hooks/invoke-translator-skill.ts.bak +264 -0
  78. package/plugins/specweave/lib/hooks/prepare-reflection-context.d.js.bak +0 -0
  79. package/plugins/specweave/lib/hooks/prepare-reflection-context.d.ts.bak +42 -0
  80. package/plugins/specweave/lib/hooks/prepare-reflection-context.js.bak +110 -0
  81. package/plugins/specweave/lib/hooks/prepare-reflection-context.ts.bak +178 -0
  82. package/plugins/specweave/lib/hooks/reflection-config-loader.d.js.bak +0 -0
  83. package/plugins/specweave/lib/hooks/reflection-config-loader.d.ts.bak +45 -0
  84. package/plugins/specweave/lib/hooks/reflection-config-loader.js.bak +92 -0
  85. package/plugins/specweave/lib/hooks/reflection-config-loader.ts.bak +156 -0
  86. package/plugins/specweave/lib/hooks/reflection-parser.d.js.bak +0 -0
  87. package/plugins/specweave/lib/hooks/reflection-parser.d.ts.bak +33 -0
  88. package/plugins/specweave/lib/hooks/reflection-parser.js.bak +301 -0
  89. package/plugins/specweave/lib/hooks/reflection-parser.ts.bak +484 -0
  90. package/plugins/specweave/lib/hooks/reflection-prompt-builder.d.js.bak +0 -0
  91. package/plugins/specweave/lib/hooks/reflection-prompt-builder.d.ts.bak +56 -0
  92. package/plugins/specweave/lib/hooks/reflection-prompt-builder.js.bak +182 -0
  93. package/plugins/specweave/lib/hooks/reflection-prompt-builder.ts.bak +306 -0
  94. package/plugins/specweave/lib/hooks/reflection-storage.d.js.bak +0 -0
  95. package/plugins/specweave/lib/hooks/reflection-storage.d.ts.bak +64 -0
  96. package/plugins/specweave/lib/hooks/reflection-storage.js.bak +231 -0
  97. package/plugins/specweave/lib/hooks/reflection-storage.ts.bak +369 -0
  98. package/plugins/specweave/lib/hooks/run-self-reflection.d.js.bak +0 -0
  99. package/plugins/specweave/lib/hooks/run-self-reflection.d.ts.bak +43 -0
  100. package/plugins/specweave/lib/hooks/run-self-reflection.js.bak +132 -0
  101. package/plugins/specweave/lib/hooks/run-self-reflection.ts.bak +258 -0
  102. package/plugins/specweave/lib/hooks/sync-cache.js.bak +294 -0
  103. package/plugins/specweave/lib/hooks/sync-living-docs.d.js.bak +1 -0
  104. package/plugins/specweave/lib/hooks/sync-living-docs.d.ts.bak +27 -0
  105. package/plugins/specweave/lib/hooks/sync-living-docs.js.bak +339 -0
  106. package/plugins/specweave/lib/hooks/sync-us-tasks.js.bak +476 -0
  107. package/plugins/specweave/lib/hooks/translate-file.d.js.bak +0 -0
  108. package/plugins/specweave/lib/hooks/translate-file.d.ts.bak +59 -0
  109. package/plugins/specweave/lib/hooks/translate-file.js.bak +289 -0
  110. package/plugins/specweave/lib/hooks/translate-file.ts.bak +428 -0
  111. package/plugins/specweave/lib/hooks/translate-living-docs.d.js.bak +0 -0
  112. package/plugins/specweave/lib/hooks/translate-living-docs.d.ts.bak +13 -0
  113. package/plugins/specweave/lib/hooks/translate-living-docs.js.bak +119 -0
  114. package/plugins/specweave/lib/hooks/translate-living-docs.ts.bak +224 -0
  115. package/plugins/specweave/lib/hooks/update-ac-status.js.bak +51 -0
  116. package/plugins/specweave/lib/hooks/update-ac-status.ts.bak +103 -0
  117. package/plugins/specweave/lib/hooks/update-tasks-md.d.js.bak +1 -0
  118. package/plugins/specweave/lib/hooks/update-tasks-md.d.ts.bak +29 -0
  119. package/plugins/specweave/lib/hooks/update-tasks-md.js.bak +296 -0
  120. package/plugins/specweave/lib/hooks/update-tasks-md.ts.bak +489 -0
  121. package/plugins/specweave-ado/hooks/post-living-docs-update.sh.backup +353 -0
  122. package/plugins/specweave-ado/hooks/post-task-completion.sh.backup +172 -0
  123. package/plugins/specweave-ado/lib/ado-multi-project-sync.js +1 -0
  124. package/plugins/specweave-ado/lib/enhanced-ado-sync.js +170 -0
  125. package/plugins/specweave-github/hooks/.specweave/logs/hooks-debug.log +424 -0
  126. package/plugins/specweave-github/hooks/post-task-completion.sh.backup +258 -0
  127. package/plugins/specweave-jira/hooks/post-task-completion.sh.backup +172 -0
  128. package/plugins/specweave-jira/lib/enhanced-jira-sync.js +3 -3
  129. package/plugins/specweave-release/hooks/.specweave/logs/dora-tracking.log +540 -0
  130. package/plugins/specweave-release/hooks/post-task-completion.sh.backup +110 -0
@@ -0,0 +1,424 @@
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
229
+ [Sat Nov 22 18:03:49 EST 2025] [GitHub] 🔗 GitHub sync hook fired
230
+ [Sat Nov 22 18:03: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
231
+ [Sat Nov 22 18:04:56 EST 2025] [GitHub] 🔗 GitHub sync hook fired
232
+ [Sat Nov 22 18:04:56 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
233
+ [Sat Nov 22 18:04:56 EST 2025] [GitHub] 🔗 GitHub sync hook fired
234
+ [Sat Nov 22 18:04:56 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
235
+ [Sat Nov 22 18:05:43 EST 2025] [GitHub] 🔗 GitHub sync hook fired
236
+ [Sat Nov 22 18:05: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
237
+ [Sat Nov 22 18:06:24 EST 2025] [GitHub] 🔗 GitHub sync hook fired
238
+ [Sat Nov 22 18:06: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
239
+ [Sat Nov 22 18:07:46 EST 2025] [GitHub] 🔗 GitHub sync hook fired
240
+ [Sat Nov 22 18:07:46 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
241
+ [Sat Nov 22 18:11:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
242
+ [Sat Nov 22 18:11: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
243
+ [Sat Nov 22 18:12:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
244
+ [Sat Nov 22 18:12: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
245
+ [Sat Nov 22 18:12:35 EST 2025] [GitHub] 🔗 GitHub sync hook fired
246
+ [Sat Nov 22 18: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
247
+ [Sat Nov 22 18:13:12 EST 2025] [GitHub] 🔗 GitHub sync hook fired
248
+ [Sat Nov 22 18:13: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
249
+ [Sat Nov 22 18:13:28 EST 2025] [GitHub] 🔗 GitHub sync hook fired
250
+ [Sat Nov 22 18:13: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
251
+ [Sat Nov 22 18:13:47 EST 2025] [GitHub] 🔗 GitHub sync hook fired
252
+ [Sat Nov 22 18:13: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
253
+ [Sat Nov 22 18:14:08 EST 2025] [GitHub] 🔗 GitHub sync hook fired
254
+ [Sat Nov 22 18:14:08 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
255
+ [Sat Nov 22 18:14:28 EST 2025] [GitHub] 🔗 GitHub sync hook fired
256
+ [Sat Nov 22 18:14: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
257
+ [Sat Nov 22 18:14:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
258
+ [Sat Nov 22 18:14: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
259
+ [Sat Nov 22 18:15:25 EST 2025] [GitHub] 🔗 GitHub sync hook fired
260
+ [Sat Nov 22 18:15: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
261
+ [Sat Nov 22 18:15:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
262
+ [Sat Nov 22 18:15: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
263
+ [Sat Nov 22 18:18:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
264
+ [Sat Nov 22 18:18: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
265
+ [Sat Nov 22 18:18:30 EST 2025] [GitHub] 🔗 GitHub sync hook fired
266
+ [Sat Nov 22 18:18:30 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
267
+ [Sat Nov 22 18:18:40 EST 2025] [GitHub] 🔗 GitHub sync hook fired
268
+ [Sat Nov 22 18:18: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
269
+ [Sat Nov 22 18:18:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
270
+ [Sat Nov 22 18:18: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
271
+ [Sat Nov 22 18:19:08 EST 2025] [GitHub] 🔗 GitHub sync hook fired
272
+ [Sat Nov 22 18:19:08 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
273
+ [Sat Nov 22 18:19:11 EST 2025] [GitHub] 🔗 GitHub sync hook fired
274
+ [Sat Nov 22 18:19: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
275
+ [Sat Nov 22 18:19:27 EST 2025] [GitHub] 🔗 GitHub sync hook fired
276
+ [Sat Nov 22 18:19:27 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
277
+ [Sat Nov 22 18:19:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
278
+ [Sat Nov 22 18:19: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
279
+ [Sat Nov 22 18:19:56 EST 2025] [GitHub] 🔗 GitHub sync hook fired
280
+ [Sat Nov 22 18:19:56 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
281
+ [Sat Nov 22 18:20:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
282
+ [Sat Nov 22 18:20: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
283
+ [Sat Nov 22 18:20:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
284
+ [Sat Nov 22 18:20: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
285
+ [Sat Nov 22 18:20:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
286
+ [Sat Nov 22 18:20: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
287
+ [Sat Nov 22 18:20:39 EST 2025] [GitHub] 🔗 GitHub sync hook fired
288
+ [Sat Nov 22 18:20: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
289
+ [Sat Nov 22 18:20:59 EST 2025] [GitHub] 🔗 GitHub sync hook fired
290
+ [Sat Nov 22 18:20:59 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
291
+ [Sat Nov 22 18:21:30 EST 2025] [GitHub] 🔗 GitHub sync hook fired
292
+ [Sat Nov 22 18:21:30 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
293
+ [Sat Nov 22 18:21:59 EST 2025] [GitHub] 🔗 GitHub sync hook fired
294
+ [Sat Nov 22 18:21:59 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
295
+ [Sat Nov 22 18:22:10 EST 2025] [GitHub] 🔗 GitHub sync hook fired
296
+ [Sat Nov 22 18:22: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
297
+ [Sat Nov 22 18:22:27 EST 2025] [GitHub] 🔗 GitHub sync hook fired
298
+ [Sat Nov 22 18:22:27 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
299
+ [Sat Nov 22 18:22:43 EST 2025] [GitHub] 🔗 GitHub sync hook fired
300
+ [Sat Nov 22 18:22: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
301
+ [Sat Nov 22 18:22:46 EST 2025] [GitHub] 🔗 GitHub sync hook fired
302
+ [Sat Nov 22 18:22:46 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
303
+ [Sat Nov 22 18:23:12 EST 2025] [GitHub] 🔗 GitHub sync hook fired
304
+ [Sat Nov 22 18: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
305
+ [Sat Nov 22 18:23:28 EST 2025] [GitHub] 🔗 GitHub sync hook fired
306
+ [Sat Nov 22 18:23: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
307
+ [Sat Nov 22 18:24:09 EST 2025] [GitHub] 🔗 GitHub sync hook fired
308
+ [Sat Nov 22 18:24: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
309
+ [Sat Nov 22 18:34:35 EST 2025] [GitHub] 🔗 GitHub sync hook fired
310
+ [Sat Nov 22 18:34: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
311
+ [Sat Nov 22 18:35:23 EST 2025] [GitHub] 🔗 GitHub sync hook fired
312
+ [Sat Nov 22 18:35: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
313
+ [Sat Nov 22 18:38:02 EST 2025] [GitHub] 🔗 GitHub sync hook fired
314
+ [Sat Nov 22 18:38:02 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
315
+ [Sat Nov 22 18:38:28 EST 2025] [GitHub] 🔗 GitHub sync hook fired
316
+ [Sat Nov 22 18:38: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
317
+ [Sat Nov 22 18:38:49 EST 2025] [GitHub] 🔗 GitHub sync hook fired
318
+ [Sat Nov 22 18:38: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
319
+ [Sat Nov 22 18:39:05 EST 2025] [GitHub] 🔗 GitHub sync hook fired
320
+ [Sat Nov 22 18:39: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
321
+ [Sat Nov 22 18:39:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
322
+ [Sat Nov 22 18: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
323
+ [Sat Nov 22 18:39:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
324
+ [Sat Nov 22 18:39: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
325
+ [Sat Nov 22 18:40:38 EST 2025] [GitHub] 🔗 GitHub sync hook fired
326
+ [Sat Nov 22 18:40: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
327
+ [Sat Nov 22 18:41:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
328
+ [Sat Nov 22 18:41: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
329
+ [Sat Nov 22 18:41:57 EST 2025] [GitHub] 🔗 GitHub sync hook fired
330
+ [Sat Nov 22 18:41:57 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
331
+ [Sat Nov 22 18:44:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
332
+ [Sat Nov 22 18:44: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
333
+ [Sat Nov 22 18:44:15 EST 2025] [GitHub] 🔗 GitHub sync hook fired
334
+ [Sat Nov 22 18:44: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
335
+ [Sat Nov 22 18:45:56 EST 2025] [GitHub] 🔗 GitHub sync hook fired
336
+ [Sat Nov 22 18:45:56 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
337
+ [Sat Nov 22 18:49:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
338
+ [Sat Nov 22 18:49: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
339
+ [Sat Nov 22 18:49:51 EST 2025] [GitHub] 🔗 GitHub sync hook fired
340
+ [Sat Nov 22 18:49: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
341
+ [Sat Nov 22 18:49:51 EST 2025] [GitHub] 🔗 GitHub sync hook fired
342
+ [Sat Nov 22 18:49: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
343
+ [Sat Nov 22 18:50:10 EST 2025] [GitHub] 🔗 GitHub sync hook fired
344
+ [Sat Nov 22 18:50: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
345
+ [Sat Nov 22 18:50:30 EST 2025] [GitHub] 🔗 GitHub sync hook fired
346
+ [Sat Nov 22 18:50:30 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
347
+ [Sat Nov 22 18:51:48 EST 2025] [GitHub] 🔗 GitHub sync hook fired
348
+ [Sat Nov 22 18:51:48 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
349
+ [Sat Nov 22 18:52:22 EST 2025] [GitHub] 🔗 GitHub sync hook fired
350
+ [Sat Nov 22 18:52: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
351
+ [Sat Nov 22 18:52:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
352
+ [Sat Nov 22 18:52: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
353
+ [Sat Nov 22 18:58:30 EST 2025] [GitHub] 🔗 GitHub sync hook fired
354
+ [Sat Nov 22 18:58:30 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
355
+ [Sat Nov 22 18:58:46 EST 2025] [GitHub] 🔗 GitHub sync hook fired
356
+ [Sat Nov 22 18:58:46 EST 2025] [GitHub] 🔗 GitHub sync hook fired
357
+ [Sat Nov 22 18:58:46 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
358
+ [Sat Nov 22 18:58:46 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
359
+ [Sat Nov 22 18:59:53 EST 2025] [GitHub] 🔗 GitHub sync hook fired
360
+ [Sat Nov 22 18:59: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
361
+ [Sun Nov 23 01:18:42 EST 2025] [GitHub] 🔗 GitHub sync hook fired
362
+ [Sun Nov 23 01:18: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
363
+ [Sun Nov 23 01:18:47 EST 2025] [GitHub] 🔗 GitHub sync hook fired
364
+ [Sun Nov 23 01:18: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
365
+ [Sun Nov 23 01:18:52 EST 2025] [GitHub] 🔗 GitHub sync hook fired
366
+ [Sun Nov 23 01:18: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
367
+ [Sun Nov 23 01:18:57 EST 2025] [GitHub] 🔗 GitHub sync hook fired
368
+ [Sun Nov 23 01:18:57 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
369
+ [Sun Nov 23 01:19:14 EST 2025] [GitHub] 🔗 GitHub sync hook fired
370
+ [Sun Nov 23 01:19: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
371
+ [Sun Nov 23 01:19:19 EST 2025] [GitHub] 🔗 GitHub sync hook fired
372
+ [Sun Nov 23 01:19: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
373
+ [Sun Nov 23 01:19:24 EST 2025] [GitHub] 🔗 GitHub sync hook fired
374
+ [Sun Nov 23 01:19: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
375
+ [Sun Nov 23 01:19:29 EST 2025] [GitHub] 🔗 GitHub sync hook fired
376
+ [Sun Nov 23 01:19:29 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
377
+ [Sun Nov 23 01:19:46 EST 2025] [GitHub] 🔗 GitHub sync hook fired
378
+ [Sun Nov 23 01:19:46 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
379
+ [Sun Nov 23 01:19:51 EST 2025] [GitHub] 🔗 GitHub sync hook fired
380
+ [Sun Nov 23 01:19: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
381
+ [Sun Nov 23 01:19:56 EST 2025] [GitHub] 🔗 GitHub sync hook fired
382
+ [Sun Nov 23 01:19:56 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
383
+ [Sun Nov 23 01:20:02 EST 2025] [GitHub] 🔗 GitHub sync hook fired
384
+ [Sun Nov 23 01:20:02 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
385
+ [Sun Nov 23 01:21:12 EST 2025] [GitHub] 🔗 GitHub sync hook fired
386
+ [Sun Nov 23 01:21: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
387
+ [Sun Nov 23 01:21:17 EST 2025] [GitHub] 🔗 GitHub sync hook fired
388
+ [Sun Nov 23 01: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
389
+ [Sun Nov 23 01:21:23 EST 2025] [GitHub] 🔗 GitHub sync hook fired
390
+ [Sun Nov 23 01:21: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
391
+ [Sun Nov 23 01:21:28 EST 2025] [GitHub] 🔗 GitHub sync hook fired
392
+ [Sun Nov 23 01:21: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
393
+ [Sun Nov 23 01:23:25 EST 2025] [GitHub] 🔗 GitHub sync hook fired
394
+ [Sun Nov 23 01:23: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
395
+ [Sun Nov 23 01:23:30 EST 2025] [GitHub] 🔗 GitHub sync hook fired
396
+ [Sun Nov 23 01:23:30 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
397
+ [Sun Nov 23 01:23:36 EST 2025] [GitHub] 🔗 GitHub sync hook fired
398
+ [Sun Nov 23 01:23: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
399
+ [Sun Nov 23 01:23:41 EST 2025] [GitHub] 🔗 GitHub sync hook fired
400
+ [Sun Nov 23 01:23: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
401
+ [Sun Nov 23 01:24:02 EST 2025] [GitHub] 🔗 GitHub sync hook fired
402
+ [Sun Nov 23 01:24:02 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
403
+ [Sun Nov 23 01:24:07 EST 2025] [GitHub] 🔗 GitHub sync hook fired
404
+ [Sun Nov 23 01:24:07 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
405
+ [Sun Nov 23 01:24:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
406
+ [Sun Nov 23 01:24: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
407
+ [Sun Nov 23 01:24:18 EST 2025] [GitHub] 🔗 GitHub sync hook fired
408
+ [Sun Nov 23 01:24: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
409
+ [Sun Nov 23 02:02:08 EST 2025] [GitHub] 🔗 GitHub sync hook fired
410
+ [Sun Nov 23 02:02:08 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
411
+ [Sun Nov 23 02:02:13 EST 2025] [GitHub] 🔗 GitHub sync hook fired
412
+ [Sun Nov 23 02:02: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
413
+ [Sun Nov 23 02:02:18 EST 2025] [GitHub] 🔗 GitHub sync hook fired
414
+ [Sun Nov 23 02:02: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
415
+ [Sun Nov 23 02:02:24 EST 2025] [GitHub] 🔗 GitHub sync hook fired
416
+ [Sun Nov 23 02:02: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
417
+ [Sun Nov 23 02:09:21 EST 2025] [GitHub] 🔗 GitHub sync hook fired
418
+ [Sun Nov 23 02:09: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
419
+ [Sun Nov 23 02:09:26 EST 2025] [GitHub] 🔗 GitHub sync hook fired
420
+ [Sun Nov 23 02:09: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
421
+ [Sun Nov 23 02:09:31 EST 2025] [GitHub] 🔗 GitHub sync hook fired
422
+ [Sun Nov 23 02:09: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
423
+ [Sun Nov 23 02:09:36 EST 2025] [GitHub] 🔗 GitHub sync hook fired
424
+ [Sun Nov 23 02:09: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