opencode-swarm-plugin 0.53.0 → 0.54.2
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/README.md +14 -0
- package/dist/bin/swarm.js +276629 -41930
- package/dist/index.js +1017 -478
- package/dist/learning.d.ts +30 -0
- package/dist/learning.d.ts.map +1 -1
- package/dist/plugin.js +1017 -149
- package/dist/swarm-orchestrate.d.ts.map +1 -1
- package/dist/swarm-prompts.js +1000 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -498,6 +498,20 @@ When eval scores drop >15% from baseline, failure context is automatically store
|
|
|
498
498
|
|
|
499
499
|
See **[evals/README.md](./evals/README.md)** for full architecture, scorer details, CI integration, and how to write new evals.
|
|
500
500
|
|
|
501
|
+
### Maintenance
|
|
502
|
+
|
|
503
|
+
**Clean test session files:**
|
|
504
|
+
|
|
505
|
+
```bash
|
|
506
|
+
# Remove test session files from global sessions directory
|
|
507
|
+
./scripts/clean-test-sessions.sh
|
|
508
|
+
|
|
509
|
+
# Dry run (see what would be deleted)
|
|
510
|
+
./scripts/clean-test-sessions.sh --dry-run
|
|
511
|
+
```
|
|
512
|
+
|
|
513
|
+
Test session files (`test*.jsonl`, `no-context*.jsonl`, `timing-test*.jsonl`) accumulate in `~/.config/swarm-tools/sessions/` during development. Run this script periodically to clean them up.
|
|
514
|
+
|
|
501
515
|
---
|
|
502
516
|
|
|
503
517
|
## CLI Reference
|