opencode-swarm-plugin 0.37.0 → 0.39.1
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/.env +2 -0
- package/.hive/eval-results.json +26 -0
- package/.hive/issues.jsonl +20 -5
- package/.hive/memories.jsonl +35 -1
- package/.opencode/eval-history.jsonl +12 -0
- package/.turbo/turbo-build.log +4 -4
- package/.turbo/turbo-test.log +319 -319
- package/CHANGELOG.md +258 -0
- package/README.md +50 -0
- package/bin/swarm.test.ts +475 -0
- package/bin/swarm.ts +385 -208
- package/dist/compaction-hook.d.ts +1 -1
- package/dist/compaction-hook.d.ts.map +1 -1
- package/dist/compaction-prompt-scoring.d.ts +124 -0
- package/dist/compaction-prompt-scoring.d.ts.map +1 -0
- package/dist/eval-capture.d.ts +81 -1
- package/dist/eval-capture.d.ts.map +1 -1
- package/dist/eval-gates.d.ts +84 -0
- package/dist/eval-gates.d.ts.map +1 -0
- package/dist/eval-history.d.ts +117 -0
- package/dist/eval-history.d.ts.map +1 -0
- package/dist/eval-learning.d.ts +216 -0
- package/dist/eval-learning.d.ts.map +1 -0
- package/dist/hive.d.ts +59 -0
- package/dist/hive.d.ts.map +1 -1
- package/dist/index.d.ts +87 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +823 -131
- package/dist/plugin.js +655 -131
- package/dist/post-compaction-tracker.d.ts +133 -0
- package/dist/post-compaction-tracker.d.ts.map +1 -0
- package/dist/swarm-decompose.d.ts +30 -0
- package/dist/swarm-decompose.d.ts.map +1 -1
- package/dist/swarm-orchestrate.d.ts +23 -0
- package/dist/swarm-orchestrate.d.ts.map +1 -1
- package/dist/swarm-prompts.d.ts +25 -1
- package/dist/swarm-prompts.d.ts.map +1 -1
- package/dist/swarm.d.ts +19 -0
- package/dist/swarm.d.ts.map +1 -1
- package/evals/README.md +595 -94
- package/evals/compaction-prompt.eval.ts +149 -0
- package/evals/coordinator-behavior.eval.ts +8 -8
- package/evals/fixtures/compaction-prompt-cases.ts +305 -0
- package/evals/lib/compaction-loader.test.ts +248 -0
- package/evals/lib/compaction-loader.ts +320 -0
- package/evals/lib/data-loader.test.ts +345 -0
- package/evals/lib/data-loader.ts +107 -6
- package/evals/scorers/compaction-prompt-scorers.ts +145 -0
- package/evals/scorers/compaction-scorers.ts +13 -13
- package/evals/scorers/coordinator-discipline.evalite-test.ts +3 -2
- package/evals/scorers/coordinator-discipline.ts +13 -13
- package/examples/plugin-wrapper-template.ts +177 -8
- package/package.json +7 -2
- package/scripts/migrate-unknown-sessions.ts +349 -0
- package/src/compaction-capture.integration.test.ts +257 -0
- package/src/compaction-hook.test.ts +139 -2
- package/src/compaction-hook.ts +113 -2
- package/src/compaction-prompt-scorers.test.ts +299 -0
- package/src/compaction-prompt-scoring.ts +298 -0
- package/src/eval-capture.test.ts +422 -0
- package/src/eval-capture.ts +94 -2
- package/src/eval-gates.test.ts +306 -0
- package/src/eval-gates.ts +218 -0
- package/src/eval-history.test.ts +508 -0
- package/src/eval-history.ts +214 -0
- package/src/eval-learning.test.ts +378 -0
- package/src/eval-learning.ts +360 -0
- package/src/index.ts +61 -1
- package/src/post-compaction-tracker.test.ts +251 -0
- package/src/post-compaction-tracker.ts +237 -0
- package/src/swarm-decompose.test.ts +40 -47
- package/src/swarm-decompose.ts +2 -2
- package/src/swarm-orchestrate.test.ts +270 -7
- package/src/swarm-orchestrate.ts +100 -13
- package/src/swarm-prompts.test.ts +121 -0
- package/src/swarm-prompts.ts +297 -4
- package/src/swarm-research.integration.test.ts +157 -0
- package/src/swarm-review.ts +3 -3
- /package/evals/{evalite.config.ts → evalite.config.ts.bak} +0 -0
package/.env
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compaction-prompt": {
|
|
3
|
+
"passed": true,
|
|
4
|
+
"phase": "bootstrap",
|
|
5
|
+
"message": "Bootstrap phase (1/10 runs) - collecting data",
|
|
6
|
+
"currentScore": 0.85
|
|
7
|
+
},
|
|
8
|
+
"coordinator-behavior": {
|
|
9
|
+
"passed": true,
|
|
10
|
+
"phase": "bootstrap",
|
|
11
|
+
"message": "Bootstrap phase (1/10 runs) - collecting data",
|
|
12
|
+
"currentScore": 0.85
|
|
13
|
+
},
|
|
14
|
+
"coordinator-session": {
|
|
15
|
+
"passed": true,
|
|
16
|
+
"phase": "bootstrap",
|
|
17
|
+
"message": "Bootstrap phase (1/10 runs) - collecting data",
|
|
18
|
+
"currentScore": 0.85
|
|
19
|
+
},
|
|
20
|
+
"swarm-decomposition": {
|
|
21
|
+
"passed": true,
|
|
22
|
+
"phase": "bootstrap",
|
|
23
|
+
"message": "Bootstrap phase (1/10 runs) - collecting data",
|
|
24
|
+
"currentScore": 0.85
|
|
25
|
+
}
|
|
26
|
+
}
|
package/.hive/issues.jsonl
CHANGED
|
@@ -17,8 +17,23 @@
|
|
|
17
17
|
{"id":"opencode-swarm-plugin--ys7z8-mjkn1kg8qrn","title":"Events pane component with live tail","status":"open","priority":2,"issue_type":"task","created_at":"2025-12-24T23:21:42.344Z","updated_at":"2025-12-24T23:21:42.344Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkn1kfmt00","dependencies":[],"labels":[],"comments":[]}
|
|
18
18
|
{"id":"opencode-swarm-plugin--ys7z8-mjkn1kga43j","title":"Cells pane component with tree view","status":"open","priority":2,"issue_type":"task","created_at":"2025-12-24T23:21:42.346Z","updated_at":"2025-12-24T23:21:42.346Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkn1kfmt00","dependencies":[],"labels":[],"comments":[]}
|
|
19
19
|
{"id":"opencode-swarm-plugin--ys7z8-mjkn1kgcjpl","title":"Main layout + CLI entry point","status":"open","priority":3,"issue_type":"task","created_at":"2025-12-24T23:21:42.348Z","updated_at":"2025-12-24T23:21:42.348Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkn1kfmt00","dependencies":[],"labels":[],"comments":[]}
|
|
20
|
-
{"id":"opencode-swarm-plugin--ys7z8-
|
|
21
|
-
{"id":"opencode-swarm-plugin--ys7z8-
|
|
22
|
-
{"id":"opencode-swarm-plugin--ys7z8-
|
|
23
|
-
{"id":"opencode-swarm-plugin--ys7z8-
|
|
24
|
-
{"id":"opencode-swarm-plugin--ys7z8-
|
|
20
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkn5xozcd6","title":"Wire captureDecomposition() into swarm_decompose","status":"closed","priority":0,"issue_type":"task","created_at":"2025-12-24T23:25:06.131Z","updated_at":"2025-12-24T23:34:22.895Z","closed_at":"2025-12-24T23:34:22.895Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkn5xocowf","dependencies":[],"labels":[],"comments":[]}
|
|
21
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjknrr4aqj0","title":"Add OAuth","description":"Implement OAuth authentication","status":"open","priority":1,"issue_type":"epic","created_at":"2025-12-24T23:42:04.042Z","updated_at":"2025-12-24T23:42:04.042Z","dependencies":[],"labels":[],"comments":[]}
|
|
22
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjknrr4ghia","title":"Add auth service","status":"open","priority":2,"issue_type":"task","created_at":"2025-12-24T23:42:04.048Z","updated_at":"2025-12-24T23:42:04.048Z","parent_id":"opencode-swarm-plugin--ys7z8-mjknrr4aqj0","dependencies":[],"labels":[],"comments":[]}
|
|
23
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjknrr4ssue","title":"Fix bug","status":"open","priority":1,"issue_type":"epic","created_at":"2025-12-24T23:42:04.060Z","updated_at":"2025-12-24T23:42:04.060Z","dependencies":[],"labels":[],"comments":[]}
|
|
24
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjknrr4uw8i","title":"Fix auth bug","status":"open","priority":1,"issue_type":"task","created_at":"2025-12-24T23:42:04.062Z","updated_at":"2025-12-24T23:42:04.062Z","parent_id":"opencode-swarm-plugin--ys7z8-mjknrr4ssue","dependencies":[],"labels":[],"comments":[]}
|
|
25
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkn5xocowf","title":"Wire Up Decomposition Eval Capture Pipeline","description":"Connect the existing eval-capture.ts functions to the swarm execution path so decomposition outcomes are recorded for evaluation.\n\n## Problem\nThe eval-capture.ts file has capture functions that are never called:\n- `captureDecomposition()` - not called from swarm_decompose\n- `captureSubtaskOutcome()` - not called from swarm_complete \n- `finalizeEvalRecord()` - not called from swarm_record_outcome\n\nCompare to coordinator events which ARE captured via `captureCoordinatorEvent()`.\n\n## Solution\nWire up the three capture functions to their respective tools:\n\n1. **swarm_decompose** → `captureDecomposition()`\n2. **swarm_complete** → `captureSubtaskOutcome()`\n3. **swarm_record_outcome** → `finalizeEvalRecord()`\n\n## Deliverables\n- Integration code in swarm tools\n- Tests verifying capture works\n- Updated README with eval workflow\n- Easy-to-run scripts in package.json\n\n## Success Criteria\n- `bunx evalite run evals/swarm-decomposition.eval.ts` passes (no missing table error)\n- After running a swarm, eval_records table has data\n- `pnpm eval:run` script works","status":"closed","priority":1,"issue_type":"epic","created_at":"2025-12-24T23:25:06.108Z","updated_at":"2025-12-24T23:52:10.847Z","closed_at":"2025-12-24T23:52:10.847Z","dependencies":[],"labels":[],"comments":[]}
|
|
26
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkn5xp1blq","title":"Wire captureSubtaskOutcome() into swarm_complete","status":"closed","priority":0,"issue_type":"task","created_at":"2025-12-24T23:25:06.133Z","updated_at":"2025-12-24T23:52:01.496Z","closed_at":"2025-12-24T23:52:01.496Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkn5xocowf","dependencies":[],"labels":[],"comments":[]}
|
|
27
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkn5xp41f2","title":"Wire finalizeEvalRecord() into swarm_record_outcome","status":"closed","priority":0,"issue_type":"task","created_at":"2025-12-24T23:25:06.136Z","updated_at":"2025-12-24T23:52:02.719Z","closed_at":"2025-12-24T23:52:02.719Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkn5xocowf","dependencies":[],"labels":[],"comments":[]}
|
|
28
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkn5xp793w","title":"Add eval scripts to package.json and update README","status":"closed","priority":1,"issue_type":"task","created_at":"2025-12-24T23:25:06.139Z","updated_at":"2025-12-24T23:52:04.385Z","closed_at":"2025-12-24T23:52:04.385Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkn5xocowf","dependencies":[],"labels":[],"comments":[]}
|
|
29
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkvvysb1bk","title":"Fix Eval Pipeline: Database Table + Scorer API","description":"Two fixes: 1) Ensure eval_records table is created when swarm-mail database initializes, 2) Fix composite scorer API usage in evalite tests","status":"closed","priority":1,"issue_type":"epic","created_at":"2025-12-25T03:29:17.531Z","updated_at":"2025-12-25T03:42:14.497Z","closed_at":"2025-12-25T03:42:14.497Z","dependencies":[],"labels":[],"comments":[]}
|
|
30
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkvvysjyrv","title":"Verify eval_records table creation in swarm-mail","status":"closed","priority":1,"issue_type":"task","created_at":"2025-12-25T03:29:17.539Z","updated_at":"2025-12-25T03:40:16.396Z","closed_at":"2025-12-25T03:40:16.396Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkvvysb1bk","dependencies":[],"labels":[],"comments":[]}
|
|
31
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkvvysl8ye","title":"Fix composite scorer API in coordinator-discipline.ts","status":"closed","priority":1,"issue_type":"task","created_at":"2025-12-25T03:29:17.541Z","updated_at":"2025-12-25T03:40:17.922Z","closed_at":"2025-12-25T03:40:17.922Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkvvysb1bk","dependencies":[],"labels":[],"comments":[]}
|
|
32
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkvvysnzae","title":"Fix composite scorer API in compaction-scorers.ts","status":"closed","priority":2,"issue_type":"task","created_at":"2025-12-25T03:29:17.543Z","updated_at":"2025-12-25T03:40:19.200Z","closed_at":"2025-12-25T03:40:19.200Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkvvysb1bk","dependencies":[],"labels":[],"comments":[]}
|
|
33
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkvvysrwgk","title":"Fix composite scorer API in coordinator-behavior.eval.ts","status":"closed","priority":2,"issue_type":"task","created_at":"2025-12-25T03:29:17.547Z","updated_at":"2025-12-25T03:42:04.249Z","closed_at":"2025-12-25T03:42:04.249Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkvvysb1bk","dependencies":[],"labels":[],"comments":[]}
|
|
34
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkwt9rqf2s","title":"Fix session ID propagation in eval capture","description":"Session IDs not flowing to captureCoordinatorEvent - 82% of events orphaned in unknown.jsonl. Root cause: swarm tools use process.env.OPENCODE_SESSION_ID which is not set, instead of ctx.sessionID which IS available.","status":"closed","priority":1,"issue_type":"epic","created_at":"2025-12-25T03:55:11.414Z","updated_at":"2025-12-25T04:14:23.283Z","closed_at":"2025-12-25T04:14:23.283Z","dependencies":[],"labels":[],"comments":[]}
|
|
35
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkwt9rzlw3","title":"Add sessionId parameter to captureCoordinatorEvent and update call sites","status":"closed","priority":0,"issue_type":"task","created_at":"2025-12-25T03:55:11.423Z","updated_at":"2025-12-25T04:05:28.792Z","closed_at":"2025-12-25T04:05:28.792Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkwt9rqf2s","dependencies":[],"labels":[],"comments":[]}
|
|
36
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkwt9s2boa","title":"Create migration script to re-attribute unknown.jsonl events to proper sessions","status":"closed","priority":1,"issue_type":"task","created_at":"2025-12-25T03:55:11.426Z","updated_at":"2025-12-25T04:05:29.764Z","closed_at":"2025-12-25T04:05:29.764Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkwt9rqf2s","dependencies":[],"labels":[],"comments":[]}
|
|
37
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkwt9s6xoa","title":"Run migration and verify data integrity","status":"closed","priority":2,"issue_type":"task","created_at":"2025-12-25T03:55:11.430Z","updated_at":"2025-12-25T04:14:16.676Z","closed_at":"2025-12-25T04:14:16.676Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkwt9rqf2s","dependencies":[],"labels":[],"comments":[]}
|
|
38
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkyhrqmecc","title":"Add quality gate filters to eval session loader","description":"Filter eval sessions by quality signals: minEvents >= 3, hasWorkerSpawn, hasReviewCompleted. Currently 67 of 82 sessions are noise (<3 events). Quality gate will keep ~15 high-signal sessions.","status":"closed","priority":1,"issue_type":"epic","created_at":"2025-12-25T04:42:14.062Z","updated_at":"2025-12-25T04:49:40.809Z","closed_at":"2025-12-25T04:49:40.809Z","dependencies":[],"labels":[],"comments":[]}
|
|
39
|
+
{"id":"opencode-swarm-plugin--ys7z8-mjkyhrr2qm7","title":"Add quality filter options to loadCapturedSessions with TDD","status":"closed","priority":0,"issue_type":"task","created_at":"2025-12-25T04:42:14.078Z","updated_at":"2025-12-25T04:49:39.904Z","closed_at":"2025-12-25T04:49:39.904Z","parent_id":"opencode-swarm-plugin--ys7z8-mjkyhrqmecc","dependencies":[],"labels":[],"comments":[]}
|
package/.hive/memories.jsonl
CHANGED
|
@@ -534,4 +534,38 @@
|
|
|
534
534
|
{"id":"mem_mjkbhrfa_hzcy46u","information":"Findable test memory with unique keyword xyztest123","created_at":"2025-12-24T17:58:22.486Z"}
|
|
535
535
|
{"id":"mem_mjkbhu60_nv8kufy","information":"Test memory for adapter wiring verification","created_at":"2025-12-24T17:58:26.040Z","tags":"test,memory"}
|
|
536
536
|
{"id":"mem_mjkbhubx_bdx22vh","information":"OAuth refresh tokens need 5min buffer before expiry","created_at":"2025-12-24T17:58:26.253Z","metadata":"{\"raw\":\"auth,tokens,oauth\"}","tags":"auth,integration-test"}
|
|
537
|
-
{"id":"mem_mjkbhuf0_0s26nsz","information":"Smoke test verified full tool adapter wiring works end-to-end","created_at":"2025-12-24T17:58:26.364Z","tags":"test,verification"}
|
|
537
|
+
{"id":"mem_mjkbhuf0_0s26nsz","information":"Smoke test verified full tool adapter wiring works end-to-end","created_at":"2025-12-24T17:58:26.364Z","tags":"test,verification"}
|
|
538
|
+
{"id":"mem_mjki3x94_epfn9bx","information":"Test memory for tools integration","created_at":"2025-12-24T21:03:34.168Z","tags":"test"}
|
|
539
|
+
{"id":"mem_mjki3xt5_x48dvkv","information":"Findable test memory with unique keyword xyztest123","created_at":"2025-12-24T21:03:34.889Z"}
|
|
540
|
+
{"id":"mem_mjki5ifa_il44eaz","information":"Test memory for tools integration","created_at":"2025-12-24T21:04:48.262Z","tags":"test"}
|
|
541
|
+
{"id":"mem_mjki5iqd_rpfwxxh","information":"Findable test memory with unique keyword xyztest123","created_at":"2025-12-24T21:04:48.661Z"}
|
|
542
|
+
{"id":"mem_mjki5oqz_9hdazvo","information":"Test memory for adapter wiring verification","created_at":"2025-12-24T21:04:56.459Z","tags":"test,memory"}
|
|
543
|
+
{"id":"mem_mjki5otl_zpsqgba","information":"OAuth refresh tokens need 5min buffer before expiry","created_at":"2025-12-24T21:04:56.553Z","metadata":"{\"raw\":\"auth,tokens,oauth\"}","tags":"auth,integration-test"}
|
|
544
|
+
{"id":"mem_mjki5oxd_qf680ek","information":"Smoke test verified full tool adapter wiring works end-to-end","created_at":"2025-12-24T21:04:56.689Z","tags":"test,verification"}
|
|
545
|
+
{"id":"mem_mjkifo3z_48h5mta","information":"Test memory for tools integration","created_at":"2025-12-24T21:12:42.191Z","tags":"test"}
|
|
546
|
+
{"id":"mem_mjkifog0_kyrf1i8","information":"Findable test memory with unique keyword xyztest123","created_at":"2025-12-24T21:12:42.624Z"}
|
|
547
|
+
{"id":"mem_mjkifrmb_cfzpsbl","information":"Test memory for adapter wiring verification","created_at":"2025-12-24T21:12:46.739Z","tags":"test,memory"}
|
|
548
|
+
{"id":"mem_mjkifrp8_6p3hyc0","information":"OAuth refresh tokens need 5min buffer before expiry","created_at":"2025-12-24T21:12:46.844Z","metadata":"{\"raw\":\"auth,tokens,oauth\"}","tags":"auth,integration-test"}
|
|
549
|
+
{"id":"mem_mjkifrty_n2obcci","information":"Smoke test verified full tool adapter wiring works end-to-end","created_at":"2025-12-24T21:12:47.014Z","tags":"test,verification"}
|
|
550
|
+
{"id":"mem_mjkvzysv_sc2t9vz","information":"Test memory for tools integration","created_at":"2025-12-25T03:32:24.175Z","tags":"test"}
|
|
551
|
+
{"id":"mem_mjkvzzi6_1p6e6a9","information":"Findable test memory with unique keyword xyztest123","created_at":"2025-12-25T03:32:25.086Z"}
|
|
552
|
+
{"id":"mem_mjkw8n77_qjdsp7f","information":"Test memory for tools integration","created_at":"2025-12-25T03:39:09.043Z","tags":"test"}
|
|
553
|
+
{"id":"mem_mjkw8njx_i8h8cyh","information":"Findable test memory with unique keyword xyztest123","created_at":"2025-12-25T03:39:09.501Z"}
|
|
554
|
+
{"id":"mem_mjkw8rmk_f6hitx1","information":"Test memory for adapter wiring verification","created_at":"2025-12-25T03:39:14.780Z","tags":"test,memory"}
|
|
555
|
+
{"id":"mem_mjkw8rpm_lje9arh","information":"OAuth refresh tokens need 5min buffer before expiry","created_at":"2025-12-25T03:39:14.890Z","metadata":"{\"raw\":\"auth,tokens,oauth\"}","tags":"auth,integration-test"}
|
|
556
|
+
{"id":"mem_mjkw8rtm_adjnpml","information":"Smoke test verified full tool adapter wiring works end-to-end","created_at":"2025-12-25T03:39:15.034Z","tags":"test,verification"}
|
|
557
|
+
{"id":"mem_mjkwmbkm_33rhosw","information":"Test memory for tools integration","created_at":"2025-12-25T03:49:47.158Z","tags":"test"}
|
|
558
|
+
{"id":"mem_mjkwmc55_9oi3pyz","information":"Findable test memory with unique keyword xyztest123","created_at":"2025-12-25T03:49:47.897Z"}
|
|
559
|
+
{"id":"mem_mjkwmg5h_07q5cqq","information":"Test memory for adapter wiring verification","created_at":"2025-12-25T03:49:53.093Z","tags":"test,memory"}
|
|
560
|
+
{"id":"mem_mjkwmg9a_evvx6t6","information":"OAuth refresh tokens need 5min buffer before expiry","created_at":"2025-12-25T03:49:53.230Z","metadata":"{\"raw\":\"auth,tokens,oauth\"}","tags":"auth,integration-test"}
|
|
561
|
+
{"id":"mem_mjkwmge4_2pkurm7","information":"Smoke test verified full tool adapter wiring works end-to-end","created_at":"2025-12-25T03:49:53.404Z","tags":"test,verification"}
|
|
562
|
+
{"id":"mem_mjkx05sw_izlcsfs","information":"Test memory for tools integration","created_at":"2025-12-25T04:00:32.864Z","tags":"test"}
|
|
563
|
+
{"id":"mem_mjkx067y_b9hn5qi","information":"Findable test memory with unique keyword xyztest123","created_at":"2025-12-25T04:00:33.406Z"}
|
|
564
|
+
{"id":"mem_mjkx09hf_ygskd44","information":"Test memory for adapter wiring verification","created_at":"2025-12-25T04:00:37.635Z","tags":"test,memory"}
|
|
565
|
+
{"id":"mem_mjkx09lg_hwd8wid","information":"OAuth refresh tokens need 5min buffer before expiry","created_at":"2025-12-25T04:00:37.780Z","metadata":"{\"raw\":\"auth,tokens,oauth\"}","tags":"auth,integration-test"}
|
|
566
|
+
{"id":"mem_mjkx09p9_lc3whf6","information":"Smoke test verified full tool adapter wiring works end-to-end","created_at":"2025-12-25T04:00:37.917Z","tags":"test,verification"}
|
|
567
|
+
{"id":"mem_mjkxgljy_xvyprn1","information":"Test memory for tools integration","created_at":"2025-12-25T04:13:19.774Z","tags":"test"}
|
|
568
|
+
{"id":"mem_mjkxglqg_5ojok3n","information":"Findable test memory with unique keyword xyztest123","created_at":"2025-12-25T04:13:20.008Z"}
|
|
569
|
+
{"id":"mem_mjkxgogk_48pml1f","information":"Test memory for adapter wiring verification","created_at":"2025-12-25T04:13:23.540Z","tags":"test,memory"}
|
|
570
|
+
{"id":"mem_mjkxgomk_mm0hvqg","information":"OAuth refresh tokens need 5min buffer before expiry","created_at":"2025-12-25T04:13:23.756Z","metadata":"{\"raw\":\"auth,tokens,oauth\"}","tags":"auth,integration-test"}
|
|
571
|
+
{"id":"mem_mjkxgopz_mqvrw0z","information":"Smoke test verified full tool adapter wiring works end-to-end","created_at":"2025-12-25T04:13:23.879Z","tags":"test,verification"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{"timestamp":"2025-12-25T04:28:42.041Z","eval_name":"compaction-prompt","score":0.85,"run_count":1}
|
|
2
|
+
{"timestamp":"2025-12-25T04:28:42.041Z","eval_name":"coordinator-behavior","score":0.85,"run_count":1}
|
|
3
|
+
{"timestamp":"2025-12-25T04:28:42.042Z","eval_name":"coordinator-session","score":0.85,"run_count":1}
|
|
4
|
+
{"timestamp":"2025-12-25T04:28:42.042Z","eval_name":"swarm-decomposition","score":0.85,"run_count":1}
|
|
5
|
+
{"timestamp":"2025-12-25T04:28:52.405Z","eval_name":"compaction-prompt","score":0.85,"run_count":2}
|
|
6
|
+
{"timestamp":"2025-12-25T04:28:52.405Z","eval_name":"coordinator-behavior","score":0.85,"run_count":2}
|
|
7
|
+
{"timestamp":"2025-12-25T04:28:52.405Z","eval_name":"coordinator-session","score":0.85,"run_count":2}
|
|
8
|
+
{"timestamp":"2025-12-25T04:28:52.405Z","eval_name":"swarm-decomposition","score":0.85,"run_count":2}
|
|
9
|
+
{"timestamp":"2025-12-25T05:11:18.469Z","eval_name":"compaction-prompt","score":0.85,"run_count":3}
|
|
10
|
+
{"timestamp":"2025-12-25T05:11:18.469Z","eval_name":"coordinator-behavior","score":0.85,"run_count":3}
|
|
11
|
+
{"timestamp":"2025-12-25T05:11:18.469Z","eval_name":"coordinator-session","score":0.85,"run_count":3}
|
|
12
|
+
{"timestamp":"2025-12-25T05:11:18.469Z","eval_name":"swarm-decomposition","score":0.85,"run_count":3}
|
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
$ bun build ./src/index.ts --outdir ./dist --target node --external @electric-sql/pglite --external swarm-mail && bun build ./src/plugin.ts --outfile ./dist/plugin.js --target node --external @electric-sql/pglite --external swarm-mail && tsc
|
|
2
|
-
Bundled 917 modules in
|
|
2
|
+
Bundled 917 modules in 237ms
|
|
3
3
|
|
|
4
|
-
index.js 2.
|
|
4
|
+
index.js 2.16 MB (entry point)
|
|
5
5
|
|
|
6
|
-
Bundled 918 modules in
|
|
6
|
+
Bundled 918 modules in 82ms
|
|
7
7
|
|
|
8
|
-
plugin.js 2.
|
|
8
|
+
plugin.js 2.12 MB (entry point)
|
|
9
9
|
|