claude-flow 3.5.74 → 3.5.75
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",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.75",
|
|
4
4
|
"description": "Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -394,7 +394,10 @@ export class LoRAAdapter {
|
|
|
394
394
|
if (pipeline) {
|
|
395
395
|
try {
|
|
396
396
|
pipeline.saveCheckpoint(path);
|
|
397
|
-
|
|
397
|
+
// Verify ruvllm actually wrote the file (some versions are no-op)
|
|
398
|
+
const fs = await import('fs');
|
|
399
|
+
if (fs.existsSync(path))
|
|
400
|
+
return true;
|
|
398
401
|
}
|
|
399
402
|
catch { /* fall through to JS fallback */ }
|
|
400
403
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/cli",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.75",
|
|
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",
|