@claude-flow/cli 3.14.3 → 3.14.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.14.3",
3
+ "version": "3.14.4",
4
4
  "type": "module",
5
5
  "description": "Ruflo CLI - Enterprise AI agent orchestration with 60+ specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
6
6
  "main": "dist/src/index.js",
@@ -50,7 +50,7 @@ const BASELINES_BY_DATASET = {
50
50
  const DATASET_RRF_WEIGHTS = {
51
51
  arguana: { dense: 1.0, bm25: 0.2 }, // iter 26: match nfcorpus/scifact recipe (aggressive dense)
52
52
  nfcorpus: { dense: 1.0, bm25: 0.0 }, // iter 14: pure dense fusion (0.2→0.0) RRF with single system + minMax norm preserved
53
- scifact: { dense: 1.0, bm25: 0.0 }, // iter 20: test nfcorpus winner recipe on scifact (0.2→0.0 pure dense)
53
+ scifact: { dense: 1.0, bm25: 0.05 }, // darwin iter2: small bm25 tie-breaker on top of pure dense (0.0→0.05)
54
54
  };
55
55
  function detectDataset(path) {
56
56
  const p = path.toLowerCase();