groove-dev 0.27.93 → 0.27.96

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 (511) hide show
  1. package/CLAUDE.md +7 -0
  2. package/README.md +25 -52
  3. package/moe-training/package.json +2 -1
  4. package/node_modules/@groove-dev/cli/package.json +1 -1
  5. package/node_modules/@groove-dev/daemon/package.json +1 -1
  6. package/node_modules/@groove-dev/daemon/src/api.js +39 -23
  7. package/node_modules/@groove-dev/daemon/src/introducer.js +21 -6
  8. package/node_modules/@groove-dev/daemon/src/process.js +20 -2
  9. package/node_modules/@groove-dev/daemon/src/providers/gemini.js +27 -28
  10. package/node_modules/@groove-dev/gui/dist/assets/{index-VB4_k5Pz.js → index-BgTyFy4f.js} +331 -331
  11. package/node_modules/@groove-dev/gui/dist/assets/{index-Bo6AeNmM.css → index-QADLyUj5.css} +1 -1
  12. package/node_modules/@groove-dev/gui/dist/index.html +2 -2
  13. package/node_modules/@groove-dev/gui/package.json +1 -1
  14. package/node_modules/@groove-dev/gui/src/components/agents/agent-file-tree.jsx +68 -16
  15. package/node_modules/@groove-dev/gui/src/components/agents/agent-panel.jsx +2 -0
  16. package/node_modules/@groove-dev/gui/src/components/agents/code-review.jsx +9 -1
  17. package/node_modules/@groove-dev/gui/src/components/agents/workspace-mode.jsx +2 -2
  18. package/node_modules/@groove-dev/gui/src/components/editor/code-editor.jsx +1 -1
  19. package/node_modules/@groove-dev/gui/src/stores/groove.js +40 -26
  20. package/node_modules/@groove-dev/gui/src/views/agents.jsx +14 -65
  21. package/node_modules/base64-js/LICENSE +21 -0
  22. package/node_modules/base64-js/README.md +34 -0
  23. package/node_modules/base64-js/base64js.min.js +1 -0
  24. package/node_modules/base64-js/index.d.ts +3 -0
  25. package/node_modules/base64-js/index.js +150 -0
  26. package/node_modules/base64-js/package.json +47 -0
  27. package/node_modules/better-sqlite3/LICENSE +21 -0
  28. package/node_modules/better-sqlite3/README.md +99 -0
  29. package/node_modules/better-sqlite3/binding.gyp +38 -0
  30. package/node_modules/better-sqlite3/deps/common.gypi +68 -0
  31. package/node_modules/better-sqlite3/deps/copy.js +31 -0
  32. package/node_modules/better-sqlite3/deps/defines.gypi +41 -0
  33. package/node_modules/better-sqlite3/deps/download.sh +122 -0
  34. package/node_modules/better-sqlite3/deps/patches/1208.patch +15 -0
  35. package/node_modules/better-sqlite3/deps/sqlite3/sqlite3.c +268845 -0
  36. package/node_modules/better-sqlite3/deps/sqlite3/sqlite3.h +14335 -0
  37. package/node_modules/better-sqlite3/deps/sqlite3/sqlite3ext.h +739 -0
  38. package/node_modules/better-sqlite3/deps/sqlite3.gyp +80 -0
  39. package/node_modules/better-sqlite3/deps/test_extension.c +21 -0
  40. package/node_modules/better-sqlite3/lib/database.js +90 -0
  41. package/node_modules/better-sqlite3/lib/index.js +3 -0
  42. package/node_modules/better-sqlite3/lib/methods/aggregate.js +43 -0
  43. package/node_modules/better-sqlite3/lib/methods/backup.js +67 -0
  44. package/node_modules/better-sqlite3/lib/methods/function.js +31 -0
  45. package/node_modules/better-sqlite3/lib/methods/inspect.js +7 -0
  46. package/node_modules/better-sqlite3/lib/methods/pragma.js +12 -0
  47. package/node_modules/better-sqlite3/lib/methods/serialize.js +16 -0
  48. package/node_modules/better-sqlite3/lib/methods/table.js +189 -0
  49. package/node_modules/better-sqlite3/lib/methods/transaction.js +78 -0
  50. package/node_modules/better-sqlite3/lib/methods/wrappers.js +54 -0
  51. package/node_modules/better-sqlite3/lib/sqlite-error.js +20 -0
  52. package/node_modules/better-sqlite3/lib/util.js +12 -0
  53. package/node_modules/better-sqlite3/package.json +59 -0
  54. package/node_modules/better-sqlite3/src/addon.cpp +47 -0
  55. package/node_modules/better-sqlite3/src/better_sqlite3.cpp +74 -0
  56. package/node_modules/better-sqlite3/src/objects/backup.cpp +120 -0
  57. package/node_modules/better-sqlite3/src/objects/backup.hpp +36 -0
  58. package/node_modules/better-sqlite3/src/objects/database.cpp +417 -0
  59. package/node_modules/better-sqlite3/src/objects/database.hpp +103 -0
  60. package/node_modules/better-sqlite3/src/objects/statement-iterator.cpp +113 -0
  61. package/node_modules/better-sqlite3/src/objects/statement-iterator.hpp +50 -0
  62. package/node_modules/better-sqlite3/src/objects/statement.cpp +383 -0
  63. package/node_modules/better-sqlite3/src/objects/statement.hpp +58 -0
  64. package/node_modules/better-sqlite3/src/util/bind-map.cpp +73 -0
  65. package/node_modules/better-sqlite3/src/util/binder.cpp +193 -0
  66. package/node_modules/better-sqlite3/src/util/constants.cpp +172 -0
  67. package/node_modules/better-sqlite3/src/util/custom-aggregate.cpp +121 -0
  68. package/node_modules/better-sqlite3/src/util/custom-function.cpp +59 -0
  69. package/node_modules/better-sqlite3/src/util/custom-table.cpp +409 -0
  70. package/node_modules/better-sqlite3/src/util/data-converter.cpp +17 -0
  71. package/node_modules/better-sqlite3/src/util/data.cpp +194 -0
  72. package/node_modules/better-sqlite3/src/util/helpers.cpp +109 -0
  73. package/node_modules/better-sqlite3/src/util/macros.cpp +83 -0
  74. package/node_modules/better-sqlite3/src/util/query-macros.cpp +71 -0
  75. package/node_modules/better-sqlite3/src/util/row-builder.cpp +49 -0
  76. package/node_modules/bindings/LICENSE.md +22 -0
  77. package/node_modules/bindings/README.md +98 -0
  78. package/node_modules/bindings/bindings.js +221 -0
  79. package/node_modules/bindings/package.json +28 -0
  80. package/node_modules/bl/.travis.yml +17 -0
  81. package/node_modules/bl/BufferList.js +396 -0
  82. package/node_modules/bl/LICENSE.md +13 -0
  83. package/node_modules/bl/README.md +247 -0
  84. package/node_modules/bl/bl.js +84 -0
  85. package/node_modules/bl/package.json +37 -0
  86. package/node_modules/bl/test/convert.js +21 -0
  87. package/node_modules/bl/test/indexOf.js +492 -0
  88. package/node_modules/bl/test/isBufferList.js +32 -0
  89. package/node_modules/bl/test/test.js +869 -0
  90. package/node_modules/buffer/AUTHORS.md +70 -0
  91. package/node_modules/buffer/LICENSE +21 -0
  92. package/node_modules/buffer/README.md +410 -0
  93. package/node_modules/buffer/index.d.ts +186 -0
  94. package/node_modules/buffer/index.js +1817 -0
  95. package/node_modules/buffer/package.json +96 -0
  96. package/node_modules/decompress-response/index.d.ts +22 -0
  97. package/node_modules/decompress-response/index.js +58 -0
  98. package/node_modules/decompress-response/license +9 -0
  99. package/node_modules/decompress-response/node_modules/mimic-response/index.d.ts +17 -0
  100. package/node_modules/decompress-response/node_modules/mimic-response/index.js +77 -0
  101. package/node_modules/decompress-response/node_modules/mimic-response/license +9 -0
  102. package/node_modules/decompress-response/node_modules/mimic-response/package.json +42 -0
  103. package/node_modules/decompress-response/node_modules/mimic-response/readme.md +78 -0
  104. package/node_modules/decompress-response/package.json +56 -0
  105. package/node_modules/decompress-response/readme.md +48 -0
  106. package/node_modules/deep-extend/LICENSE +20 -0
  107. package/node_modules/deep-extend/README.md +91 -0
  108. package/node_modules/deep-extend/index.js +1 -0
  109. package/node_modules/deep-extend/lib/deep-extend.js +150 -0
  110. package/node_modules/deep-extend/package.json +62 -0
  111. package/node_modules/end-of-stream/LICENSE +21 -0
  112. package/node_modules/end-of-stream/README.md +54 -0
  113. package/node_modules/end-of-stream/index.js +96 -0
  114. package/node_modules/end-of-stream/package.json +37 -0
  115. package/node_modules/expand-template/.travis.yml +6 -0
  116. package/node_modules/expand-template/LICENSE +21 -0
  117. package/node_modules/expand-template/README.md +43 -0
  118. package/node_modules/expand-template/index.js +26 -0
  119. package/node_modules/expand-template/package.json +29 -0
  120. package/node_modules/expand-template/test.js +67 -0
  121. package/node_modules/file-uri-to-path/.npmignore +1 -0
  122. package/node_modules/file-uri-to-path/.travis.yml +30 -0
  123. package/node_modules/file-uri-to-path/History.md +21 -0
  124. package/node_modules/file-uri-to-path/LICENSE +20 -0
  125. package/node_modules/file-uri-to-path/README.md +74 -0
  126. package/node_modules/file-uri-to-path/index.d.ts +2 -0
  127. package/node_modules/file-uri-to-path/index.js +66 -0
  128. package/node_modules/file-uri-to-path/package.json +32 -0
  129. package/node_modules/file-uri-to-path/test/test.js +24 -0
  130. package/node_modules/file-uri-to-path/test/tests.json +13 -0
  131. package/node_modules/fs-constants/LICENSE +21 -0
  132. package/node_modules/fs-constants/README.md +26 -0
  133. package/node_modules/fs-constants/browser.js +1 -0
  134. package/node_modules/fs-constants/index.js +1 -0
  135. package/node_modules/fs-constants/package.json +19 -0
  136. package/node_modules/github-from-package/.travis.yml +4 -0
  137. package/node_modules/github-from-package/LICENSE +18 -0
  138. package/node_modules/github-from-package/example/package.json +8 -0
  139. package/node_modules/github-from-package/example/url.js +3 -0
  140. package/node_modules/github-from-package/index.js +17 -0
  141. package/node_modules/github-from-package/package.json +30 -0
  142. package/node_modules/github-from-package/readme.markdown +53 -0
  143. package/node_modules/github-from-package/test/a.json +8 -0
  144. package/node_modules/github-from-package/test/b.json +5 -0
  145. package/node_modules/github-from-package/test/c.json +5 -0
  146. package/node_modules/github-from-package/test/d.json +7 -0
  147. package/node_modules/github-from-package/test/e.json +5 -0
  148. package/node_modules/github-from-package/test/url.js +19 -0
  149. package/node_modules/ieee754/LICENSE +11 -0
  150. package/node_modules/ieee754/README.md +51 -0
  151. package/node_modules/ieee754/index.d.ts +10 -0
  152. package/node_modules/ieee754/index.js +85 -0
  153. package/node_modules/ieee754/package.json +52 -0
  154. package/node_modules/ini/LICENSE +15 -0
  155. package/node_modules/ini/README.md +102 -0
  156. package/node_modules/ini/ini.js +206 -0
  157. package/node_modules/ini/package.json +33 -0
  158. package/node_modules/minimist/.eslintrc +29 -0
  159. package/node_modules/minimist/.github/FUNDING.yml +12 -0
  160. package/node_modules/minimist/.nycrc +14 -0
  161. package/node_modules/minimist/CHANGELOG.md +298 -0
  162. package/node_modules/minimist/LICENSE +18 -0
  163. package/node_modules/minimist/README.md +121 -0
  164. package/node_modules/minimist/example/parse.js +4 -0
  165. package/node_modules/minimist/index.js +263 -0
  166. package/node_modules/minimist/package.json +75 -0
  167. package/node_modules/minimist/test/all_bool.js +34 -0
  168. package/node_modules/minimist/test/bool.js +177 -0
  169. package/node_modules/minimist/test/dash.js +43 -0
  170. package/node_modules/minimist/test/default_bool.js +37 -0
  171. package/node_modules/minimist/test/dotted.js +24 -0
  172. package/node_modules/minimist/test/kv_short.js +32 -0
  173. package/node_modules/minimist/test/long.js +33 -0
  174. package/node_modules/minimist/test/num.js +38 -0
  175. package/node_modules/minimist/test/parse.js +209 -0
  176. package/node_modules/minimist/test/parse_modified.js +11 -0
  177. package/node_modules/minimist/test/proto.js +64 -0
  178. package/node_modules/minimist/test/short.js +69 -0
  179. package/node_modules/minimist/test/stop_early.js +17 -0
  180. package/node_modules/minimist/test/unknown.js +104 -0
  181. package/node_modules/minimist/test/whitespace.js +10 -0
  182. package/node_modules/mkdirp-classic/LICENSE +21 -0
  183. package/node_modules/mkdirp-classic/README.md +18 -0
  184. package/node_modules/mkdirp-classic/index.js +98 -0
  185. package/node_modules/mkdirp-classic/package.json +18 -0
  186. package/node_modules/moe-training/DEPLOY_CENTRAL_COMMAND.md +413 -0
  187. package/node_modules/moe-training/client/consent.js +96 -0
  188. package/node_modules/moe-training/client/envelope-builder.js +56 -0
  189. package/node_modules/moe-training/client/index.js +10 -0
  190. package/node_modules/moe-training/client/parsers/claude-code.js +108 -0
  191. package/node_modules/moe-training/client/parsers/codex.js +80 -0
  192. package/node_modules/moe-training/client/parsers/gemini.js +80 -0
  193. package/node_modules/moe-training/client/parsers/grok.js +16 -0
  194. package/node_modules/moe-training/client/parsers/index.js +20 -0
  195. package/node_modules/moe-training/client/scrubber.js +128 -0
  196. package/node_modules/moe-training/client/session-attestation.js +115 -0
  197. package/node_modules/moe-training/client/step-classifier.js +68 -0
  198. package/node_modules/moe-training/client/trajectory-capture.js +307 -0
  199. package/node_modules/moe-training/client/transmission-queue.js +104 -0
  200. package/node_modules/moe-training/package.json +21 -0
  201. package/node_modules/moe-training/server/enrichment.js +24 -0
  202. package/node_modules/moe-training/server/index.js +119 -0
  203. package/node_modules/moe-training/server/ledger.js +110 -0
  204. package/node_modules/moe-training/server/routes/ingest.js +96 -0
  205. package/node_modules/moe-training/server/routes/sessions.js +43 -0
  206. package/node_modules/moe-training/server/routes/stats.js +31 -0
  207. package/node_modules/moe-training/server/scoring.js +63 -0
  208. package/node_modules/moe-training/server/session-registry.js +156 -0
  209. package/node_modules/moe-training/server/stats.js +129 -0
  210. package/node_modules/moe-training/server/stitcher.js +69 -0
  211. package/node_modules/moe-training/server/storage.js +147 -0
  212. package/node_modules/moe-training/server/verifier.js +102 -0
  213. package/node_modules/moe-training/shared/constants.js +30 -0
  214. package/node_modules/moe-training/shared/crypto.js +45 -0
  215. package/node_modules/moe-training/shared/envelope-schema.js +220 -0
  216. package/node_modules/moe-training/test/client/consent.test.js +121 -0
  217. package/node_modules/moe-training/test/client/envelope-builder.test.js +107 -0
  218. package/node_modules/moe-training/test/client/parsers/claude-code.test.js +119 -0
  219. package/node_modules/moe-training/test/client/parsers/codex.test.js +83 -0
  220. package/node_modules/moe-training/test/client/parsers/gemini.test.js +99 -0
  221. package/node_modules/moe-training/test/client/scrubber.test.js +143 -0
  222. package/node_modules/moe-training/test/client/session-attestation-security.test.js +95 -0
  223. package/node_modules/moe-training/test/client/step-classifier.test.js +135 -0
  224. package/node_modules/moe-training/test/client/transmission-queue.test.js +33 -0
  225. package/node_modules/moe-training/test/integration/handshake.test.js +260 -0
  226. package/node_modules/moe-training/test/server/ingest-security.test.js +166 -0
  227. package/node_modules/moe-training/test/server/ledger.test.js +131 -0
  228. package/node_modules/moe-training/test/server/scoring.test.js +242 -0
  229. package/node_modules/moe-training/test/server/session-registry.test.js +125 -0
  230. package/node_modules/moe-training/test/server/stitcher.test.js +157 -0
  231. package/node_modules/moe-training/test/server/verifier.test.js +232 -0
  232. package/node_modules/moe-training/test/shared/crypto.test.js +87 -0
  233. package/node_modules/moe-training/test/shared/envelope-schema.test.js +351 -0
  234. package/node_modules/napi-build-utils/.github/workflows/run-npm-tests.yml +31 -0
  235. package/node_modules/napi-build-utils/LICENSE +21 -0
  236. package/node_modules/napi-build-utils/README.md +52 -0
  237. package/node_modules/napi-build-utils/index.js +214 -0
  238. package/node_modules/napi-build-utils/index.md +0 -0
  239. package/node_modules/napi-build-utils/package.json +42 -0
  240. package/node_modules/prebuild-install/CHANGELOG.md +131 -0
  241. package/node_modules/prebuild-install/CONTRIBUTING.md +6 -0
  242. package/node_modules/prebuild-install/LICENSE +21 -0
  243. package/node_modules/prebuild-install/README.md +163 -0
  244. package/node_modules/prebuild-install/asset.js +44 -0
  245. package/node_modules/prebuild-install/bin.js +78 -0
  246. package/node_modules/prebuild-install/download.js +142 -0
  247. package/node_modules/prebuild-install/error.js +14 -0
  248. package/node_modules/prebuild-install/help.txt +16 -0
  249. package/node_modules/prebuild-install/index.js +1 -0
  250. package/node_modules/prebuild-install/log.js +33 -0
  251. package/node_modules/prebuild-install/node_modules/node-abi/LICENSE +21 -0
  252. package/node_modules/prebuild-install/node_modules/node-abi/README.md +54 -0
  253. package/node_modules/prebuild-install/node_modules/node-abi/abi_registry.json +439 -0
  254. package/node_modules/prebuild-install/node_modules/node-abi/index.js +179 -0
  255. package/node_modules/prebuild-install/node_modules/node-abi/package.json +45 -0
  256. package/node_modules/prebuild-install/node_modules/semver/LICENSE +15 -0
  257. package/node_modules/prebuild-install/node_modules/semver/README.md +665 -0
  258. package/node_modules/prebuild-install/node_modules/semver/bin/semver.js +191 -0
  259. package/node_modules/prebuild-install/node_modules/semver/classes/comparator.js +143 -0
  260. package/node_modules/prebuild-install/node_modules/semver/classes/index.js +7 -0
  261. package/node_modules/prebuild-install/node_modules/semver/classes/range.js +557 -0
  262. package/node_modules/prebuild-install/node_modules/semver/classes/semver.js +333 -0
  263. package/node_modules/prebuild-install/node_modules/semver/functions/clean.js +8 -0
  264. package/node_modules/prebuild-install/node_modules/semver/functions/cmp.js +54 -0
  265. package/node_modules/prebuild-install/node_modules/semver/functions/coerce.js +62 -0
  266. package/node_modules/prebuild-install/node_modules/semver/functions/compare-build.js +9 -0
  267. package/node_modules/prebuild-install/node_modules/semver/functions/compare-loose.js +5 -0
  268. package/node_modules/prebuild-install/node_modules/semver/functions/compare.js +7 -0
  269. package/node_modules/prebuild-install/node_modules/semver/functions/diff.js +60 -0
  270. package/node_modules/prebuild-install/node_modules/semver/functions/eq.js +5 -0
  271. package/node_modules/prebuild-install/node_modules/semver/functions/gt.js +5 -0
  272. package/node_modules/prebuild-install/node_modules/semver/functions/gte.js +5 -0
  273. package/node_modules/prebuild-install/node_modules/semver/functions/inc.js +21 -0
  274. package/node_modules/prebuild-install/node_modules/semver/functions/lt.js +5 -0
  275. package/node_modules/prebuild-install/node_modules/semver/functions/lte.js +5 -0
  276. package/node_modules/prebuild-install/node_modules/semver/functions/major.js +5 -0
  277. package/node_modules/prebuild-install/node_modules/semver/functions/minor.js +5 -0
  278. package/node_modules/prebuild-install/node_modules/semver/functions/neq.js +5 -0
  279. package/node_modules/prebuild-install/node_modules/semver/functions/parse.js +18 -0
  280. package/node_modules/prebuild-install/node_modules/semver/functions/patch.js +5 -0
  281. package/node_modules/prebuild-install/node_modules/semver/functions/prerelease.js +8 -0
  282. package/node_modules/prebuild-install/node_modules/semver/functions/rcompare.js +5 -0
  283. package/node_modules/prebuild-install/node_modules/semver/functions/rsort.js +5 -0
  284. package/node_modules/prebuild-install/node_modules/semver/functions/satisfies.js +12 -0
  285. package/node_modules/prebuild-install/node_modules/semver/functions/sort.js +5 -0
  286. package/node_modules/prebuild-install/node_modules/semver/functions/valid.js +8 -0
  287. package/node_modules/prebuild-install/node_modules/semver/index.js +91 -0
  288. package/node_modules/prebuild-install/node_modules/semver/internal/constants.js +37 -0
  289. package/node_modules/prebuild-install/node_modules/semver/internal/debug.js +11 -0
  290. package/node_modules/prebuild-install/node_modules/semver/internal/identifiers.js +29 -0
  291. package/node_modules/prebuild-install/node_modules/semver/internal/lrucache.js +42 -0
  292. package/node_modules/prebuild-install/node_modules/semver/internal/parse-options.js +17 -0
  293. package/node_modules/prebuild-install/node_modules/semver/internal/re.js +223 -0
  294. package/node_modules/prebuild-install/node_modules/semver/package.json +78 -0
  295. package/node_modules/prebuild-install/node_modules/semver/preload.js +4 -0
  296. package/node_modules/prebuild-install/node_modules/semver/range.bnf +16 -0
  297. package/node_modules/prebuild-install/node_modules/semver/ranges/gtr.js +6 -0
  298. package/node_modules/prebuild-install/node_modules/semver/ranges/intersects.js +9 -0
  299. package/node_modules/prebuild-install/node_modules/semver/ranges/ltr.js +6 -0
  300. package/node_modules/prebuild-install/node_modules/semver/ranges/max-satisfying.js +27 -0
  301. package/node_modules/prebuild-install/node_modules/semver/ranges/min-satisfying.js +26 -0
  302. package/node_modules/prebuild-install/node_modules/semver/ranges/min-version.js +63 -0
  303. package/node_modules/prebuild-install/node_modules/semver/ranges/outside.js +82 -0
  304. package/node_modules/prebuild-install/node_modules/semver/ranges/simplify.js +49 -0
  305. package/node_modules/prebuild-install/node_modules/semver/ranges/subset.js +249 -0
  306. package/node_modules/prebuild-install/node_modules/semver/ranges/to-comparators.js +10 -0
  307. package/node_modules/prebuild-install/node_modules/semver/ranges/valid.js +13 -0
  308. package/node_modules/prebuild-install/package.json +67 -0
  309. package/node_modules/prebuild-install/proxy.js +35 -0
  310. package/node_modules/prebuild-install/rc.js +64 -0
  311. package/node_modules/prebuild-install/util.js +143 -0
  312. package/node_modules/pump/.github/FUNDING.yml +2 -0
  313. package/node_modules/pump/.travis.yml +5 -0
  314. package/node_modules/pump/LICENSE +21 -0
  315. package/node_modules/pump/README.md +74 -0
  316. package/node_modules/pump/SECURITY.md +5 -0
  317. package/node_modules/pump/empty.js +1 -0
  318. package/node_modules/pump/index.js +86 -0
  319. package/node_modules/pump/package.json +30 -0
  320. package/node_modules/pump/test-browser.js +66 -0
  321. package/node_modules/pump/test-node.js +53 -0
  322. package/node_modules/rc/LICENSE.APACHE2 +15 -0
  323. package/node_modules/rc/LICENSE.BSD +26 -0
  324. package/node_modules/rc/LICENSE.MIT +24 -0
  325. package/node_modules/rc/README.md +227 -0
  326. package/node_modules/rc/browser.js +7 -0
  327. package/node_modules/rc/cli.js +4 -0
  328. package/node_modules/rc/index.js +53 -0
  329. package/node_modules/rc/lib/utils.js +104 -0
  330. package/node_modules/rc/package.json +29 -0
  331. package/node_modules/rc/test/ini.js +16 -0
  332. package/node_modules/rc/test/nested-env-vars.js +50 -0
  333. package/node_modules/rc/test/test.js +59 -0
  334. package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  335. package/node_modules/readable-stream/GOVERNANCE.md +136 -0
  336. package/node_modules/readable-stream/LICENSE +47 -0
  337. package/node_modules/readable-stream/README.md +106 -0
  338. package/node_modules/readable-stream/errors-browser.js +127 -0
  339. package/node_modules/readable-stream/errors.js +116 -0
  340. package/node_modules/readable-stream/experimentalWarning.js +17 -0
  341. package/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
  342. package/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
  343. package/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
  344. package/node_modules/readable-stream/lib/_stream_transform.js +190 -0
  345. package/node_modules/readable-stream/lib/_stream_writable.js +641 -0
  346. package/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
  347. package/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
  348. package/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
  349. package/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
  350. package/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
  351. package/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
  352. package/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
  353. package/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
  354. package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
  355. package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
  356. package/node_modules/readable-stream/package.json +68 -0
  357. package/node_modules/readable-stream/readable-browser.js +9 -0
  358. package/node_modules/readable-stream/readable.js +16 -0
  359. package/node_modules/simple-concat/.travis.yml +3 -0
  360. package/node_modules/simple-concat/LICENSE +20 -0
  361. package/node_modules/simple-concat/README.md +44 -0
  362. package/node_modules/simple-concat/index.js +15 -0
  363. package/node_modules/simple-concat/package.json +47 -0
  364. package/node_modules/simple-concat/test/basic.js +41 -0
  365. package/node_modules/simple-get/.github/dependabot.yml +15 -0
  366. package/node_modules/simple-get/.github/workflows/ci.yml +23 -0
  367. package/node_modules/simple-get/LICENSE +20 -0
  368. package/node_modules/simple-get/README.md +333 -0
  369. package/node_modules/simple-get/index.js +108 -0
  370. package/node_modules/simple-get/package.json +67 -0
  371. package/node_modules/string_decoder/LICENSE +48 -0
  372. package/node_modules/string_decoder/README.md +47 -0
  373. package/node_modules/string_decoder/lib/string_decoder.js +296 -0
  374. package/node_modules/string_decoder/package.json +34 -0
  375. package/node_modules/strip-json-comments/index.js +70 -0
  376. package/node_modules/strip-json-comments/license +21 -0
  377. package/node_modules/strip-json-comments/package.json +42 -0
  378. package/node_modules/strip-json-comments/readme.md +64 -0
  379. package/node_modules/tar-fs/.travis.yml +6 -0
  380. package/node_modules/tar-fs/LICENSE +21 -0
  381. package/node_modules/tar-fs/README.md +165 -0
  382. package/node_modules/tar-fs/index.js +363 -0
  383. package/node_modules/tar-fs/node_modules/chownr/LICENSE +15 -0
  384. package/node_modules/tar-fs/node_modules/chownr/README.md +3 -0
  385. package/node_modules/tar-fs/node_modules/chownr/chownr.js +167 -0
  386. package/node_modules/tar-fs/node_modules/chownr/package.json +29 -0
  387. package/node_modules/tar-fs/package.json +41 -0
  388. package/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
  389. package/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
  390. package/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
  391. package/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
  392. package/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
  393. package/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
  394. package/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
  395. package/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
  396. package/node_modules/tar-fs/test/fixtures/e/file +0 -0
  397. package/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
  398. package/node_modules/tar-fs/test/index.js +346 -0
  399. package/node_modules/tar-stream/LICENSE +21 -0
  400. package/node_modules/tar-stream/README.md +168 -0
  401. package/node_modules/tar-stream/extract.js +257 -0
  402. package/node_modules/tar-stream/headers.js +295 -0
  403. package/node_modules/tar-stream/index.js +2 -0
  404. package/node_modules/tar-stream/pack.js +255 -0
  405. package/node_modules/tar-stream/package.json +58 -0
  406. package/node_modules/tar-stream/sandbox.js +11 -0
  407. package/node_modules/tunnel-agent/LICENSE +55 -0
  408. package/node_modules/tunnel-agent/README.md +4 -0
  409. package/node_modules/tunnel-agent/index.js +244 -0
  410. package/node_modules/tunnel-agent/package.json +22 -0
  411. package/node_modules/util-deprecate/History.md +16 -0
  412. package/node_modules/util-deprecate/LICENSE +24 -0
  413. package/node_modules/util-deprecate/README.md +53 -0
  414. package/node_modules/util-deprecate/browser.js +67 -0
  415. package/node_modules/util-deprecate/node.js +6 -0
  416. package/node_modules/util-deprecate/package.json +27 -0
  417. package/node_modules/uuid/CHANGELOG.md +274 -0
  418. package/node_modules/uuid/CONTRIBUTING.md +18 -0
  419. package/node_modules/uuid/LICENSE.md +9 -0
  420. package/node_modules/uuid/README.md +466 -0
  421. package/node_modules/uuid/dist/bin/uuid +2 -0
  422. package/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
  423. package/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
  424. package/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
  425. package/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
  426. package/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
  427. package/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
  428. package/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
  429. package/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
  430. package/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
  431. package/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
  432. package/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
  433. package/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
  434. package/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
  435. package/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
  436. package/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
  437. package/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
  438. package/node_modules/uuid/dist/esm-browser/index.js +9 -0
  439. package/node_modules/uuid/dist/esm-browser/md5.js +215 -0
  440. package/node_modules/uuid/dist/esm-browser/native.js +4 -0
  441. package/node_modules/uuid/dist/esm-browser/nil.js +1 -0
  442. package/node_modules/uuid/dist/esm-browser/parse.js +35 -0
  443. package/node_modules/uuid/dist/esm-browser/regex.js +1 -0
  444. package/node_modules/uuid/dist/esm-browser/rng.js +18 -0
  445. package/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
  446. package/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
  447. package/node_modules/uuid/dist/esm-browser/v1.js +95 -0
  448. package/node_modules/uuid/dist/esm-browser/v3.js +4 -0
  449. package/node_modules/uuid/dist/esm-browser/v35.js +66 -0
  450. package/node_modules/uuid/dist/esm-browser/v4.js +29 -0
  451. package/node_modules/uuid/dist/esm-browser/v5.js +4 -0
  452. package/node_modules/uuid/dist/esm-browser/validate.js +7 -0
  453. package/node_modules/uuid/dist/esm-browser/version.js +11 -0
  454. package/node_modules/uuid/dist/esm-node/index.js +9 -0
  455. package/node_modules/uuid/dist/esm-node/md5.js +13 -0
  456. package/node_modules/uuid/dist/esm-node/native.js +4 -0
  457. package/node_modules/uuid/dist/esm-node/nil.js +1 -0
  458. package/node_modules/uuid/dist/esm-node/parse.js +35 -0
  459. package/node_modules/uuid/dist/esm-node/regex.js +1 -0
  460. package/node_modules/uuid/dist/esm-node/rng.js +12 -0
  461. package/node_modules/uuid/dist/esm-node/sha1.js +13 -0
  462. package/node_modules/uuid/dist/esm-node/stringify.js +33 -0
  463. package/node_modules/uuid/dist/esm-node/v1.js +95 -0
  464. package/node_modules/uuid/dist/esm-node/v3.js +4 -0
  465. package/node_modules/uuid/dist/esm-node/v35.js +66 -0
  466. package/node_modules/uuid/dist/esm-node/v4.js +29 -0
  467. package/node_modules/uuid/dist/esm-node/v5.js +4 -0
  468. package/node_modules/uuid/dist/esm-node/validate.js +7 -0
  469. package/node_modules/uuid/dist/esm-node/version.js +11 -0
  470. package/node_modules/uuid/dist/index.js +79 -0
  471. package/node_modules/uuid/dist/md5-browser.js +223 -0
  472. package/node_modules/uuid/dist/md5.js +23 -0
  473. package/node_modules/uuid/dist/native-browser.js +11 -0
  474. package/node_modules/uuid/dist/native.js +15 -0
  475. package/node_modules/uuid/dist/nil.js +8 -0
  476. package/node_modules/uuid/dist/parse.js +45 -0
  477. package/node_modules/uuid/dist/regex.js +8 -0
  478. package/node_modules/uuid/dist/rng-browser.js +25 -0
  479. package/node_modules/uuid/dist/rng.js +24 -0
  480. package/node_modules/uuid/dist/sha1-browser.js +104 -0
  481. package/node_modules/uuid/dist/sha1.js +23 -0
  482. package/node_modules/uuid/dist/stringify.js +44 -0
  483. package/node_modules/uuid/dist/uuid-bin.js +85 -0
  484. package/node_modules/uuid/dist/v1.js +107 -0
  485. package/node_modules/uuid/dist/v3.js +16 -0
  486. package/node_modules/uuid/dist/v35.js +80 -0
  487. package/node_modules/uuid/dist/v4.js +43 -0
  488. package/node_modules/uuid/dist/v5.js +16 -0
  489. package/node_modules/uuid/dist/validate.js +17 -0
  490. package/node_modules/uuid/dist/version.js +21 -0
  491. package/node_modules/uuid/package.json +135 -0
  492. package/node_modules/uuid/wrapper.mjs +10 -0
  493. package/package.json +5 -3
  494. package/packages/cli/package.json +1 -1
  495. package/packages/daemon/package.json +1 -1
  496. package/packages/daemon/src/api.js +39 -23
  497. package/packages/daemon/src/introducer.js +21 -6
  498. package/packages/daemon/src/process.js +20 -2
  499. package/packages/daemon/src/providers/gemini.js +27 -28
  500. package/packages/gui/dist/assets/{index-VB4_k5Pz.js → index-BgTyFy4f.js} +331 -331
  501. package/packages/gui/dist/assets/{index-Bo6AeNmM.css → index-QADLyUj5.css} +1 -1
  502. package/packages/gui/dist/index.html +2 -2
  503. package/packages/gui/package.json +1 -1
  504. package/packages/gui/src/components/agents/agent-file-tree.jsx +68 -16
  505. package/packages/gui/src/components/agents/agent-panel.jsx +2 -0
  506. package/packages/gui/src/components/agents/code-review.jsx +9 -1
  507. package/packages/gui/src/components/agents/workspace-mode.jsx +2 -2
  508. package/packages/gui/src/components/editor/code-editor.jsx +1 -1
  509. package/packages/gui/src/stores/groove.js +40 -26
  510. package/packages/gui/src/views/agents.jsx +14 -65
  511. package/workspace.png +0 -0
@@ -0,0 +1,307 @@
1
+ // FSL-1.1-Apache-2.0 — see LICENSE
2
+
3
+ import { randomUUID } from 'node:crypto';
4
+ import { ConsentManager } from './consent.js';
5
+ import { PIIScrubber } from './scrubber.js';
6
+ import { getParser } from './parsers/index.js';
7
+ import { StepClassifier } from './step-classifier.js';
8
+ import { EnvelopeBuilder } from './envelope-builder.js';
9
+ import { SessionAttestation } from './session-attestation.js';
10
+ import { TransmissionQueue } from './transmission-queue.js';
11
+ import { CHUNK_TIMEOUT_MS, CENTRAL_COMMAND_URL } from '../shared/constants.js';
12
+
13
+ const OFFLINE_RETRY_INTERVAL_MS = 60_000;
14
+
15
+ export class TrajectoryCapture {
16
+ constructor(options = {}) {
17
+ this._centralCommandUrl = options.centralCommandUrl || CENTRAL_COMMAND_URL;
18
+ this._grooveVersion = options.grooveVersion || '0.0.0';
19
+ this._enabled = false;
20
+ this._scrubber = null;
21
+ this._attestation = null;
22
+ this._transmissionQueue = null;
23
+ this._offlineRetryTimer = null;
24
+ this._contexts = new Map();
25
+ }
26
+
27
+ init() {
28
+ if (!ConsentManager.isCaptureEnabled()) {
29
+ this._enabled = false;
30
+ return;
31
+ }
32
+ this._enabled = true;
33
+ this._scrubber = new PIIScrubber();
34
+ this._attestation = new SessionAttestation(this._centralCommandUrl);
35
+ this._transmissionQueue = new TransmissionQueue(this._centralCommandUrl);
36
+ this._transmissionQueue.start();
37
+ this._offlineRetryTimer = setInterval(() => {
38
+ this._retryOfflineQueue();
39
+ }, OFFLINE_RETRY_INTERVAL_MS);
40
+ }
41
+
42
+ async onAgentSpawn(agentId, provider, model, role, teamSize) {
43
+ if (!this._enabled) return;
44
+
45
+ const parser = getParser(provider);
46
+ if (!parser) return;
47
+
48
+ const sessionId = `sess_${randomUUID()}`;
49
+ const contributorId = ConsentManager.getOrCreateUserId();
50
+ const metadata = {
51
+ model_engine: model,
52
+ provider,
53
+ agent_role: role,
54
+ agent_id: agentId,
55
+ task_complexity: 'medium',
56
+ team_size: teamSize || 1,
57
+ session_quality: 0,
58
+ groove_version: this._grooveVersion,
59
+ };
60
+
61
+ const builder = new EnvelopeBuilder(sessionId, contributorId, metadata);
62
+ const classifier = new StepClassifier();
63
+ const startTime = Date.now();
64
+
65
+ const ctx = {
66
+ sessionId,
67
+ parser,
68
+ builder,
69
+ classifier,
70
+ metadata,
71
+ stepCount: 0,
72
+ chunkCount: 0,
73
+ totalTokens: 0,
74
+ errorsEncountered: 0,
75
+ errorsRecovered: 0,
76
+ filesModified: 0,
77
+ coordinationEvents: 0,
78
+ startTime,
79
+ chunkTimer: null,
80
+ allSteps: [],
81
+ };
82
+
83
+ ctx.chunkTimer = setInterval(() => {
84
+ this._flushContext(agentId);
85
+ }, CHUNK_TIMEOUT_MS);
86
+
87
+ this._contexts.set(agentId, ctx);
88
+
89
+ await this._attestation.openSession(sessionId, metadata);
90
+ }
91
+
92
+ onStdoutLine(agentId, jsonLine) {
93
+ if (!this._enabled) return;
94
+ const ctx = this._contexts.get(agentId);
95
+ if (!ctx) return;
96
+
97
+ let jsonEvent;
98
+ try {
99
+ jsonEvent = typeof jsonLine === 'string' ? JSON.parse(jsonLine) : jsonLine;
100
+ } catch {
101
+ return;
102
+ }
103
+
104
+ const parsed = ctx.parser.parseEvent(jsonEvent);
105
+ if (!parsed) return;
106
+
107
+ const events = Array.isArray(parsed) ? parsed : [parsed];
108
+ for (const event of events) {
109
+ this._processStep(agentId, ctx, event);
110
+ }
111
+
112
+ if ((!ctx.metadata.model_engine || ctx.metadata.model_engine === 'auto') &&
113
+ typeof ctx.parser.extractModel === 'function') {
114
+ const resolved = ctx.parser.extractModel(jsonEvent);
115
+ if (resolved) ctx.metadata.model_engine = resolved;
116
+ }
117
+
118
+ const tokens = ctx.parser.extractTokens(jsonEvent);
119
+ if (tokens) {
120
+ ctx.totalTokens += (tokens.input || 0) + (tokens.output || 0);
121
+ }
122
+ }
123
+
124
+ onUserMessage(agentId, text) {
125
+ if (!this._enabled) return;
126
+ const ctx = this._contexts.get(agentId);
127
+ if (!ctx) return;
128
+
129
+ const classified = ctx.classifier.classifyUserMessage(text);
130
+ if (!classified) return;
131
+
132
+ this._processStep(agentId, ctx, classified);
133
+ }
134
+
135
+ onCoordinationEvent(agentId, event) {
136
+ if (!this._enabled) return;
137
+ const ctx = this._contexts.get(agentId);
138
+ if (!ctx) return;
139
+
140
+ const classified = ctx.classifier.classifyCoordinationEvent(event);
141
+ ctx.coordinationEvents++;
142
+ this._processStep(agentId, ctx, classified);
143
+ }
144
+
145
+ async onAgentComplete(agentId, outcome) {
146
+ await this._closeAgent(agentId, outcome?.status || 'SUCCESS', outcome);
147
+ }
148
+
149
+ async onAgentCrash(agentId, error) {
150
+ await this._closeAgent(agentId, 'CRASH', { error: error?.message || String(error) });
151
+ }
152
+
153
+ async shutdown() {
154
+ if (this._offlineRetryTimer) clearInterval(this._offlineRetryTimer);
155
+ for (const agentId of this._contexts.keys()) {
156
+ await this._closeAgent(agentId, 'SHUTDOWN');
157
+ }
158
+ if (this._transmissionQueue) {
159
+ await this._transmissionQueue.stop();
160
+ }
161
+ }
162
+
163
+ _processStep(agentId, ctx, event) {
164
+ const classified = ctx.classifier.onStep(event);
165
+ const ev = classified || event;
166
+
167
+ if (ev.content && typeof ev.content === 'string') {
168
+ ev.content = this._scrubber.scrub(ev.content);
169
+ }
170
+
171
+ if (ev.arguments && typeof ev.arguments === 'object') {
172
+ ev.arguments = this._scrubObject(ev.arguments);
173
+ }
174
+
175
+ if (!ev.token_count || ev.token_count < 2) {
176
+ const text = ev.content || '';
177
+ const argsLen = ev.arguments ? JSON.stringify(ev.arguments).length : 0;
178
+ ev.token_count = Math.max(1, Math.ceil((text.length + argsLen) / 4));
179
+ }
180
+
181
+ const step = {
182
+ step: ++ctx.stepCount,
183
+ type: ev.type,
184
+ timestamp: Date.now() / 1000,
185
+ ...ev,
186
+ };
187
+
188
+ if (ev.type === 'error') ctx.errorsEncountered++;
189
+ ctx.allSteps.push(step);
190
+
191
+ const envelope = ctx.builder.addStep(step);
192
+ if (envelope) {
193
+ this._signAndTransmit(ctx.sessionId, envelope);
194
+ ctx.chunkCount++;
195
+ }
196
+ }
197
+
198
+ _computeQuality(ctx) {
199
+ let score = 50;
200
+ const types = new Set();
201
+ let hasCorrection = false;
202
+
203
+ for (const step of ctx.allSteps) {
204
+ if (step.type) types.add(step.type);
205
+ if (step.type === 'correction') hasCorrection = true;
206
+ }
207
+
208
+ if (hasCorrection) score += 10;
209
+ if (ctx.coordinationEvents > 0) score += 10;
210
+ if (ctx.errorsRecovered > 0) score += 10;
211
+ if (ctx.stepCount >= 20) score += 10;
212
+ if (types.size >= 3) score += 10;
213
+
214
+ return Math.min(score, 100);
215
+ }
216
+
217
+ _flushContext(agentId) {
218
+ const ctx = this._contexts.get(agentId);
219
+ if (!ctx) return;
220
+ ctx.metadata.session_quality = this._computeQuality(ctx);
221
+ const envelope = ctx.builder.flush();
222
+ if (envelope) {
223
+ this._signAndTransmit(ctx.sessionId, envelope);
224
+ ctx.chunkCount++;
225
+ }
226
+ }
227
+
228
+ async _closeAgent(agentId, status, extra) {
229
+ const ctx = this._contexts.get(agentId);
230
+ if (!ctx) return;
231
+
232
+ if (ctx.chunkTimer) clearInterval(ctx.chunkTimer);
233
+
234
+ this._flushContext(agentId);
235
+
236
+ const hasRecovery = StepClassifier.detectErrorRecovery(ctx.allSteps);
237
+ if (hasRecovery) ctx.errorsRecovered++;
238
+
239
+ ctx.metadata.session_quality = this._computeQuality(ctx);
240
+
241
+ const closeEnvelope = ctx.builder.buildSessionClose({
242
+ status,
243
+ session_quality: ctx.metadata.session_quality,
244
+ user_interventions: StepClassifier.countUserInterventions(ctx.allSteps),
245
+ total_steps: ctx.stepCount,
246
+ total_chunks: ctx.chunkCount,
247
+ total_tokens: ctx.totalTokens,
248
+ duration_seconds: Math.round((Date.now() - ctx.startTime) / 1000),
249
+ files_modified: extra?.files_modified || ctx.filesModified,
250
+ errors_encountered: ctx.errorsEncountered,
251
+ errors_recovered: ctx.errorsRecovered,
252
+ coordination_events: ctx.coordinationEvents,
253
+ });
254
+
255
+ this._signAndTransmit(ctx.sessionId, closeEnvelope);
256
+
257
+ try {
258
+ await this._transmissionQueue.waitForDrain();
259
+ } catch {
260
+ // drain timeout
261
+ }
262
+
263
+ try {
264
+ await this._attestation.closeSession(ctx.sessionId);
265
+ } catch {
266
+ // fail silent
267
+ }
268
+
269
+ this._contexts.delete(agentId);
270
+ }
271
+
272
+ async _retryOfflineQueue() {
273
+ if (!this._enabled || !this._transmissionQueue || this._transmissionQueue.offlineQueueSize === 0) return;
274
+ try {
275
+ const res = await fetch(`${this._centralCommandUrl}/health`, {
276
+ signal: AbortSignal.timeout(5_000),
277
+ });
278
+ if (res.ok) {
279
+ this._transmissionQueue.replayOfflineQueue(this._attestation);
280
+ }
281
+ } catch {
282
+ // still unreachable
283
+ }
284
+ }
285
+
286
+ _scrubObject(obj) {
287
+ if (typeof obj === 'string') return this._scrubber.scrub(obj);
288
+ if (Array.isArray(obj)) return obj.map((v) => this._scrubObject(v));
289
+ if (obj && typeof obj === 'object') {
290
+ const out = {};
291
+ for (const [k, v] of Object.entries(obj)) {
292
+ out[k] = this._scrubObject(v);
293
+ }
294
+ return out;
295
+ }
296
+ return obj;
297
+ }
298
+
299
+ _signAndTransmit(sessionId, envelope) {
300
+ try {
301
+ const signed = this._attestation.signEnvelope(sessionId, envelope);
302
+ this._transmissionQueue.enqueue(signed);
303
+ } catch {
304
+ // fail silent
305
+ }
306
+ }
307
+ }
@@ -0,0 +1,104 @@
1
+ // FSL-1.1-Apache-2.0 — see LICENSE
2
+
3
+ import { MAX_QUEUE_SIZE } from '../shared/constants.js';
4
+
5
+ export class TransmissionQueue {
6
+ constructor(centralCommandUrl, maxSize = MAX_QUEUE_SIZE) {
7
+ this._centralCommandUrl = centralCommandUrl;
8
+ this._maxSize = maxSize;
9
+ this._queue = [];
10
+ this._offlineQueue = [];
11
+ this._running = false;
12
+ this._drainPromise = null;
13
+
14
+ if (process.env.NODE_ENV === 'production' && !centralCommandUrl.startsWith('https://')) {
15
+ console.warn('[TransmissionQueue] WARNING: centralCommandUrl does not use HTTPS in production');
16
+ }
17
+ }
18
+
19
+ get offlineQueueSize() {
20
+ return this._offlineQueue.length;
21
+ }
22
+
23
+ enqueue(signedEnvelope) {
24
+ if (this._queue.length >= this._maxSize) return;
25
+ if (signedEnvelope?.attestation?.session_hmac === 'OFFLINE') {
26
+ this._offlineQueue.push(signedEnvelope);
27
+ return;
28
+ }
29
+ this._queue.push(signedEnvelope);
30
+ if (this._running) this._kick();
31
+ }
32
+
33
+ replayOfflineQueue(sessionAttestation) {
34
+ const pending = this._offlineQueue.splice(0);
35
+ for (const envelope of pending) {
36
+ const sessionId = envelope.session_id;
37
+ const resigned = sessionAttestation.signEnvelope(sessionId, envelope);
38
+ if (resigned?.attestation?.session_hmac === 'OFFLINE') {
39
+ this._offlineQueue.push(resigned);
40
+ continue;
41
+ }
42
+ this._queue.push(resigned);
43
+ }
44
+ if (this._running && this._queue.length > 0) this._kick();
45
+ }
46
+
47
+ start() {
48
+ if (this._running) return;
49
+ this._running = true;
50
+ this._kick();
51
+ }
52
+
53
+ async waitForDrain() {
54
+ while (this._queue.length > 0 || this._drainPromise) {
55
+ if (this._drainPromise) await this._drainPromise;
56
+ else await new Promise((r) => setTimeout(r, 50));
57
+ }
58
+ }
59
+
60
+ async stop() {
61
+ this._running = false;
62
+ if (this._drainPromise) {
63
+ await this._drainPromise;
64
+ }
65
+ }
66
+
67
+ _kick() {
68
+ if (this._drainPromise) return;
69
+ this._drainPromise = this._drain().finally(() => {
70
+ this._drainPromise = null;
71
+ });
72
+ }
73
+
74
+ async _drain() {
75
+ while (this._running && this._queue.length > 0) {
76
+ const envelope = this._queue[0];
77
+ let success = false;
78
+
79
+ for (let attempt = 0; attempt < 5; attempt++) {
80
+ try {
81
+ const res = await fetch(`${this._centralCommandUrl}/v1/training/ingest`, {
82
+ method: 'POST',
83
+ headers: { 'Content-Type': 'application/json' },
84
+ body: JSON.stringify(envelope),
85
+ signal: AbortSignal.timeout(30_000),
86
+ });
87
+ if (res.ok) {
88
+ success = true;
89
+ break;
90
+ }
91
+ } catch {
92
+ // network error
93
+ }
94
+
95
+ if (!this._running) return;
96
+ const delay = Math.min(1000 * Math.pow(2, attempt), 60_000);
97
+ await new Promise((r) => setTimeout(r, delay));
98
+ if (!this._running) return;
99
+ }
100
+
101
+ this._queue.shift();
102
+ }
103
+ }
104
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "moe-training",
3
+ "private": true,
4
+ "version": "0.1.0",
5
+ "type": "module",
6
+ "description": "MoE TrajectoryCapture client — captures agent session data into structured Trajectory Envelopes",
7
+ "license": "FSL-1.1-Apache-2.0",
8
+ "exports": {
9
+ ".": "./client/index.js",
10
+ "./shared/*": "./shared/*.js"
11
+ },
12
+ "scripts": {
13
+ "test": "node --test test/**/*.test.js",
14
+ "start:server": "node server/index.js"
15
+ },
16
+ "dependencies": {
17
+ "better-sqlite3": "^12.9.0",
18
+ "uuid": "^9.0.0",
19
+ "express": "^4.18.0"
20
+ }
21
+ }
@@ -0,0 +1,24 @@
1
+ // FSL-1.1-Apache-2.0 — see LICENSE
2
+
3
+ // TODO: LLM-as-a-Judge — classify each step's cognitive target
4
+ // (syntactic/semantic/strategic/corrective/coordinative)
5
+ // using a small model call after stitching
6
+
7
+ // TODO: Model fingerprint verification — confirm the claimed model_engine
8
+ // matches the output style using an LLM classifier
9
+
10
+ // TODO: Quality assessment — score trajectory coherence, tool usage
11
+ // efficiency, and error recovery patterns
12
+
13
+ export class EnrichmentPipeline {
14
+ async enrich(stitchedTrajectory) {
15
+ return {
16
+ ...stitchedTrajectory,
17
+ enrichment: {
18
+ cognitive_target: 'pending',
19
+ model_verified: 'pending',
20
+ quality_assessment: 'pending',
21
+ },
22
+ };
23
+ }
24
+ }
@@ -0,0 +1,119 @@
1
+ // FSL-1.1-Apache-2.0 — see LICENSE
2
+
3
+ import express from 'express';
4
+ import { SessionRegistry } from './session-registry.js';
5
+ import { EnvelopeVerifier } from './verifier.js';
6
+ import { EnvelopeStorage } from './storage.js';
7
+ import { TrajectoryStitcher } from './stitcher.js';
8
+ import { TrajectoryScorer } from './scoring.js';
9
+ import { ContributorLedger } from './ledger.js';
10
+ import { EnrichmentPipeline } from './enrichment.js';
11
+ import { CentralStats } from './stats.js';
12
+ import { createSessionRoutes } from './routes/sessions.js';
13
+ import { createIngestRoutes } from './routes/ingest.js';
14
+ import { createStatsRoutes } from './routes/stats.js';
15
+ import { MODEL_TIERS, QUALITY_MULTIPLIERS } from '../shared/constants.js';
16
+
17
+ const PORT = parseInt(process.env.GROOVE_CENTRAL_PORT, 10) || 8443;
18
+
19
+ const sessionRegistry = new SessionRegistry();
20
+ const storage = new EnvelopeStorage();
21
+ const ledger = new ContributorLedger();
22
+ const verifier = new EnvelopeVerifier(sessionRegistry);
23
+ const stitcher = new TrajectoryStitcher(storage);
24
+ const scorer = new TrajectoryScorer({ MODEL_TIERS, QUALITY_MULTIPLIERS });
25
+ const enrichment = new EnrichmentPipeline();
26
+ const centralStats = new CentralStats(storage, ledger, sessionRegistry);
27
+
28
+ const app = express();
29
+
30
+ app.use((_req, res, next) => {
31
+ res.header('Access-Control-Allow-Origin', '*');
32
+ res.header('Access-Control-Allow-Methods', 'GET, POST, OPTIONS');
33
+ res.header('Access-Control-Allow-Headers', 'Content-Type');
34
+ if (_req.method === 'OPTIONS') return res.sendStatus(204);
35
+ next();
36
+ });
37
+
38
+ app.use(express.json({ limit: '5mb' }));
39
+
40
+ // Per-IP rate limiting
41
+ const ipWindows = new Map();
42
+ const RATE_LIMIT_PER_MINUTE = 100;
43
+ const RATE_LIMIT_PER_HOUR = 1000;
44
+
45
+ setInterval(() => {
46
+ const now = Date.now();
47
+ for (const [ip, entry] of ipWindows) {
48
+ if (now - entry.minuteStart > 120_000 && now - entry.hourStart > 7200_000) {
49
+ ipWindows.delete(ip);
50
+ }
51
+ }
52
+ }, 300_000);
53
+
54
+ app.use((req, res, next) => {
55
+ const ip = req.headers['x-forwarded-for']?.split(',')[0]?.trim() || req.ip;
56
+ const now = Date.now();
57
+
58
+ let entry = ipWindows.get(ip);
59
+ if (!entry) {
60
+ entry = { minuteCount: 0, minuteStart: now, hourCount: 0, hourStart: now };
61
+ ipWindows.set(ip, entry);
62
+ }
63
+
64
+ if (now - entry.minuteStart > 60_000) {
65
+ entry.minuteCount = 0;
66
+ entry.minuteStart = now;
67
+ }
68
+ if (now - entry.hourStart > 3600_000) {
69
+ entry.hourCount = 0;
70
+ entry.hourStart = now;
71
+ }
72
+
73
+ entry.minuteCount++;
74
+ entry.hourCount++;
75
+
76
+ if (entry.minuteCount > RATE_LIMIT_PER_MINUTE) {
77
+ return res.status(429).json({ error: 'Too Many Requests', retryAfter: Math.ceil((entry.minuteStart + 60_000 - now) / 1000) });
78
+ }
79
+ if (entry.hourCount > RATE_LIMIT_PER_HOUR) {
80
+ return res.status(429).json({ error: 'Too Many Requests', retryAfter: Math.ceil((entry.hourStart + 3600_000 - now) / 1000) });
81
+ }
82
+
83
+ next();
84
+ });
85
+
86
+ app.use((req, res, next) => {
87
+ const start = Date.now();
88
+ res.on('finish', () => {
89
+ const duration = Date.now() - start;
90
+ console.log(`[${new Date().toISOString()}] ${req.method} ${req.path} ${res.statusCode} ${duration}ms`);
91
+ });
92
+ next();
93
+ });
94
+
95
+ app.get('/health', (_req, res) => res.json({ status: 'ok', uptime: process.uptime() }));
96
+
97
+ app.use(createSessionRoutes(sessionRegistry));
98
+ app.use(createIngestRoutes(verifier, storage, stitcher, scorer, enrichment, ledger, sessionRegistry));
99
+ app.use(createStatsRoutes(centralStats));
100
+
101
+ const server = app.listen(PORT, () => {
102
+ console.log(`[central-command] listening on port ${PORT}`);
103
+ });
104
+
105
+ function shutdown() {
106
+ console.log('[central-command] shutting down...');
107
+ server.close(() => {
108
+ sessionRegistry.close();
109
+ ledger.close();
110
+ console.log('[central-command] shut down complete');
111
+ process.exit(0);
112
+ });
113
+ setTimeout(() => process.exit(1), 5000);
114
+ }
115
+
116
+ process.on('SIGTERM', shutdown);
117
+ process.on('SIGINT', shutdown);
118
+
119
+ export { app, server };
@@ -0,0 +1,110 @@
1
+ // FSL-1.1-Apache-2.0 — see LICENSE
2
+
3
+ import Database from 'better-sqlite3';
4
+ import { mkdirSync, existsSync } from 'node:fs';
5
+ import { join } from 'node:path';
6
+
7
+ export class ContributorLedger {
8
+ constructor(dbPath = './data/ledger.db') {
9
+ const dir = join(dbPath, '..');
10
+ if (!existsSync(dir)) mkdirSync(dir, { recursive: true, mode: 0o700 });
11
+ this.db = new Database(dbPath);
12
+ this.db.pragma('journal_mode = WAL');
13
+ this._createTables();
14
+ }
15
+
16
+ _createTables() {
17
+ this.db.exec(`
18
+ CREATE TABLE IF NOT EXISTS credits (
19
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
20
+ contributor_id TEXT NOT NULL,
21
+ session_id TEXT NOT NULL,
22
+ points REAL NOT NULL,
23
+ base_points INTEGER NOT NULL,
24
+ multiplier_breakdown TEXT NOT NULL,
25
+ created_at TEXT NOT NULL
26
+ )
27
+ `);
28
+ this.db.exec(`
29
+ CREATE TABLE IF NOT EXISTS balances (
30
+ contributor_id TEXT PRIMARY KEY,
31
+ total_points REAL NOT NULL DEFAULT 0,
32
+ total_sessions INTEGER NOT NULL DEFAULT 0,
33
+ last_credit_at TEXT,
34
+ trust_score REAL NOT NULL DEFAULT 1.0
35
+ )
36
+ `);
37
+ }
38
+
39
+ credit(contributorId, sessionId, scoreResult) {
40
+ const now = new Date().toISOString();
41
+ const breakdown = JSON.stringify({
42
+ modelMultiplier: scoreResult.modelMultiplier,
43
+ correctionBonus: scoreResult.correctionBonus,
44
+ coordinationBonus: scoreResult.coordinationBonus,
45
+ errorRecoveryBonus: scoreResult.errorRecoveryBonus,
46
+ complexityBonus: scoreResult.complexityBonus,
47
+ qualityBonus: scoreResult.qualityBonus,
48
+ });
49
+
50
+ const txn = this.db.transaction(() => {
51
+ this.db.prepare(`
52
+ INSERT INTO credits (contributor_id, session_id, points, base_points, multiplier_breakdown, created_at)
53
+ VALUES (?, ?, ?, ?, ?, ?)
54
+ `).run(contributorId, sessionId, scoreResult.totalPoints, scoreResult.basePoints, breakdown, now);
55
+
56
+ const existing = this.db.prepare('SELECT * FROM balances WHERE contributor_id = ?').get(contributorId);
57
+ if (existing) {
58
+ this.db.prepare(`
59
+ UPDATE balances SET total_points = total_points + ?, total_sessions = total_sessions + 1, last_credit_at = ?
60
+ WHERE contributor_id = ?
61
+ `).run(scoreResult.totalPoints, now, contributorId);
62
+ } else {
63
+ this.db.prepare(`
64
+ INSERT INTO balances (contributor_id, total_points, total_sessions, last_credit_at, trust_score)
65
+ VALUES (?, ?, 1, ?, 1.0)
66
+ `).run(contributorId, scoreResult.totalPoints, now);
67
+ }
68
+ });
69
+ txn();
70
+ }
71
+
72
+ getBalance(contributorId) {
73
+ return this.db.prepare('SELECT * FROM balances WHERE contributor_id = ?').get(contributorId) || null;
74
+ }
75
+
76
+ getLeaderboard(limit = 50) {
77
+ return this.db.prepare('SELECT * FROM balances ORDER BY total_points DESC LIMIT ?').all(limit);
78
+ }
79
+
80
+ getCreditsForContributor(contributorId, limit = 100) {
81
+ return this.db.prepare(
82
+ 'SELECT * FROM credits WHERE contributor_id = ? ORDER BY created_at DESC LIMIT ?'
83
+ ).all(contributorId, limit);
84
+ }
85
+
86
+ getDailyCredits(days = 7) {
87
+ const cutoff = new Date();
88
+ cutoff.setDate(cutoff.getDate() - days);
89
+
90
+ return this.db.prepare(`
91
+ SELECT DATE(created_at) as date, SUM(points) as totalPoints, COUNT(*) as totalSessions
92
+ FROM credits WHERE created_at > ? GROUP BY DATE(created_at) ORDER BY date
93
+ `).all(cutoff.toISOString());
94
+ }
95
+
96
+ adjustTrustScore(contributorId, delta) {
97
+ this.db.prepare(`
98
+ UPDATE balances SET trust_score = MAX(0, MIN(10, trust_score + ?)) WHERE contributor_id = ?
99
+ `).run(delta, contributorId);
100
+ }
101
+
102
+ getTotalPointsAwarded() {
103
+ const row = this.db.prepare('SELECT COALESCE(SUM(total_points), 0) as total FROM balances').get();
104
+ return row.total;
105
+ }
106
+
107
+ close() {
108
+ this.db.close();
109
+ }
110
+ }