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.
- package/CLAUDE.md +7 -0
- package/README.md +25 -52
- package/moe-training/package.json +2 -1
- package/node_modules/@groove-dev/cli/package.json +1 -1
- package/node_modules/@groove-dev/daemon/package.json +1 -1
- package/node_modules/@groove-dev/daemon/src/api.js +39 -23
- package/node_modules/@groove-dev/daemon/src/introducer.js +21 -6
- package/node_modules/@groove-dev/daemon/src/process.js +20 -2
- package/node_modules/@groove-dev/daemon/src/providers/gemini.js +27 -28
- package/node_modules/@groove-dev/gui/dist/assets/{index-VB4_k5Pz.js → index-BgTyFy4f.js} +331 -331
- package/node_modules/@groove-dev/gui/dist/assets/{index-Bo6AeNmM.css → index-QADLyUj5.css} +1 -1
- package/node_modules/@groove-dev/gui/dist/index.html +2 -2
- package/node_modules/@groove-dev/gui/package.json +1 -1
- package/node_modules/@groove-dev/gui/src/components/agents/agent-file-tree.jsx +68 -16
- package/node_modules/@groove-dev/gui/src/components/agents/agent-panel.jsx +2 -0
- package/node_modules/@groove-dev/gui/src/components/agents/code-review.jsx +9 -1
- package/node_modules/@groove-dev/gui/src/components/agents/workspace-mode.jsx +2 -2
- package/node_modules/@groove-dev/gui/src/components/editor/code-editor.jsx +1 -1
- package/node_modules/@groove-dev/gui/src/stores/groove.js +40 -26
- package/node_modules/@groove-dev/gui/src/views/agents.jsx +14 -65
- package/node_modules/base64-js/LICENSE +21 -0
- package/node_modules/base64-js/README.md +34 -0
- package/node_modules/base64-js/base64js.min.js +1 -0
- package/node_modules/base64-js/index.d.ts +3 -0
- package/node_modules/base64-js/index.js +150 -0
- package/node_modules/base64-js/package.json +47 -0
- package/node_modules/better-sqlite3/LICENSE +21 -0
- package/node_modules/better-sqlite3/README.md +99 -0
- package/node_modules/better-sqlite3/binding.gyp +38 -0
- package/node_modules/better-sqlite3/deps/common.gypi +68 -0
- package/node_modules/better-sqlite3/deps/copy.js +31 -0
- package/node_modules/better-sqlite3/deps/defines.gypi +41 -0
- package/node_modules/better-sqlite3/deps/download.sh +122 -0
- package/node_modules/better-sqlite3/deps/patches/1208.patch +15 -0
- package/node_modules/better-sqlite3/deps/sqlite3/sqlite3.c +268845 -0
- package/node_modules/better-sqlite3/deps/sqlite3/sqlite3.h +14335 -0
- package/node_modules/better-sqlite3/deps/sqlite3/sqlite3ext.h +739 -0
- package/node_modules/better-sqlite3/deps/sqlite3.gyp +80 -0
- package/node_modules/better-sqlite3/deps/test_extension.c +21 -0
- package/node_modules/better-sqlite3/lib/database.js +90 -0
- package/node_modules/better-sqlite3/lib/index.js +3 -0
- package/node_modules/better-sqlite3/lib/methods/aggregate.js +43 -0
- package/node_modules/better-sqlite3/lib/methods/backup.js +67 -0
- package/node_modules/better-sqlite3/lib/methods/function.js +31 -0
- package/node_modules/better-sqlite3/lib/methods/inspect.js +7 -0
- package/node_modules/better-sqlite3/lib/methods/pragma.js +12 -0
- package/node_modules/better-sqlite3/lib/methods/serialize.js +16 -0
- package/node_modules/better-sqlite3/lib/methods/table.js +189 -0
- package/node_modules/better-sqlite3/lib/methods/transaction.js +78 -0
- package/node_modules/better-sqlite3/lib/methods/wrappers.js +54 -0
- package/node_modules/better-sqlite3/lib/sqlite-error.js +20 -0
- package/node_modules/better-sqlite3/lib/util.js +12 -0
- package/node_modules/better-sqlite3/package.json +59 -0
- package/node_modules/better-sqlite3/src/addon.cpp +47 -0
- package/node_modules/better-sqlite3/src/better_sqlite3.cpp +74 -0
- package/node_modules/better-sqlite3/src/objects/backup.cpp +120 -0
- package/node_modules/better-sqlite3/src/objects/backup.hpp +36 -0
- package/node_modules/better-sqlite3/src/objects/database.cpp +417 -0
- package/node_modules/better-sqlite3/src/objects/database.hpp +103 -0
- package/node_modules/better-sqlite3/src/objects/statement-iterator.cpp +113 -0
- package/node_modules/better-sqlite3/src/objects/statement-iterator.hpp +50 -0
- package/node_modules/better-sqlite3/src/objects/statement.cpp +383 -0
- package/node_modules/better-sqlite3/src/objects/statement.hpp +58 -0
- package/node_modules/better-sqlite3/src/util/bind-map.cpp +73 -0
- package/node_modules/better-sqlite3/src/util/binder.cpp +193 -0
- package/node_modules/better-sqlite3/src/util/constants.cpp +172 -0
- package/node_modules/better-sqlite3/src/util/custom-aggregate.cpp +121 -0
- package/node_modules/better-sqlite3/src/util/custom-function.cpp +59 -0
- package/node_modules/better-sqlite3/src/util/custom-table.cpp +409 -0
- package/node_modules/better-sqlite3/src/util/data-converter.cpp +17 -0
- package/node_modules/better-sqlite3/src/util/data.cpp +194 -0
- package/node_modules/better-sqlite3/src/util/helpers.cpp +109 -0
- package/node_modules/better-sqlite3/src/util/macros.cpp +83 -0
- package/node_modules/better-sqlite3/src/util/query-macros.cpp +71 -0
- package/node_modules/better-sqlite3/src/util/row-builder.cpp +49 -0
- package/node_modules/bindings/LICENSE.md +22 -0
- package/node_modules/bindings/README.md +98 -0
- package/node_modules/bindings/bindings.js +221 -0
- package/node_modules/bindings/package.json +28 -0
- package/node_modules/bl/.travis.yml +17 -0
- package/node_modules/bl/BufferList.js +396 -0
- package/node_modules/bl/LICENSE.md +13 -0
- package/node_modules/bl/README.md +247 -0
- package/node_modules/bl/bl.js +84 -0
- package/node_modules/bl/package.json +37 -0
- package/node_modules/bl/test/convert.js +21 -0
- package/node_modules/bl/test/indexOf.js +492 -0
- package/node_modules/bl/test/isBufferList.js +32 -0
- package/node_modules/bl/test/test.js +869 -0
- package/node_modules/buffer/AUTHORS.md +70 -0
- package/node_modules/buffer/LICENSE +21 -0
- package/node_modules/buffer/README.md +410 -0
- package/node_modules/buffer/index.d.ts +186 -0
- package/node_modules/buffer/index.js +1817 -0
- package/node_modules/buffer/package.json +96 -0
- package/node_modules/decompress-response/index.d.ts +22 -0
- package/node_modules/decompress-response/index.js +58 -0
- package/node_modules/decompress-response/license +9 -0
- package/node_modules/decompress-response/node_modules/mimic-response/index.d.ts +17 -0
- package/node_modules/decompress-response/node_modules/mimic-response/index.js +77 -0
- package/node_modules/decompress-response/node_modules/mimic-response/license +9 -0
- package/node_modules/decompress-response/node_modules/mimic-response/package.json +42 -0
- package/node_modules/decompress-response/node_modules/mimic-response/readme.md +78 -0
- package/node_modules/decompress-response/package.json +56 -0
- package/node_modules/decompress-response/readme.md +48 -0
- package/node_modules/deep-extend/LICENSE +20 -0
- package/node_modules/deep-extend/README.md +91 -0
- package/node_modules/deep-extend/index.js +1 -0
- package/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/node_modules/deep-extend/package.json +62 -0
- package/node_modules/end-of-stream/LICENSE +21 -0
- package/node_modules/end-of-stream/README.md +54 -0
- package/node_modules/end-of-stream/index.js +96 -0
- package/node_modules/end-of-stream/package.json +37 -0
- package/node_modules/expand-template/.travis.yml +6 -0
- package/node_modules/expand-template/LICENSE +21 -0
- package/node_modules/expand-template/README.md +43 -0
- package/node_modules/expand-template/index.js +26 -0
- package/node_modules/expand-template/package.json +29 -0
- package/node_modules/expand-template/test.js +67 -0
- package/node_modules/file-uri-to-path/.npmignore +1 -0
- package/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/node_modules/file-uri-to-path/History.md +21 -0
- package/node_modules/file-uri-to-path/LICENSE +20 -0
- package/node_modules/file-uri-to-path/README.md +74 -0
- package/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/node_modules/file-uri-to-path/index.js +66 -0
- package/node_modules/file-uri-to-path/package.json +32 -0
- package/node_modules/file-uri-to-path/test/test.js +24 -0
- package/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/node_modules/fs-constants/LICENSE +21 -0
- package/node_modules/fs-constants/README.md +26 -0
- package/node_modules/fs-constants/browser.js +1 -0
- package/node_modules/fs-constants/index.js +1 -0
- package/node_modules/fs-constants/package.json +19 -0
- package/node_modules/github-from-package/.travis.yml +4 -0
- package/node_modules/github-from-package/LICENSE +18 -0
- package/node_modules/github-from-package/example/package.json +8 -0
- package/node_modules/github-from-package/example/url.js +3 -0
- package/node_modules/github-from-package/index.js +17 -0
- package/node_modules/github-from-package/package.json +30 -0
- package/node_modules/github-from-package/readme.markdown +53 -0
- package/node_modules/github-from-package/test/a.json +8 -0
- package/node_modules/github-from-package/test/b.json +5 -0
- package/node_modules/github-from-package/test/c.json +5 -0
- package/node_modules/github-from-package/test/d.json +7 -0
- package/node_modules/github-from-package/test/e.json +5 -0
- package/node_modules/github-from-package/test/url.js +19 -0
- package/node_modules/ieee754/LICENSE +11 -0
- package/node_modules/ieee754/README.md +51 -0
- package/node_modules/ieee754/index.d.ts +10 -0
- package/node_modules/ieee754/index.js +85 -0
- package/node_modules/ieee754/package.json +52 -0
- package/node_modules/ini/LICENSE +15 -0
- package/node_modules/ini/README.md +102 -0
- package/node_modules/ini/ini.js +206 -0
- package/node_modules/ini/package.json +33 -0
- package/node_modules/minimist/.eslintrc +29 -0
- package/node_modules/minimist/.github/FUNDING.yml +12 -0
- package/node_modules/minimist/.nycrc +14 -0
- package/node_modules/minimist/CHANGELOG.md +298 -0
- package/node_modules/minimist/LICENSE +18 -0
- package/node_modules/minimist/README.md +121 -0
- package/node_modules/minimist/example/parse.js +4 -0
- package/node_modules/minimist/index.js +263 -0
- package/node_modules/minimist/package.json +75 -0
- package/node_modules/minimist/test/all_bool.js +34 -0
- package/node_modules/minimist/test/bool.js +177 -0
- package/node_modules/minimist/test/dash.js +43 -0
- package/node_modules/minimist/test/default_bool.js +37 -0
- package/node_modules/minimist/test/dotted.js +24 -0
- package/node_modules/minimist/test/kv_short.js +32 -0
- package/node_modules/minimist/test/long.js +33 -0
- package/node_modules/minimist/test/num.js +38 -0
- package/node_modules/minimist/test/parse.js +209 -0
- package/node_modules/minimist/test/parse_modified.js +11 -0
- package/node_modules/minimist/test/proto.js +64 -0
- package/node_modules/minimist/test/short.js +69 -0
- package/node_modules/minimist/test/stop_early.js +17 -0
- package/node_modules/minimist/test/unknown.js +104 -0
- package/node_modules/minimist/test/whitespace.js +10 -0
- package/node_modules/mkdirp-classic/LICENSE +21 -0
- package/node_modules/mkdirp-classic/README.md +18 -0
- package/node_modules/mkdirp-classic/index.js +98 -0
- package/node_modules/mkdirp-classic/package.json +18 -0
- package/node_modules/moe-training/DEPLOY_CENTRAL_COMMAND.md +413 -0
- package/node_modules/moe-training/client/consent.js +96 -0
- package/node_modules/moe-training/client/envelope-builder.js +56 -0
- package/node_modules/moe-training/client/index.js +10 -0
- package/node_modules/moe-training/client/parsers/claude-code.js +108 -0
- package/node_modules/moe-training/client/parsers/codex.js +80 -0
- package/node_modules/moe-training/client/parsers/gemini.js +80 -0
- package/node_modules/moe-training/client/parsers/grok.js +16 -0
- package/node_modules/moe-training/client/parsers/index.js +20 -0
- package/node_modules/moe-training/client/scrubber.js +128 -0
- package/node_modules/moe-training/client/session-attestation.js +115 -0
- package/node_modules/moe-training/client/step-classifier.js +68 -0
- package/node_modules/moe-training/client/trajectory-capture.js +307 -0
- package/node_modules/moe-training/client/transmission-queue.js +104 -0
- package/node_modules/moe-training/package.json +21 -0
- package/node_modules/moe-training/server/enrichment.js +24 -0
- package/node_modules/moe-training/server/index.js +119 -0
- package/node_modules/moe-training/server/ledger.js +110 -0
- package/node_modules/moe-training/server/routes/ingest.js +96 -0
- package/node_modules/moe-training/server/routes/sessions.js +43 -0
- package/node_modules/moe-training/server/routes/stats.js +31 -0
- package/node_modules/moe-training/server/scoring.js +63 -0
- package/node_modules/moe-training/server/session-registry.js +156 -0
- package/node_modules/moe-training/server/stats.js +129 -0
- package/node_modules/moe-training/server/stitcher.js +69 -0
- package/node_modules/moe-training/server/storage.js +147 -0
- package/node_modules/moe-training/server/verifier.js +102 -0
- package/node_modules/moe-training/shared/constants.js +30 -0
- package/node_modules/moe-training/shared/crypto.js +45 -0
- package/node_modules/moe-training/shared/envelope-schema.js +220 -0
- package/node_modules/moe-training/test/client/consent.test.js +121 -0
- package/node_modules/moe-training/test/client/envelope-builder.test.js +107 -0
- package/node_modules/moe-training/test/client/parsers/claude-code.test.js +119 -0
- package/node_modules/moe-training/test/client/parsers/codex.test.js +83 -0
- package/node_modules/moe-training/test/client/parsers/gemini.test.js +99 -0
- package/node_modules/moe-training/test/client/scrubber.test.js +143 -0
- package/node_modules/moe-training/test/client/session-attestation-security.test.js +95 -0
- package/node_modules/moe-training/test/client/step-classifier.test.js +135 -0
- package/node_modules/moe-training/test/client/transmission-queue.test.js +33 -0
- package/node_modules/moe-training/test/integration/handshake.test.js +260 -0
- package/node_modules/moe-training/test/server/ingest-security.test.js +166 -0
- package/node_modules/moe-training/test/server/ledger.test.js +131 -0
- package/node_modules/moe-training/test/server/scoring.test.js +242 -0
- package/node_modules/moe-training/test/server/session-registry.test.js +125 -0
- package/node_modules/moe-training/test/server/stitcher.test.js +157 -0
- package/node_modules/moe-training/test/server/verifier.test.js +232 -0
- package/node_modules/moe-training/test/shared/crypto.test.js +87 -0
- package/node_modules/moe-training/test/shared/envelope-schema.test.js +351 -0
- package/node_modules/napi-build-utils/.github/workflows/run-npm-tests.yml +31 -0
- package/node_modules/napi-build-utils/LICENSE +21 -0
- package/node_modules/napi-build-utils/README.md +52 -0
- package/node_modules/napi-build-utils/index.js +214 -0
- package/node_modules/napi-build-utils/index.md +0 -0
- package/node_modules/napi-build-utils/package.json +42 -0
- package/node_modules/prebuild-install/CHANGELOG.md +131 -0
- package/node_modules/prebuild-install/CONTRIBUTING.md +6 -0
- package/node_modules/prebuild-install/LICENSE +21 -0
- package/node_modules/prebuild-install/README.md +163 -0
- package/node_modules/prebuild-install/asset.js +44 -0
- package/node_modules/prebuild-install/bin.js +78 -0
- package/node_modules/prebuild-install/download.js +142 -0
- package/node_modules/prebuild-install/error.js +14 -0
- package/node_modules/prebuild-install/help.txt +16 -0
- package/node_modules/prebuild-install/index.js +1 -0
- package/node_modules/prebuild-install/log.js +33 -0
- package/node_modules/prebuild-install/node_modules/node-abi/LICENSE +21 -0
- package/node_modules/prebuild-install/node_modules/node-abi/README.md +54 -0
- package/node_modules/prebuild-install/node_modules/node-abi/abi_registry.json +439 -0
- package/node_modules/prebuild-install/node_modules/node-abi/index.js +179 -0
- package/node_modules/prebuild-install/node_modules/node-abi/package.json +45 -0
- package/node_modules/prebuild-install/node_modules/semver/LICENSE +15 -0
- package/node_modules/prebuild-install/node_modules/semver/README.md +665 -0
- package/node_modules/prebuild-install/node_modules/semver/bin/semver.js +191 -0
- package/node_modules/prebuild-install/node_modules/semver/classes/comparator.js +143 -0
- package/node_modules/prebuild-install/node_modules/semver/classes/index.js +7 -0
- package/node_modules/prebuild-install/node_modules/semver/classes/range.js +557 -0
- package/node_modules/prebuild-install/node_modules/semver/classes/semver.js +333 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/clean.js +8 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/cmp.js +54 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/coerce.js +62 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/compare-build.js +9 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/compare-loose.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/compare.js +7 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/diff.js +60 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/eq.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/gt.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/gte.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/inc.js +21 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/lt.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/lte.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/major.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/minor.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/neq.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/parse.js +18 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/patch.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/prerelease.js +8 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/rcompare.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/rsort.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/satisfies.js +12 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/sort.js +5 -0
- package/node_modules/prebuild-install/node_modules/semver/functions/valid.js +8 -0
- package/node_modules/prebuild-install/node_modules/semver/index.js +91 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/constants.js +37 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/debug.js +11 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/identifiers.js +29 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/lrucache.js +42 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/parse-options.js +17 -0
- package/node_modules/prebuild-install/node_modules/semver/internal/re.js +223 -0
- package/node_modules/prebuild-install/node_modules/semver/package.json +78 -0
- package/node_modules/prebuild-install/node_modules/semver/preload.js +4 -0
- package/node_modules/prebuild-install/node_modules/semver/range.bnf +16 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/gtr.js +6 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/intersects.js +9 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/ltr.js +6 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/min-version.js +63 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/outside.js +82 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/simplify.js +49 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/subset.js +249 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/to-comparators.js +10 -0
- package/node_modules/prebuild-install/node_modules/semver/ranges/valid.js +13 -0
- package/node_modules/prebuild-install/package.json +67 -0
- package/node_modules/prebuild-install/proxy.js +35 -0
- package/node_modules/prebuild-install/rc.js +64 -0
- package/node_modules/prebuild-install/util.js +143 -0
- package/node_modules/pump/.github/FUNDING.yml +2 -0
- package/node_modules/pump/.travis.yml +5 -0
- package/node_modules/pump/LICENSE +21 -0
- package/node_modules/pump/README.md +74 -0
- package/node_modules/pump/SECURITY.md +5 -0
- package/node_modules/pump/empty.js +1 -0
- package/node_modules/pump/index.js +86 -0
- package/node_modules/pump/package.json +30 -0
- package/node_modules/pump/test-browser.js +66 -0
- package/node_modules/pump/test-node.js +53 -0
- package/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/node_modules/rc/LICENSE.BSD +26 -0
- package/node_modules/rc/LICENSE.MIT +24 -0
- package/node_modules/rc/README.md +227 -0
- package/node_modules/rc/browser.js +7 -0
- package/node_modules/rc/cli.js +4 -0
- package/node_modules/rc/index.js +53 -0
- package/node_modules/rc/lib/utils.js +104 -0
- package/node_modules/rc/package.json +29 -0
- package/node_modules/rc/test/ini.js +16 -0
- package/node_modules/rc/test/nested-env-vars.js +50 -0
- package/node_modules/rc/test/test.js +59 -0
- package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/readable-stream/README.md +106 -0
- package/node_modules/readable-stream/errors-browser.js +127 -0
- package/node_modules/readable-stream/errors.js +116 -0
- package/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
- package/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
- package/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
- package/node_modules/readable-stream/lib/_stream_transform.js +190 -0
- package/node_modules/readable-stream/lib/_stream_writable.js +641 -0
- package/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
- package/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
- package/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
- package/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
- package/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
- package/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
- package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/readable-stream/package.json +68 -0
- package/node_modules/readable-stream/readable-browser.js +9 -0
- package/node_modules/readable-stream/readable.js +16 -0
- package/node_modules/simple-concat/.travis.yml +3 -0
- package/node_modules/simple-concat/LICENSE +20 -0
- package/node_modules/simple-concat/README.md +44 -0
- package/node_modules/simple-concat/index.js +15 -0
- package/node_modules/simple-concat/package.json +47 -0
- package/node_modules/simple-concat/test/basic.js +41 -0
- package/node_modules/simple-get/.github/dependabot.yml +15 -0
- package/node_modules/simple-get/.github/workflows/ci.yml +23 -0
- package/node_modules/simple-get/LICENSE +20 -0
- package/node_modules/simple-get/README.md +333 -0
- package/node_modules/simple-get/index.js +108 -0
- package/node_modules/simple-get/package.json +67 -0
- package/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/string_decoder/README.md +47 -0
- package/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/string_decoder/package.json +34 -0
- package/node_modules/strip-json-comments/index.js +70 -0
- package/node_modules/strip-json-comments/license +21 -0
- package/node_modules/strip-json-comments/package.json +42 -0
- package/node_modules/strip-json-comments/readme.md +64 -0
- package/node_modules/tar-fs/.travis.yml +6 -0
- package/node_modules/tar-fs/LICENSE +21 -0
- package/node_modules/tar-fs/README.md +165 -0
- package/node_modules/tar-fs/index.js +363 -0
- package/node_modules/tar-fs/node_modules/chownr/LICENSE +15 -0
- package/node_modules/tar-fs/node_modules/chownr/README.md +3 -0
- package/node_modules/tar-fs/node_modules/chownr/chownr.js +167 -0
- package/node_modules/tar-fs/node_modules/chownr/package.json +29 -0
- package/node_modules/tar-fs/package.json +41 -0
- package/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
- package/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
- package/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
- package/node_modules/tar-fs/test/index.js +346 -0
- package/node_modules/tar-stream/LICENSE +21 -0
- package/node_modules/tar-stream/README.md +168 -0
- package/node_modules/tar-stream/extract.js +257 -0
- package/node_modules/tar-stream/headers.js +295 -0
- package/node_modules/tar-stream/index.js +2 -0
- package/node_modules/tar-stream/pack.js +255 -0
- package/node_modules/tar-stream/package.json +58 -0
- package/node_modules/tar-stream/sandbox.js +11 -0
- package/node_modules/tunnel-agent/LICENSE +55 -0
- package/node_modules/tunnel-agent/README.md +4 -0
- package/node_modules/tunnel-agent/index.js +244 -0
- package/node_modules/tunnel-agent/package.json +22 -0
- package/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/util-deprecate/package.json +27 -0
- package/node_modules/uuid/CHANGELOG.md +274 -0
- package/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/uuid/README.md +466 -0
- package/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/uuid/dist/commonjs-browser/index.js +79 -0
- package/node_modules/uuid/dist/commonjs-browser/md5.js +223 -0
- package/node_modules/uuid/dist/commonjs-browser/native.js +11 -0
- package/node_modules/uuid/dist/commonjs-browser/nil.js +8 -0
- package/node_modules/uuid/dist/commonjs-browser/parse.js +45 -0
- package/node_modules/uuid/dist/commonjs-browser/regex.js +8 -0
- package/node_modules/uuid/dist/commonjs-browser/rng.js +25 -0
- package/node_modules/uuid/dist/commonjs-browser/sha1.js +104 -0
- package/node_modules/uuid/dist/commonjs-browser/stringify.js +44 -0
- package/node_modules/uuid/dist/commonjs-browser/v1.js +107 -0
- package/node_modules/uuid/dist/commonjs-browser/v3.js +16 -0
- package/node_modules/uuid/dist/commonjs-browser/v35.js +80 -0
- package/node_modules/uuid/dist/commonjs-browser/v4.js +43 -0
- package/node_modules/uuid/dist/commonjs-browser/v5.js +16 -0
- package/node_modules/uuid/dist/commonjs-browser/validate.js +17 -0
- package/node_modules/uuid/dist/commonjs-browser/version.js +21 -0
- package/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/uuid/dist/esm-browser/native.js +4 -0
- package/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/uuid/dist/esm-browser/rng.js +18 -0
- package/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/uuid/dist/esm-browser/stringify.js +33 -0
- package/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/uuid/dist/esm-browser/v35.js +66 -0
- package/node_modules/uuid/dist/esm-browser/v4.js +29 -0
- package/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/uuid/dist/esm-node/native.js +4 -0
- package/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/uuid/dist/esm-node/stringify.js +33 -0
- package/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/uuid/dist/esm-node/v35.js +66 -0
- package/node_modules/uuid/dist/esm-node/v4.js +29 -0
- package/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/uuid/dist/native-browser.js +11 -0
- package/node_modules/uuid/dist/native.js +15 -0
- package/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/uuid/dist/rng-browser.js +25 -0
- package/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/uuid/dist/stringify.js +44 -0
- package/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/uuid/dist/v35.js +80 -0
- package/node_modules/uuid/dist/v4.js +43 -0
- package/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/uuid/package.json +135 -0
- package/node_modules/uuid/wrapper.mjs +10 -0
- package/package.json +5 -3
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/api.js +39 -23
- package/packages/daemon/src/introducer.js +21 -6
- package/packages/daemon/src/process.js +20 -2
- package/packages/daemon/src/providers/gemini.js +27 -28
- package/packages/gui/dist/assets/{index-VB4_k5Pz.js → index-BgTyFy4f.js} +331 -331
- package/packages/gui/dist/assets/{index-Bo6AeNmM.css → index-QADLyUj5.css} +1 -1
- package/packages/gui/dist/index.html +2 -2
- package/packages/gui/package.json +1 -1
- package/packages/gui/src/components/agents/agent-file-tree.jsx +68 -16
- package/packages/gui/src/components/agents/agent-panel.jsx +2 -0
- package/packages/gui/src/components/agents/code-review.jsx +9 -1
- package/packages/gui/src/components/agents/workspace-mode.jsx +2 -2
- package/packages/gui/src/components/editor/code-editor.jsx +1 -1
- package/packages/gui/src/stores/groove.js +40 -26
- package/packages/gui/src/views/agents.jsx +14 -65
- 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
|
+
}
|