@claude-flow/cli 3.18.1 → 3.18.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.
@@ -1 +1 @@
1
- {"version":3,"file":"neural.d.ts","sourceRoot":"","sources":["../../../src/commands/neural.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAiC,MAAM,aAAa,CAAC;AAwpI1E,eAAO,MAAM,aAAa,EAAE,OAmB3B,CAAC;AAEF,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"neural.d.ts","sourceRoot":"","sources":["../../../src/commands/neural.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAiC,MAAM,aAAa,CAAC;AAmqI1E,eAAO,MAAM,aAAa,EAAE,OAmB3B,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -469,8 +469,20 @@ const statusCommand = {
469
469
  {
470
470
  component: 'Training Pipeline',
471
471
  status: stats._trainingBackend === 'ruvllm' ? output.success('Available') : output.dim(stats._trainingBackend || 'Unavailable'),
472
+ // Checkpoint capability is version-gated: saveCheckpoint(path)
473
+ // was a silent no-op before @ruvector/ruvllm 2.5.7 (#2549).
472
474
  details: stats._trainingBackend === 'ruvllm'
473
- ? 'native @ruvector/ruvllm pipeline'
475
+ ? await (async () => {
476
+ try {
477
+ const { nativeCheckpointsSupported } = await import('../ruvector/lora-adapter.js');
478
+ return nativeCheckpointsSupported()
479
+ ? 'native @ruvector/ruvllm pipeline + disk checkpoints'
480
+ : 'native @ruvector/ruvllm pipeline (checkpoints need >=2.5.7)';
481
+ }
482
+ catch {
483
+ return 'native @ruvector/ruvllm pipeline';
484
+ }
485
+ })()
474
486
  : 'JS fallback',
475
487
  },
476
488
  await (async () => {