@claude-flow/cli 3.38.2 → 3.38.3

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "manifest": {
3
- "version": "3.38.2",
3
+ "version": "3.38.3",
4
4
  "files": {
5
5
  "auto-memory-hook.mjs": "85fe05c757421c52137c0bc8545a0896bab6b4714538c2a11d1d0835bfcc8c1c",
6
6
  "hook-handler.cjs": "dae295fb9ae2626b89899c19a20cc911541af82b52d2eeb9b214d618b96e9a86",
@@ -8,6 +8,6 @@
8
8
  "statusline.cjs": "0457fe53f8cd2c56458ff178392536a5868efd1a573665fa43bc01d2d95ca677"
9
9
  }
10
10
  },
11
- "signature": "aUyZD8VBc8slPjWIexWvx5vD6cF9ms5YKEDvLl+6WSX8Y0hrtXQgSs42Bmetyqj0LTRW5+W9GF3kUNB6zGiDBw==",
11
+ "signature": "+LCCU+BDg+NJQxxOVYmhpNNzgWAi4NXNYtdiNueujCaLjkoKboJs5MKThbWd7PHp7D9b+RjgqO9VMvCUWA41CQ==",
12
12
  "algorithm": "ed25519"
13
13
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "generation": 4,
4
- "generatedAt": "2026-08-12T15:41:12.144Z",
5
- "gitSha": "87f4f8ab",
4
+ "generatedAt": "2026-08-12T18:13:50.566Z",
5
+ "gitSha": "1e2178f2",
6
6
  "catalog": {
7
7
  "agents": 164,
8
8
  "tools": 397,
@@ -2194,7 +2194,12 @@ const intelligenceCommand = {
2194
2194
  tokenReduction: 'N/A',
2195
2195
  sweBenchScore: 'N/A',
2196
2196
  },
2197
- lastTrainingMs: lastAdaptation ? Date.now() - lastAdaptation : undefined,
2197
+ // #2940: a training cycle that actually ran this invocation is "now"
2198
+ // — reading the pre-call `lastAdaptation` here would still show the
2199
+ // stale age (the exact "aged instead of reset" symptom reported).
2200
+ lastTrainingMs: mcpResult?.training?.trained
2201
+ ? 0
2202
+ : (lastAdaptation ? Date.now() - lastAdaptation : undefined),
2198
2203
  persistence: {
2199
2204
  dataDir: persistence.dataDir,
2200
2205
  patternsFile: persistence.patternsFile,
@@ -2206,10 +2211,34 @@ const intelligenceCommand = {
2206
2211
  trajectoriesFromDisk,
2207
2212
  },
2208
2213
  };
2214
+ // #2940: this block used to be a cosmetic 500ms sleep followed by an
2215
+ // unconditional "Training cycle completed" — no training ever ran and
2216
+ // `lastAdaptation` never moved, so `--status` could never report a
2217
+ // training cycle as recent no matter how many times `--train` was
2218
+ // invoked. `hooks_intelligence` now actually distills when asked
2219
+ // (see mcp-tools/hooks-tools.ts); report what it actually did instead
2220
+ // of a canned success message.
2221
+ const trainingResult = mcpResult?.training;
2209
2222
  if (forceTraining) {
2210
- spinner.setText('Running training cycle...');
2211
- await new Promise(resolve => setTimeout(resolve, 500));
2212
- spinner.succeed('Training cycle completed');
2223
+ if (trainingResult?.trained && trainingResult.patternsDistilled) {
2224
+ spinner.succeed(`Training cycle completed distilled ${trainingResult.patternsDistilled} pattern${trainingResult.patternsDistilled === 1 ? '' : 's'}`);
2225
+ }
2226
+ else if (trainingResult?.trained) {
2227
+ // Ran (SONA/EWC++ distillation pass executed, lastAdaptation
2228
+ // moved) but found zero new patterns — deliberately NOT the same
2229
+ // message as a real distillation, or this is exactly the "success
2230
+ // report with no state change behind it" the issue describes.
2231
+ spinner.stop();
2232
+ output.printWarning(`Training cycle ran — 0 new patterns to distill (${trainingResult.reason || 'nothing new since the last cycle'})`);
2233
+ }
2234
+ else if (trainingResult?.attempted) {
2235
+ spinner.stop();
2236
+ output.printWarning(`Training cycle ran with nothing to do — ${trainingResult.reason || 'no new trajectories to distill'}`);
2237
+ }
2238
+ else {
2239
+ spinner.stop();
2240
+ output.printWarning('Training cycle could not run — intelligence MCP tool unavailable');
2241
+ }
2213
2242
  }
2214
2243
  else {
2215
2244
  spinner.succeed(hasLocalData ? 'Intelligence system active (local data loaded)' : 'Intelligence system active');
@@ -2360,7 +2360,39 @@ export const hooksIntelligence = {
2360
2360
  const flashAvailable = (await getFlashAttention()) !== null;
2361
2361
  const ewcAvailable = (await getEWCConsolidator()) !== null;
2362
2362
  const loraAvailable = (await getLoRAAdapter()) !== null;
2363
+ // #2940: `forceTraining` (CLI `hooks intelligence --train`) was declared
2364
+ // on this tool's input schema but never read — the handler always
2365
+ // returned the same read-only status dashboard, so `lastAdaptation`
2366
+ // (what `--status` reports as "Last Training") could never move no
2367
+ // matter how many times `--train` ran. Actually distill when asked,
2368
+ // and report honestly rather than always implying success:
2369
+ // `attempted: false` (flag not passed), `trained: true` (real work
2370
+ // happened, lastAdaptation now current), or `trained: false` with a
2371
+ // reason (nothing new to distill, or distillation unavailable).
2372
+ const training = { attempted: false, trained: false };
2373
+ if (params.forceTraining) {
2374
+ training.attempted = true;
2375
+ try {
2376
+ const { distillLearning } = await import('../memory/intelligence.js');
2377
+ const result = await distillLearning();
2378
+ if (result) {
2379
+ training.trained = true;
2380
+ training.patternsDistilled = result.patternsDistilled;
2381
+ training.ewcPenalty = result.ewcPenalty;
2382
+ if (result.patternsDistilled === 0) {
2383
+ training.reason = 'no new trajectories to distill since the last training cycle';
2384
+ }
2385
+ }
2386
+ else {
2387
+ training.reason = 'intelligence system unavailable — could not initialize SONA/ReasoningBank';
2388
+ }
2389
+ }
2390
+ catch (error) {
2391
+ training.reason = `distillation failed: ${error instanceof Error ? error.message : String(error)}`;
2392
+ }
2393
+ }
2363
2394
  return {
2395
+ training,
2364
2396
  mode,
2365
2397
  status: 'active',
2366
2398
  components: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@claude-flow/cli",
3
- "version": "3.38.2",
3
+ "version": "3.38.3",
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",