oh-my-claude-sisyphus 3.7.4 → 3.7.6

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 (427) hide show
  1. package/commands/hud.md +3 -1
  2. package/dist/__tests__/analytics/output-estimator.test.js +18 -0
  3. package/dist/__tests__/analytics/output-estimator.test.js.map +1 -1
  4. package/dist/__tests__/analytics/token-extractor.test.js +44 -0
  5. package/dist/__tests__/analytics/token-extractor.test.js.map +1 -1
  6. package/dist/__tests__/analytics/token-tracker.test.d.ts +2 -0
  7. package/dist/__tests__/analytics/token-tracker.test.d.ts.map +1 -0
  8. package/dist/__tests__/analytics/token-tracker.test.js +189 -0
  9. package/dist/__tests__/analytics/token-tracker.test.js.map +1 -0
  10. package/dist/__tests__/hud/analytics-display.test.js +3 -8
  11. package/dist/__tests__/hud/analytics-display.test.js.map +1 -1
  12. package/dist/__tests__/hud/top-agents.test.d.ts +8 -0
  13. package/dist/__tests__/hud/top-agents.test.d.ts.map +1 -0
  14. package/dist/__tests__/hud/top-agents.test.js +157 -0
  15. package/dist/__tests__/hud/top-agents.test.js.map +1 -0
  16. package/dist/__tests__/installer.test.js +1 -1
  17. package/dist/analytics/output-estimator.d.ts.map +1 -1
  18. package/dist/analytics/output-estimator.js +5 -1
  19. package/dist/analytics/output-estimator.js.map +1 -1
  20. package/dist/analytics/token-extractor.js +2 -2
  21. package/dist/analytics/token-extractor.js.map +1 -1
  22. package/dist/cli/analytics.js +0 -0
  23. package/dist/cli/index.js +0 -0
  24. package/dist/hooks/pre-compact/index.d.ts +2 -4
  25. package/dist/hooks/pre-compact/index.d.ts.map +1 -1
  26. package/dist/hooks/pre-compact/index.js +3 -4
  27. package/dist/hooks/pre-compact/index.js.map +1 -1
  28. package/dist/hud/analytics-display.d.ts.map +1 -1
  29. package/dist/hud/analytics-display.js +0 -1
  30. package/dist/hud/analytics-display.js.map +1 -1
  31. package/dist/hud/index.js +52 -3
  32. package/dist/hud/index.js.map +1 -1
  33. package/dist/installer/index.d.ts +1 -1
  34. package/dist/installer/index.js +1 -1
  35. package/dist/tools/ast-tools.d.ts.map +1 -1
  36. package/dist/tools/ast-tools.js +39 -19
  37. package/dist/tools/ast-tools.js.map +1 -1
  38. package/dist/tools/diagnostics/__tests__/detectProjectType.test.d.ts +5 -0
  39. package/dist/tools/diagnostics/__tests__/detectProjectType.test.d.ts.map +1 -0
  40. package/dist/tools/diagnostics/__tests__/detectProjectType.test.js +42 -0
  41. package/dist/tools/diagnostics/__tests__/detectProjectType.test.js.map +1 -0
  42. package/dist/tools/diagnostics/__tests__/integration.test.d.ts +5 -0
  43. package/dist/tools/diagnostics/__tests__/integration.test.d.ts.map +1 -0
  44. package/dist/tools/diagnostics/__tests__/integration.test.js +66 -0
  45. package/dist/tools/diagnostics/__tests__/integration.test.js.map +1 -0
  46. package/dist/tools/diagnostics/__tests__/parser-tests.d.ts +5 -0
  47. package/dist/tools/diagnostics/__tests__/parser-tests.d.ts.map +1 -0
  48. package/dist/tools/diagnostics/__tests__/parser-tests.js +86 -0
  49. package/dist/tools/diagnostics/__tests__/parser-tests.js.map +1 -0
  50. package/dist/tools/diagnostics/__tests__/parsers.test.d.ts +5 -0
  51. package/dist/tools/diagnostics/__tests__/parsers.test.d.ts.map +1 -0
  52. package/dist/tools/diagnostics/__tests__/parsers.test.js +199 -0
  53. package/dist/tools/diagnostics/__tests__/parsers.test.js.map +1 -0
  54. package/dist/tools/diagnostics/constants.d.ts +9 -0
  55. package/dist/tools/diagnostics/constants.d.ts.map +1 -0
  56. package/dist/tools/diagnostics/constants.js +9 -0
  57. package/dist/tools/diagnostics/constants.js.map +1 -0
  58. package/dist/tools/diagnostics/go-runner.d.ts +31 -0
  59. package/dist/tools/diagnostics/go-runner.d.ts.map +1 -0
  60. package/dist/tools/diagnostics/go-runner.js +78 -0
  61. package/dist/tools/diagnostics/go-runner.js.map +1 -0
  62. package/dist/tools/diagnostics/index.d.ts +32 -7
  63. package/dist/tools/diagnostics/index.d.ts.map +1 -1
  64. package/dist/tools/diagnostics/index.js +171 -41
  65. package/dist/tools/diagnostics/index.js.map +1 -1
  66. package/dist/tools/diagnostics/lsp-aggregator.d.ts +13 -1
  67. package/dist/tools/diagnostics/lsp-aggregator.d.ts.map +1 -1
  68. package/dist/tools/diagnostics/lsp-aggregator.js +32 -4
  69. package/dist/tools/diagnostics/lsp-aggregator.js.map +1 -1
  70. package/dist/tools/diagnostics/python-runner.d.ts +39 -0
  71. package/dist/tools/diagnostics/python-runner.d.ts.map +1 -0
  72. package/dist/tools/diagnostics/python-runner.js +200 -0
  73. package/dist/tools/diagnostics/python-runner.js.map +1 -0
  74. package/dist/tools/diagnostics/rust-runner.d.ts +34 -0
  75. package/dist/tools/diagnostics/rust-runner.d.ts.map +1 -0
  76. package/dist/tools/diagnostics/rust-runner.js +106 -0
  77. package/dist/tools/diagnostics/rust-runner.js.map +1 -0
  78. package/dist/tools/diagnostics/tsc-runner.d.ts +6 -0
  79. package/dist/tools/diagnostics/tsc-runner.d.ts.map +1 -1
  80. package/dist/tools/diagnostics/tsc-runner.js +32 -5
  81. package/dist/tools/diagnostics/tsc-runner.js.map +1 -1
  82. package/dist/tools/lsp/client.d.ts.map +1 -1
  83. package/dist/tools/lsp/client.js +26 -1
  84. package/dist/tools/lsp/client.js.map +1 -1
  85. package/dist/tools/lsp/servers.d.ts +3 -0
  86. package/dist/tools/lsp/servers.d.ts.map +1 -1
  87. package/dist/tools/lsp/servers.js +111 -4
  88. package/dist/tools/lsp/servers.js.map +1 -1
  89. package/dist/tools/lsp-tools.d.ts +2 -2
  90. package/dist/tools/lsp-tools.d.ts.map +1 -1
  91. package/dist/tools/lsp-tools.js +2 -2
  92. package/dist/tools/lsp-tools.js.map +1 -1
  93. package/package.json +1 -1
  94. package/skills/hud/SKILL.md +3 -1
  95. package/dist/__tests__/analytics/analytics-summary.test.d.ts +0 -2
  96. package/dist/__tests__/analytics/analytics-summary.test.d.ts.map +0 -1
  97. package/dist/__tests__/analytics/analytics-summary.test.js +0 -267
  98. package/dist/__tests__/analytics/analytics-summary.test.js.map +0 -1
  99. package/dist/__tests__/analytics/cost-estimator.test.d.ts +0 -2
  100. package/dist/__tests__/analytics/cost-estimator.test.d.ts.map +0 -1
  101. package/dist/__tests__/analytics/cost-estimator.test.js +0 -212
  102. package/dist/__tests__/analytics/cost-estimator.test.js.map +0 -1
  103. package/dist/__tests__/hooks/auto-slash-command/executor.test.d.ts +0 -7
  104. package/dist/__tests__/hooks/auto-slash-command/executor.test.d.ts.map +0 -1
  105. package/dist/__tests__/hooks/auto-slash-command/executor.test.js +0 -374
  106. package/dist/__tests__/hooks/auto-slash-command/executor.test.js.map +0 -1
  107. package/dist/__tests__/hud/auto-tracking.integration.test.d.ts +0 -2
  108. package/dist/__tests__/hud/auto-tracking.integration.test.d.ts.map +0 -1
  109. package/dist/__tests__/hud/auto-tracking.integration.test.js +0 -12
  110. package/dist/__tests__/hud/auto-tracking.integration.test.js.map +0 -1
  111. package/dist/__tests__/learned-skills/config.test.d.ts +0 -2
  112. package/dist/__tests__/learned-skills/config.test.d.ts.map +0 -1
  113. package/dist/__tests__/learned-skills/config.test.js +0 -37
  114. package/dist/__tests__/learned-skills/config.test.js.map +0 -1
  115. package/dist/__tests__/learned-skills/detector.test.d.ts +0 -2
  116. package/dist/__tests__/learned-skills/detector.test.d.ts.map +0 -1
  117. package/dist/__tests__/learned-skills/detector.test.js +0 -99
  118. package/dist/__tests__/learned-skills/detector.test.js.map +0 -1
  119. package/dist/__tests__/learned-skills/finder.test.d.ts +0 -2
  120. package/dist/__tests__/learned-skills/finder.test.d.ts.map +0 -1
  121. package/dist/__tests__/learned-skills/finder.test.js +0 -59
  122. package/dist/__tests__/learned-skills/finder.test.js.map +0 -1
  123. package/dist/__tests__/learned-skills/loader.test.d.ts +0 -2
  124. package/dist/__tests__/learned-skills/loader.test.d.ts.map +0 -1
  125. package/dist/__tests__/learned-skills/loader.test.js +0 -69
  126. package/dist/__tests__/learned-skills/loader.test.js.map +0 -1
  127. package/dist/__tests__/learned-skills/parser.test.d.ts +0 -2
  128. package/dist/__tests__/learned-skills/parser.test.d.ts.map +0 -1
  129. package/dist/__tests__/learned-skills/parser.test.js +0 -81
  130. package/dist/__tests__/learned-skills/parser.test.js.map +0 -1
  131. package/dist/__tests__/learned-skills/validator.test.d.ts +0 -2
  132. package/dist/__tests__/learned-skills/validator.test.d.ts.map +0 -1
  133. package/dist/__tests__/learned-skills/validator.test.js +0 -85
  134. package/dist/__tests__/learned-skills/validator.test.js.map +0 -1
  135. package/dist/agents/codex-agents.d.ts +0 -20
  136. package/dist/agents/codex-agents.d.ts.map +0 -1
  137. package/dist/agents/codex-agents.js +0 -36
  138. package/dist/agents/codex-agents.js.map +0 -1
  139. package/dist/agents/document-writer.d.ts +0 -11
  140. package/dist/agents/document-writer.d.ts.map +0 -1
  141. package/dist/agents/document-writer.js +0 -209
  142. package/dist/agents/document-writer.js.map +0 -1
  143. package/dist/agents/frontend-engineer.d.ts +0 -11
  144. package/dist/agents/frontend-engineer.d.ts.map +0 -1
  145. package/dist/agents/frontend-engineer.js +0 -115
  146. package/dist/agents/frontend-engineer.js.map +0 -1
  147. package/dist/agents/librarian.d.ts +0 -12
  148. package/dist/agents/librarian.d.ts.map +0 -1
  149. package/dist/agents/librarian.js +0 -103
  150. package/dist/agents/librarian.js.map +0 -1
  151. package/dist/agents/metis.d.ts +0 -12
  152. package/dist/agents/metis.d.ts.map +0 -1
  153. package/dist/agents/metis.js +0 -117
  154. package/dist/agents/metis.js.map +0 -1
  155. package/dist/agents/momus.d.ts +0 -12
  156. package/dist/agents/momus.d.ts.map +0 -1
  157. package/dist/agents/momus.js +0 -128
  158. package/dist/agents/momus.js.map +0 -1
  159. package/dist/agents/multimodal-looker.d.ts +0 -11
  160. package/dist/agents/multimodal-looker.d.ts.map +0 -1
  161. package/dist/agents/multimodal-looker.js +0 -70
  162. package/dist/agents/multimodal-looker.js.map +0 -1
  163. package/dist/agents/oracle.d.ts +0 -13
  164. package/dist/agents/oracle.d.ts.map +0 -1
  165. package/dist/agents/oracle.js +0 -191
  166. package/dist/agents/oracle.js.map +0 -1
  167. package/dist/agents/orchestrator-sisyphus.d.ts +0 -11
  168. package/dist/agents/orchestrator-sisyphus.d.ts.map +0 -1
  169. package/dist/agents/orchestrator-sisyphus.js +0 -115
  170. package/dist/agents/orchestrator-sisyphus.js.map +0 -1
  171. package/dist/agents/prometheus.d.ts +0 -12
  172. package/dist/agents/prometheus.d.ts.map +0 -1
  173. package/dist/agents/prometheus.js +0 -195
  174. package/dist/agents/prometheus.js.map +0 -1
  175. package/dist/agents/sisyphus-junior.d.ts +0 -12
  176. package/dist/agents/sisyphus-junior.d.ts.map +0 -1
  177. package/dist/agents/sisyphus-junior.js +0 -93
  178. package/dist/agents/sisyphus-junior.js.map +0 -1
  179. package/dist/cli/components/CostDashboard.d.ts +0 -15
  180. package/dist/cli/components/CostDashboard.d.ts.map +0 -1
  181. package/dist/cli/components/CostDashboard.js +0 -15
  182. package/dist/cli/components/CostDashboard.js.map +0 -1
  183. package/dist/cli/components/LiveStats.d.ts +0 -16
  184. package/dist/cli/components/LiveStats.d.ts.map +0 -1
  185. package/dist/cli/components/LiveStats.js +0 -16
  186. package/dist/cli/components/LiveStats.js.map +0 -1
  187. package/dist/cli/components/SessionBrowser.d.ts +0 -14
  188. package/dist/cli/components/SessionBrowser.d.ts.map +0 -1
  189. package/dist/cli/components/SessionBrowser.js +0 -14
  190. package/dist/cli/components/SessionBrowser.js.map +0 -1
  191. package/dist/cli/tui.d.ts +0 -21
  192. package/dist/cli/tui.d.ts.map +0 -1
  193. package/dist/cli/tui.js +0 -21
  194. package/dist/cli/tui.js.map +0 -1
  195. package/dist/hooks/autopilot/signals.d.ts +0 -20
  196. package/dist/hooks/autopilot/signals.d.ts.map +0 -1
  197. package/dist/hooks/autopilot/signals.js +0 -75
  198. package/dist/hooks/autopilot/signals.js.map +0 -1
  199. package/dist/hooks/autopilot/summary.d.ts +0 -27
  200. package/dist/hooks/autopilot/summary.d.ts.map +0 -1
  201. package/dist/hooks/autopilot/summary.js +0 -160
  202. package/dist/hooks/autopilot/summary.js.map +0 -1
  203. package/dist/hooks/autopilot/transition.d.ts +0 -39
  204. package/dist/hooks/autopilot/transition.d.ts.map +0 -1
  205. package/dist/hooks/autopilot/transition.js +0 -216
  206. package/dist/hooks/autopilot/transition.js.map +0 -1
  207. package/dist/hooks/context-window-limit-recovery/constants.d.ts +0 -28
  208. package/dist/hooks/context-window-limit-recovery/constants.d.ts.map +0 -1
  209. package/dist/hooks/context-window-limit-recovery/constants.js +0 -85
  210. package/dist/hooks/context-window-limit-recovery/constants.js.map +0 -1
  211. package/dist/hooks/context-window-limit-recovery/index.d.ts +0 -62
  212. package/dist/hooks/context-window-limit-recovery/index.d.ts.map +0 -1
  213. package/dist/hooks/context-window-limit-recovery/index.js +0 -201
  214. package/dist/hooks/context-window-limit-recovery/index.js.map +0 -1
  215. package/dist/hooks/context-window-limit-recovery/parser.d.ts +0 -31
  216. package/dist/hooks/context-window-limit-recovery/parser.d.ts.map +0 -1
  217. package/dist/hooks/context-window-limit-recovery/parser.js +0 -241
  218. package/dist/hooks/context-window-limit-recovery/parser.js.map +0 -1
  219. package/dist/hooks/context-window-limit-recovery/types.d.ts +0 -84
  220. package/dist/hooks/context-window-limit-recovery/types.d.ts.map +0 -1
  221. package/dist/hooks/context-window-limit-recovery/types.js +0 -34
  222. package/dist/hooks/context-window-limit-recovery/types.js.map +0 -1
  223. package/dist/hooks/edit-error-recovery/index.d.ts +0 -62
  224. package/dist/hooks/edit-error-recovery/index.d.ts.map +0 -1
  225. package/dist/hooks/edit-error-recovery/index.js +0 -89
  226. package/dist/hooks/edit-error-recovery/index.js.map +0 -1
  227. package/dist/hooks/github-auto-responder/classifier.d.ts +0 -43
  228. package/dist/hooks/github-auto-responder/classifier.d.ts.map +0 -1
  229. package/dist/hooks/github-auto-responder/classifier.js +0 -150
  230. package/dist/hooks/github-auto-responder/classifier.js.map +0 -1
  231. package/dist/hooks/github-auto-responder/config.d.ts +0 -109
  232. package/dist/hooks/github-auto-responder/config.d.ts.map +0 -1
  233. package/dist/hooks/github-auto-responder/config.js +0 -69
  234. package/dist/hooks/github-auto-responder/config.js.map +0 -1
  235. package/dist/hooks/github-auto-responder/constants.d.ts +0 -45
  236. package/dist/hooks/github-auto-responder/constants.d.ts.map +0 -1
  237. package/dist/hooks/github-auto-responder/constants.js +0 -60
  238. package/dist/hooks/github-auto-responder/constants.js.map +0 -1
  239. package/dist/hooks/github-auto-responder/filters.d.ts +0 -95
  240. package/dist/hooks/github-auto-responder/filters.d.ts.map +0 -1
  241. package/dist/hooks/github-auto-responder/filters.js +0 -174
  242. package/dist/hooks/github-auto-responder/filters.js.map +0 -1
  243. package/dist/hooks/github-auto-responder/github-client.d.ts +0 -65
  244. package/dist/hooks/github-auto-responder/github-client.d.ts.map +0 -1
  245. package/dist/hooks/github-auto-responder/github-client.js +0 -128
  246. package/dist/hooks/github-auto-responder/github-client.js.map +0 -1
  247. package/dist/hooks/github-auto-responder/idempotency.d.ts +0 -68
  248. package/dist/hooks/github-auto-responder/idempotency.d.ts.map +0 -1
  249. package/dist/hooks/github-auto-responder/idempotency.js +0 -147
  250. package/dist/hooks/github-auto-responder/idempotency.js.map +0 -1
  251. package/dist/hooks/github-auto-responder/index.d.ts +0 -140
  252. package/dist/hooks/github-auto-responder/index.d.ts.map +0 -1
  253. package/dist/hooks/github-auto-responder/index.js +0 -145
  254. package/dist/hooks/github-auto-responder/index.js.map +0 -1
  255. package/dist/hooks/github-auto-responder/persona.d.ts +0 -40
  256. package/dist/hooks/github-auto-responder/persona.d.ts.map +0 -1
  257. package/dist/hooks/github-auto-responder/persona.js +0 -99
  258. package/dist/hooks/github-auto-responder/persona.js.map +0 -1
  259. package/dist/hooks/github-auto-responder/responder.d.ts +0 -122
  260. package/dist/hooks/github-auto-responder/responder.d.ts.map +0 -1
  261. package/dist/hooks/github-auto-responder/responder.js +0 -264
  262. package/dist/hooks/github-auto-responder/responder.js.map +0 -1
  263. package/dist/hooks/github-auto-responder/server.d.ts +0 -140
  264. package/dist/hooks/github-auto-responder/server.d.ts.map +0 -1
  265. package/dist/hooks/github-auto-responder/server.js +0 -301
  266. package/dist/hooks/github-auto-responder/server.js.map +0 -1
  267. package/dist/hooks/github-auto-responder/signature.d.ts +0 -34
  268. package/dist/hooks/github-auto-responder/signature.d.ts.map +0 -1
  269. package/dist/hooks/github-auto-responder/signature.js +0 -79
  270. package/dist/hooks/github-auto-responder/signature.js.map +0 -1
  271. package/dist/hooks/github-auto-responder/templates.d.ts +0 -16
  272. package/dist/hooks/github-auto-responder/templates.d.ts.map +0 -1
  273. package/dist/hooks/github-auto-responder/templates.js +0 -93
  274. package/dist/hooks/github-auto-responder/templates.js.map +0 -1
  275. package/dist/hooks/github-auto-responder/types.d.ts +0 -246
  276. package/dist/hooks/github-auto-responder/types.d.ts.map +0 -1
  277. package/dist/hooks/github-auto-responder/types.js +0 -7
  278. package/dist/hooks/github-auto-responder/types.js.map +0 -1
  279. package/dist/hooks/learned-skills/config.d.ts +0 -53
  280. package/dist/hooks/learned-skills/config.d.ts.map +0 -1
  281. package/dist/hooks/learned-skills/config.js +0 -103
  282. package/dist/hooks/learned-skills/config.js.map +0 -1
  283. package/dist/hooks/learned-skills/constants.d.ts +0 -24
  284. package/dist/hooks/learned-skills/constants.d.ts.map +0 -1
  285. package/dist/hooks/learned-skills/constants.js +0 -26
  286. package/dist/hooks/learned-skills/constants.js.map +0 -1
  287. package/dist/hooks/learned-skills/detection-hook.d.ts +0 -39
  288. package/dist/hooks/learned-skills/detection-hook.d.ts.map +0 -1
  289. package/dist/hooks/learned-skills/detection-hook.js +0 -83
  290. package/dist/hooks/learned-skills/detection-hook.js.map +0 -1
  291. package/dist/hooks/learned-skills/detector.d.ts +0 -30
  292. package/dist/hooks/learned-skills/detector.d.ts.map +0 -1
  293. package/dist/hooks/learned-skills/detector.js +0 -150
  294. package/dist/hooks/learned-skills/detector.js.map +0 -1
  295. package/dist/hooks/learned-skills/finder.d.ts +0 -21
  296. package/dist/hooks/learned-skills/finder.d.ts.map +0 -1
  297. package/dist/hooks/learned-skills/finder.js +0 -117
  298. package/dist/hooks/learned-skills/finder.js.map +0 -1
  299. package/dist/hooks/learned-skills/index.d.ts +0 -62
  300. package/dist/hooks/learned-skills/index.d.ts.map +0 -1
  301. package/dist/hooks/learned-skills/index.js +0 -137
  302. package/dist/hooks/learned-skills/index.js.map +0 -1
  303. package/dist/hooks/learned-skills/loader.d.ts +0 -20
  304. package/dist/hooks/learned-skills/loader.d.ts.map +0 -1
  305. package/dist/hooks/learned-skills/loader.js +0 -107
  306. package/dist/hooks/learned-skills/loader.js.map +0 -1
  307. package/dist/hooks/learned-skills/parser.d.ts +0 -21
  308. package/dist/hooks/learned-skills/parser.d.ts.map +0 -1
  309. package/dist/hooks/learned-skills/parser.js +0 -190
  310. package/dist/hooks/learned-skills/parser.js.map +0 -1
  311. package/dist/hooks/learned-skills/promotion.d.ts +0 -29
  312. package/dist/hooks/learned-skills/promotion.d.ts.map +0 -1
  313. package/dist/hooks/learned-skills/promotion.js +0 -87
  314. package/dist/hooks/learned-skills/promotion.js.map +0 -1
  315. package/dist/hooks/learned-skills/types.d.ts +0 -109
  316. package/dist/hooks/learned-skills/types.d.ts.map +0 -1
  317. package/dist/hooks/learned-skills/types.js +0 -8
  318. package/dist/hooks/learned-skills/types.js.map +0 -1
  319. package/dist/hooks/learned-skills/validator.d.ts +0 -15
  320. package/dist/hooks/learned-skills/validator.d.ts.map +0 -1
  321. package/dist/hooks/learned-skills/validator.js +0 -87
  322. package/dist/hooks/learned-skills/validator.js.map +0 -1
  323. package/dist/hooks/learned-skills/writer.d.ts +0 -27
  324. package/dist/hooks/learned-skills/writer.d.ts.map +0 -1
  325. package/dist/hooks/learned-skills/writer.js +0 -126
  326. package/dist/hooks/learned-skills/writer.js.map +0 -1
  327. package/dist/hooks/mnemosyne/config.d.ts +0 -53
  328. package/dist/hooks/mnemosyne/config.d.ts.map +0 -1
  329. package/dist/hooks/mnemosyne/config.js +0 -103
  330. package/dist/hooks/mnemosyne/config.js.map +0 -1
  331. package/dist/hooks/mnemosyne/constants.d.ts +0 -24
  332. package/dist/hooks/mnemosyne/constants.d.ts.map +0 -1
  333. package/dist/hooks/mnemosyne/constants.js +0 -26
  334. package/dist/hooks/mnemosyne/constants.js.map +0 -1
  335. package/dist/hooks/mnemosyne/detection-hook.d.ts +0 -39
  336. package/dist/hooks/mnemosyne/detection-hook.d.ts.map +0 -1
  337. package/dist/hooks/mnemosyne/detection-hook.js +0 -83
  338. package/dist/hooks/mnemosyne/detection-hook.js.map +0 -1
  339. package/dist/hooks/mnemosyne/detector.d.ts +0 -30
  340. package/dist/hooks/mnemosyne/detector.d.ts.map +0 -1
  341. package/dist/hooks/mnemosyne/detector.js +0 -150
  342. package/dist/hooks/mnemosyne/detector.js.map +0 -1
  343. package/dist/hooks/mnemosyne/finder.d.ts +0 -21
  344. package/dist/hooks/mnemosyne/finder.d.ts.map +0 -1
  345. package/dist/hooks/mnemosyne/finder.js +0 -117
  346. package/dist/hooks/mnemosyne/finder.js.map +0 -1
  347. package/dist/hooks/mnemosyne/index.d.ts +0 -62
  348. package/dist/hooks/mnemosyne/index.d.ts.map +0 -1
  349. package/dist/hooks/mnemosyne/index.js +0 -137
  350. package/dist/hooks/mnemosyne/index.js.map +0 -1
  351. package/dist/hooks/mnemosyne/loader.d.ts +0 -20
  352. package/dist/hooks/mnemosyne/loader.d.ts.map +0 -1
  353. package/dist/hooks/mnemosyne/loader.js +0 -113
  354. package/dist/hooks/mnemosyne/loader.js.map +0 -1
  355. package/dist/hooks/mnemosyne/parser.d.ts +0 -21
  356. package/dist/hooks/mnemosyne/parser.d.ts.map +0 -1
  357. package/dist/hooks/mnemosyne/parser.js +0 -190
  358. package/dist/hooks/mnemosyne/parser.js.map +0 -1
  359. package/dist/hooks/mnemosyne/promotion.d.ts +0 -29
  360. package/dist/hooks/mnemosyne/promotion.d.ts.map +0 -1
  361. package/dist/hooks/mnemosyne/promotion.js +0 -87
  362. package/dist/hooks/mnemosyne/promotion.js.map +0 -1
  363. package/dist/hooks/mnemosyne/types.d.ts +0 -109
  364. package/dist/hooks/mnemosyne/types.d.ts.map +0 -1
  365. package/dist/hooks/mnemosyne/types.js +0 -8
  366. package/dist/hooks/mnemosyne/types.js.map +0 -1
  367. package/dist/hooks/mnemosyne/validator.d.ts +0 -15
  368. package/dist/hooks/mnemosyne/validator.d.ts.map +0 -1
  369. package/dist/hooks/mnemosyne/validator.js +0 -87
  370. package/dist/hooks/mnemosyne/validator.js.map +0 -1
  371. package/dist/hooks/mnemosyne/writer.d.ts +0 -27
  372. package/dist/hooks/mnemosyne/writer.d.ts.map +0 -1
  373. package/dist/hooks/mnemosyne/writer.js +0 -126
  374. package/dist/hooks/mnemosyne/writer.js.map +0 -1
  375. package/dist/hooks/ralph-loop/index.d.ts +0 -116
  376. package/dist/hooks/ralph-loop/index.d.ts.map +0 -1
  377. package/dist/hooks/ralph-loop/index.js +0 -322
  378. package/dist/hooks/ralph-loop/index.js.map +0 -1
  379. package/dist/hooks/ralph-prd/index.d.ts +0 -130
  380. package/dist/hooks/ralph-prd/index.d.ts.map +0 -1
  381. package/dist/hooks/ralph-prd/index.js +0 -310
  382. package/dist/hooks/ralph-prd/index.js.map +0 -1
  383. package/dist/hooks/ralph-progress/index.d.ts +0 -102
  384. package/dist/hooks/ralph-progress/index.d.ts.map +0 -1
  385. package/dist/hooks/ralph-progress/index.js +0 -408
  386. package/dist/hooks/ralph-progress/index.js.map +0 -1
  387. package/dist/hooks/ralph-verifier/index.d.ts +0 -72
  388. package/dist/hooks/ralph-verifier/index.d.ts.map +0 -1
  389. package/dist/hooks/ralph-verifier/index.js +0 -223
  390. package/dist/hooks/ralph-verifier/index.js.map +0 -1
  391. package/dist/hooks/session-recovery/constants.d.ts +0 -56
  392. package/dist/hooks/session-recovery/constants.d.ts.map +0 -1
  393. package/dist/hooks/session-recovery/constants.js +0 -78
  394. package/dist/hooks/session-recovery/constants.js.map +0 -1
  395. package/dist/hooks/session-recovery/index.d.ts +0 -53
  396. package/dist/hooks/session-recovery/index.d.ts.map +0 -1
  397. package/dist/hooks/session-recovery/index.js +0 -321
  398. package/dist/hooks/session-recovery/index.js.map +0 -1
  399. package/dist/hooks/session-recovery/storage.d.ts +0 -76
  400. package/dist/hooks/session-recovery/storage.d.ts.map +0 -1
  401. package/dist/hooks/session-recovery/storage.js +0 -383
  402. package/dist/hooks/session-recovery/storage.js.map +0 -1
  403. package/dist/hooks/session-recovery/types.d.ts +0 -145
  404. package/dist/hooks/session-recovery/types.d.ts.map +0 -1
  405. package/dist/hooks/session-recovery/types.js +0 -8
  406. package/dist/hooks/session-recovery/types.js.map +0 -1
  407. package/dist/hooks/sisyphus-orchestrator/constants.d.ts +0 -23
  408. package/dist/hooks/sisyphus-orchestrator/constants.d.ts.map +0 -1
  409. package/dist/hooks/sisyphus-orchestrator/constants.js +0 -142
  410. package/dist/hooks/sisyphus-orchestrator/constants.js.map +0 -1
  411. package/dist/hooks/sisyphus-orchestrator/index.d.ts +0 -113
  412. package/dist/hooks/sisyphus-orchestrator/index.d.ts.map +0 -1
  413. package/dist/hooks/sisyphus-orchestrator/index.js +0 -309
  414. package/dist/hooks/sisyphus-orchestrator/index.js.map +0 -1
  415. package/dist/hooks/ultraqa-loop/index.d.ts +0 -94
  416. package/dist/hooks/ultraqa-loop/index.d.ts.map +0 -1
  417. package/dist/hooks/ultraqa-loop/index.js +0 -216
  418. package/dist/hooks/ultraqa-loop/index.js.map +0 -1
  419. package/dist/hooks/ultrawork-state/index.d.ts +0 -62
  420. package/dist/hooks/ultrawork-state/index.d.ts.map +0 -1
  421. package/dist/hooks/ultrawork-state/index.js +0 -208
  422. package/dist/hooks/ultrawork-state/index.js.map +0 -1
  423. package/dist/hud/sisyphus-state.d.ts +0 -31
  424. package/dist/hud/sisyphus-state.d.ts.map +0 -1
  425. package/dist/hud/sisyphus-state.js +0 -163
  426. package/dist/hud/sisyphus-state.js.map +0 -1
  427. package/scripts/github-webhook-server.ts +0 -141
@@ -1,130 +0,0 @@
1
- /**
2
- * Ralph PRD (Product Requirements Document) Support
3
- *
4
- * Implements structured task tracking using prd.json format from the original Ralph.
5
- * Each user story has:
6
- * - id: Unique identifier (e.g., "US-001")
7
- * - title: Short description
8
- * - description: User story format
9
- * - acceptanceCriteria: List of criteria to pass
10
- * - priority: Execution order (1 = highest)
11
- * - passes: Boolean indicating completion
12
- * - notes: Optional notes from implementation
13
- */
14
- export interface UserStory {
15
- /** Unique identifier (e.g., "US-001") */
16
- id: string;
17
- /** Short title for the story */
18
- title: string;
19
- /** Full user story description */
20
- description: string;
21
- /** List of acceptance criteria that must be met */
22
- acceptanceCriteria: string[];
23
- /** Execution priority (1 = highest) */
24
- priority: number;
25
- /** Whether this story passes (complete and verified) */
26
- passes: boolean;
27
- /** Optional notes from implementation */
28
- notes?: string;
29
- }
30
- export interface PRD {
31
- /** Project name */
32
- project: string;
33
- /** Git branch name for this work */
34
- branchName: string;
35
- /** Overall description of the feature/task */
36
- description: string;
37
- /** List of user stories */
38
- userStories: UserStory[];
39
- }
40
- export interface PRDStatus {
41
- /** Total number of stories */
42
- total: number;
43
- /** Number of completed (passes: true) stories */
44
- completed: number;
45
- /** Number of pending (passes: false) stories */
46
- pending: number;
47
- /** Whether all stories are complete */
48
- allComplete: boolean;
49
- /** The highest priority incomplete story, if any */
50
- nextStory: UserStory | null;
51
- /** List of incomplete story IDs */
52
- incompleteIds: string[];
53
- }
54
- export declare const PRD_FILENAME = "prd.json";
55
- export declare const PRD_EXAMPLE_FILENAME = "prd.example.json";
56
- /**
57
- * Get the path to the prd.json file in a directory
58
- */
59
- export declare function getPrdPath(directory: string): string;
60
- /**
61
- * Get the path to the prd.json in .omc subdirectory
62
- */
63
- export declare function getOmcPrdPath(directory: string): string;
64
- /**
65
- * Find prd.json in a directory (checks both root and .omc)
66
- */
67
- export declare function findPrdPath(directory: string): string | null;
68
- /**
69
- * Read PRD from disk
70
- */
71
- export declare function readPrd(directory: string): PRD | null;
72
- /**
73
- * Write PRD to disk
74
- */
75
- export declare function writePrd(directory: string, prd: PRD): boolean;
76
- /**
77
- * Get the status of a PRD
78
- */
79
- export declare function getPrdStatus(prd: PRD): PRDStatus;
80
- /**
81
- * Mark a story as complete (passes: true)
82
- */
83
- export declare function markStoryComplete(directory: string, storyId: string, notes?: string): boolean;
84
- /**
85
- * Mark a story as incomplete (passes: false)
86
- */
87
- export declare function markStoryIncomplete(directory: string, storyId: string, notes?: string): boolean;
88
- /**
89
- * Get a specific story by ID
90
- */
91
- export declare function getStory(directory: string, storyId: string): UserStory | null;
92
- /**
93
- * Get the next incomplete story (highest priority)
94
- */
95
- export declare function getNextStory(directory: string): UserStory | null;
96
- /**
97
- * Input type for creating user stories (priority is optional)
98
- */
99
- export type UserStoryInput = Omit<UserStory, 'passes' | 'priority'> & {
100
- priority?: number;
101
- };
102
- /**
103
- * Create a new PRD with user stories from a task description
104
- */
105
- export declare function createPrd(project: string, branchName: string, description: string, stories: UserStoryInput[]): PRD;
106
- /**
107
- * Create a simple PRD from a task description (single story)
108
- */
109
- export declare function createSimplePrd(project: string, branchName: string, taskDescription: string): PRD;
110
- /**
111
- * Initialize a PRD in a directory
112
- */
113
- export declare function initPrd(directory: string, project: string, branchName: string, description: string, stories?: UserStoryInput[]): boolean;
114
- /**
115
- * Format PRD status as a string for display
116
- */
117
- export declare function formatPrdStatus(status: PRDStatus): string;
118
- /**
119
- * Format a story for display
120
- */
121
- export declare function formatStory(story: UserStory): string;
122
- /**
123
- * Format entire PRD for display
124
- */
125
- export declare function formatPrd(prd: PRD): string;
126
- /**
127
- * Format next story prompt for injection into ralph
128
- */
129
- export declare function formatNextStoryPrompt(story: UserStory): string;
130
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/ralph-prd/index.ts"],"names":[],"mappings":"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"}
@@ -1,310 +0,0 @@
1
- /**
2
- * Ralph PRD (Product Requirements Document) Support
3
- *
4
- * Implements structured task tracking using prd.json format from the original Ralph.
5
- * Each user story has:
6
- * - id: Unique identifier (e.g., "US-001")
7
- * - title: Short description
8
- * - description: User story format
9
- * - acceptanceCriteria: List of criteria to pass
10
- * - priority: Execution order (1 = highest)
11
- * - passes: Boolean indicating completion
12
- * - notes: Optional notes from implementation
13
- */
14
- import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'fs';
15
- import { join } from 'path';
16
- // ============================================================================
17
- // Constants
18
- // ============================================================================
19
- export const PRD_FILENAME = 'prd.json';
20
- export const PRD_EXAMPLE_FILENAME = 'prd.example.json';
21
- // ============================================================================
22
- // File Operations
23
- // ============================================================================
24
- /**
25
- * Get the path to the prd.json file in a directory
26
- */
27
- export function getPrdPath(directory) {
28
- return join(directory, PRD_FILENAME);
29
- }
30
- /**
31
- * Get the path to the prd.json in .omc subdirectory
32
- */
33
- export function getOmcPrdPath(directory) {
34
- return join(directory, '.omc', PRD_FILENAME);
35
- }
36
- /**
37
- * Find prd.json in a directory (checks both root and .omc)
38
- */
39
- export function findPrdPath(directory) {
40
- const rootPath = getPrdPath(directory);
41
- if (existsSync(rootPath)) {
42
- return rootPath;
43
- }
44
- const omcPath = getOmcPrdPath(directory);
45
- if (existsSync(omcPath)) {
46
- return omcPath;
47
- }
48
- return null;
49
- }
50
- /**
51
- * Read PRD from disk
52
- */
53
- export function readPrd(directory) {
54
- const prdPath = findPrdPath(directory);
55
- if (!prdPath) {
56
- return null;
57
- }
58
- try {
59
- const content = readFileSync(prdPath, 'utf-8');
60
- const prd = JSON.parse(content);
61
- // Validate structure
62
- if (!prd.userStories || !Array.isArray(prd.userStories)) {
63
- return null;
64
- }
65
- return prd;
66
- }
67
- catch {
68
- return null;
69
- }
70
- }
71
- /**
72
- * Write PRD to disk
73
- */
74
- export function writePrd(directory, prd) {
75
- // Prefer writing to existing location, or .omc by default
76
- let prdPath = findPrdPath(directory);
77
- if (!prdPath) {
78
- const omcDir = join(directory, '.omc');
79
- if (!existsSync(omcDir)) {
80
- try {
81
- mkdirSync(omcDir, { recursive: true });
82
- }
83
- catch {
84
- return false;
85
- }
86
- }
87
- prdPath = getOmcPrdPath(directory);
88
- }
89
- try {
90
- writeFileSync(prdPath, JSON.stringify(prd, null, 2));
91
- return true;
92
- }
93
- catch {
94
- return false;
95
- }
96
- }
97
- // ============================================================================
98
- // PRD Status & Operations
99
- // ============================================================================
100
- /**
101
- * Get the status of a PRD
102
- */
103
- export function getPrdStatus(prd) {
104
- const stories = prd.userStories;
105
- const completed = stories.filter(s => s.passes);
106
- const pending = stories.filter(s => !s.passes);
107
- // Sort pending by priority to find next story
108
- const sortedPending = [...pending].sort((a, b) => a.priority - b.priority);
109
- return {
110
- total: stories.length,
111
- completed: completed.length,
112
- pending: pending.length,
113
- allComplete: pending.length === 0,
114
- nextStory: sortedPending[0] || null,
115
- incompleteIds: pending.map(s => s.id)
116
- };
117
- }
118
- /**
119
- * Mark a story as complete (passes: true)
120
- */
121
- export function markStoryComplete(directory, storyId, notes) {
122
- const prd = readPrd(directory);
123
- if (!prd) {
124
- return false;
125
- }
126
- const story = prd.userStories.find(s => s.id === storyId);
127
- if (!story) {
128
- return false;
129
- }
130
- story.passes = true;
131
- if (notes) {
132
- story.notes = notes;
133
- }
134
- return writePrd(directory, prd);
135
- }
136
- /**
137
- * Mark a story as incomplete (passes: false)
138
- */
139
- export function markStoryIncomplete(directory, storyId, notes) {
140
- const prd = readPrd(directory);
141
- if (!prd) {
142
- return false;
143
- }
144
- const story = prd.userStories.find(s => s.id === storyId);
145
- if (!story) {
146
- return false;
147
- }
148
- story.passes = false;
149
- if (notes) {
150
- story.notes = notes;
151
- }
152
- return writePrd(directory, prd);
153
- }
154
- /**
155
- * Get a specific story by ID
156
- */
157
- export function getStory(directory, storyId) {
158
- const prd = readPrd(directory);
159
- if (!prd) {
160
- return null;
161
- }
162
- return prd.userStories.find(s => s.id === storyId) || null;
163
- }
164
- /**
165
- * Get the next incomplete story (highest priority)
166
- */
167
- export function getNextStory(directory) {
168
- const prd = readPrd(directory);
169
- if (!prd) {
170
- return null;
171
- }
172
- const status = getPrdStatus(prd);
173
- return status.nextStory;
174
- }
175
- /**
176
- * Create a new PRD with user stories from a task description
177
- */
178
- export function createPrd(project, branchName, description, stories) {
179
- return {
180
- project,
181
- branchName,
182
- description,
183
- userStories: stories.map((s, index) => ({
184
- ...s,
185
- priority: s.priority ?? index + 1,
186
- passes: false
187
- }))
188
- };
189
- }
190
- /**
191
- * Create a simple PRD from a task description (single story)
192
- */
193
- export function createSimplePrd(project, branchName, taskDescription) {
194
- return createPrd(project, branchName, taskDescription, [
195
- {
196
- id: 'US-001',
197
- title: taskDescription.slice(0, 50) + (taskDescription.length > 50 ? '...' : ''),
198
- description: taskDescription,
199
- acceptanceCriteria: [
200
- 'Implementation is complete',
201
- 'Code compiles/runs without errors',
202
- 'Tests pass (if applicable)',
203
- 'Changes are committed'
204
- ],
205
- priority: 1
206
- }
207
- ]);
208
- }
209
- /**
210
- * Initialize a PRD in a directory
211
- */
212
- export function initPrd(directory, project, branchName, description, stories) {
213
- const prd = stories
214
- ? createPrd(project, branchName, description, stories)
215
- : createSimplePrd(project, branchName, description);
216
- return writePrd(directory, prd);
217
- }
218
- // ============================================================================
219
- // PRD Formatting
220
- // ============================================================================
221
- /**
222
- * Format PRD status as a string for display
223
- */
224
- export function formatPrdStatus(status) {
225
- const lines = [];
226
- lines.push(`[PRD Status: ${status.completed}/${status.total} stories complete]`);
227
- if (status.allComplete) {
228
- lines.push('All stories are COMPLETE!');
229
- }
230
- else {
231
- lines.push(`Remaining: ${status.incompleteIds.join(', ')}`);
232
- if (status.nextStory) {
233
- lines.push(`Next story: ${status.nextStory.id} - ${status.nextStory.title}`);
234
- }
235
- }
236
- return lines.join('\n');
237
- }
238
- /**
239
- * Format a story for display
240
- */
241
- export function formatStory(story) {
242
- const lines = [];
243
- lines.push(`## ${story.id}: ${story.title}`);
244
- lines.push(`Status: ${story.passes ? 'COMPLETE' : 'PENDING'}`);
245
- lines.push(`Priority: ${story.priority}`);
246
- lines.push('');
247
- lines.push(story.description);
248
- lines.push('');
249
- lines.push('**Acceptance Criteria:**');
250
- story.acceptanceCriteria.forEach((c, i) => {
251
- lines.push(`${i + 1}. ${c}`);
252
- });
253
- if (story.notes) {
254
- lines.push('');
255
- lines.push(`**Notes:** ${story.notes}`);
256
- }
257
- return lines.join('\n');
258
- }
259
- /**
260
- * Format entire PRD for display
261
- */
262
- export function formatPrd(prd) {
263
- const lines = [];
264
- const status = getPrdStatus(prd);
265
- lines.push(`# ${prd.project}`);
266
- lines.push(`Branch: ${prd.branchName}`);
267
- lines.push('');
268
- lines.push(prd.description);
269
- lines.push('');
270
- lines.push(formatPrdStatus(status));
271
- lines.push('');
272
- lines.push('---');
273
- lines.push('');
274
- // Sort by priority for display
275
- const sortedStories = [...prd.userStories].sort((a, b) => a.priority - b.priority);
276
- for (const story of sortedStories) {
277
- lines.push(formatStory(story));
278
- lines.push('');
279
- lines.push('---');
280
- lines.push('');
281
- }
282
- return lines.join('\n');
283
- }
284
- /**
285
- * Format next story prompt for injection into ralph
286
- */
287
- export function formatNextStoryPrompt(story) {
288
- return `<current-story>
289
-
290
- ## Current Story: ${story.id} - ${story.title}
291
-
292
- ${story.description}
293
-
294
- **Acceptance Criteria:**
295
- ${story.acceptanceCriteria.map((c, i) => `${i + 1}. ${c}`).join('\n')}
296
-
297
- **Instructions:**
298
- 1. Implement this story completely
299
- 2. Verify ALL acceptance criteria are met
300
- 3. Run quality checks (tests, typecheck, lint)
301
- 4. When complete, mark story as passes: true in prd.json
302
- 5. If ALL stories are done, output: <promise>DONE</promise>
303
-
304
- </current-story>
305
-
306
- ---
307
-
308
- `;
309
- }
310
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/hooks/ralph-prd/index.ts"],"names":[],"mappings":"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"}
@@ -1,102 +0,0 @@
1
- /**
2
- * Ralph Progress Log Support
3
- *
4
- * Implements append-only progress tracking using progress.txt format from original Ralph.
5
- * This provides memory persistence between ralph iterations.
6
- *
7
- * Structure:
8
- * - Codebase Patterns section at top (consolidated learnings)
9
- * - Per-story progress entries appended
10
- * - Learnings captured for future iterations
11
- */
12
- export interface ProgressEntry {
13
- /** ISO timestamp */
14
- timestamp: string;
15
- /** Story ID (e.g., "US-001") */
16
- storyId: string;
17
- /** What was implemented */
18
- implementation: string[];
19
- /** Files changed */
20
- filesChanged: string[];
21
- /** Learnings for future iterations */
22
- learnings: string[];
23
- }
24
- export interface CodebasePattern {
25
- /** The pattern description */
26
- pattern: string;
27
- /** When it was discovered */
28
- discoveredAt?: string;
29
- }
30
- export interface ProgressLog {
31
- /** Consolidated codebase patterns at top */
32
- patterns: CodebasePattern[];
33
- /** Progress entries (append-only) */
34
- entries: ProgressEntry[];
35
- /** When the log was started */
36
- startedAt: string;
37
- }
38
- export declare const PROGRESS_FILENAME = "progress.txt";
39
- export declare const PATTERNS_HEADER = "## Codebase Patterns";
40
- export declare const ENTRY_SEPARATOR = "---";
41
- /**
42
- * Get the path to progress.txt in a directory
43
- */
44
- export declare function getProgressPath(directory: string): string;
45
- /**
46
- * Get the path to progress.txt in .omc subdirectory
47
- */
48
- export declare function getOmcProgressPath(directory: string): string;
49
- /**
50
- * Find progress.txt in a directory (checks both root and .omc)
51
- */
52
- export declare function findProgressPath(directory: string): string | null;
53
- /**
54
- * Read raw progress.txt content
55
- */
56
- export declare function readProgressRaw(directory: string): string | null;
57
- /**
58
- * Parse progress.txt content into structured format
59
- */
60
- export declare function parseProgress(content: string): ProgressLog;
61
- /**
62
- * Read and parse progress.txt
63
- */
64
- export declare function readProgress(directory: string): ProgressLog | null;
65
- /**
66
- * Initialize a new progress.txt file
67
- */
68
- export declare function initProgress(directory: string): boolean;
69
- /**
70
- * Append a progress entry
71
- */
72
- export declare function appendProgress(directory: string, entry: Omit<ProgressEntry, 'timestamp'>): boolean;
73
- /**
74
- * Add a codebase pattern to the patterns section
75
- * @param retryCount - Internal retry counter to prevent infinite recursion
76
- */
77
- export declare function addPattern(directory: string, pattern: string, retryCount?: number): boolean;
78
- /**
79
- * Get patterns from progress.txt for injection into context
80
- */
81
- export declare function getPatterns(directory: string): string[];
82
- /**
83
- * Get recent learnings for context injection
84
- */
85
- export declare function getRecentLearnings(directory: string, limit?: number): string[];
86
- /**
87
- * Format patterns for context injection
88
- */
89
- export declare function formatPatternsForContext(directory: string): string;
90
- /**
91
- * Format recent progress for context injection
92
- */
93
- export declare function formatProgressForContext(directory: string, limit?: number): string;
94
- /**
95
- * Format learnings for context injection
96
- */
97
- export declare function formatLearningsForContext(directory: string): string;
98
- /**
99
- * Get full context injection for ralph
100
- */
101
- export declare function getProgressContext(directory: string): string;
102
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/hooks/ralph-progress/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AASH,MAAM,WAAW,aAAa;IAC5B,oBAAoB;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,gCAAgC;IAChC,OAAO,EAAE,MAAM,CAAC;IAChB,2BAA2B;IAC3B,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,oBAAoB;IACpB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,sCAAsC;IACtC,SAAS,EAAE,MAAM,EAAE,CAAC;CACrB;AAED,MAAM,WAAW,eAAe;IAC9B,8BAA8B;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,6BAA6B;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,WAAW;IAC1B,4CAA4C;IAC5C,QAAQ,EAAE,eAAe,EAAE,CAAC;IAC5B,qCAAqC;IACrC,OAAO,EAAE,aAAa,EAAE,CAAC;IACzB,+BAA+B;IAC/B,SAAS,EAAE,MAAM,CAAC;CACnB;AAMD,eAAO,MAAM,iBAAiB,iBAAiB,CAAC;AAChD,eAAO,MAAM,eAAe,yBAAyB,CAAC;AACtD,eAAO,MAAM,eAAe,QAAQ,CAAC;AAMrC;;GAEG;AACH,wBAAgB,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAEzD;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAE5D;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAYjE;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAWhE;AAED;;GAEG;AACH,wBAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,WAAW,CA+F1D;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,SAAS,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI,CAOlE;AAMD;;GAEG;AACH,wBAAgB,YAAY,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CA6BvD;AAED;;GAEG;AACH,wBAAgB,cAAc,CAC5B,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,IAAI,CAAC,aAAa,EAAE,WAAW,CAAC,GACtC,OAAO,CAsDT;AAED;;;GAGG;AACH,wBAAgB,UAAU,CAAC,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,GAAE,MAAU,GAAG,OAAO,CA4C9F;AAED;;GAEG;AACH,wBAAgB,WAAW,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,EAAE,CAOvD;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,MAAM,EAAE,CAcjF;AAMD;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAuBlE;AAED;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,SAAS,EAAE,MAAM,EAAE,KAAK,GAAE,MAAU,GAAG,MAAM,CA6BrF;AAED;;GAEG;AACH,wBAAgB,yBAAyB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAyBnE;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAU5D"}