claude-flow 2.7.10 → 2.7.11
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/bin/claude-flow
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-flow",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.11",
|
|
4
4
|
"description": "Enterprise-grade AI agent orchestration with WASM-powered ReasoningBank memory and AgentDB vector database (always uses latest agentic-flow)",
|
|
5
5
|
"mcpName": "io.github.ruvnet/claude-flow",
|
|
6
6
|
"main": "cli.mjs",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"format": "prettier --write 'src/**/*.{ts,js,json}'",
|
|
51
51
|
"diagnostics": "node -e \"import('./dist/monitoring/diagnostics.js').then(m => m.DiagnosticManager.quickDiagnostic().then(console.log))\"",
|
|
52
52
|
"health-check": "node -e \"import('./dist/monitoring/health-check.js').then(m => new m.HealthCheckManager().performHealthCheck().then(console.log))\"",
|
|
53
|
-
"postinstall": "node scripts/install-arm64.js && bash scripts/fix-agentdb-imports.sh",
|
|
53
|
+
"postinstall": "node scripts/install-arm64.js || true && bash scripts/fix-agentdb-imports.sh || true",
|
|
54
54
|
"prepublishOnly": "npm run update-version",
|
|
55
55
|
"publish:alpha": "npm publish --tag alpha",
|
|
56
56
|
"publish:major": "npm version major && npm publish",
|
package/scripts/install-arm64.js
CHANGED
|
@@ -11,6 +11,7 @@ async function checkSqliteBindings() {
|
|
|
11
11
|
db.close();
|
|
12
12
|
return true;
|
|
13
13
|
} catch (error) {
|
|
14
|
+
// Silently fail - this is expected when better-sqlite3 doesn't compile
|
|
14
15
|
return false;
|
|
15
16
|
}
|
|
16
17
|
}
|
|
@@ -75,4 +76,8 @@ async function main() {
|
|
|
75
76
|
}
|
|
76
77
|
|
|
77
78
|
// Run the installation enhancement
|
|
78
|
-
|
|
79
|
+
// Exit with 0 even if there are errors - this is a best-effort script
|
|
80
|
+
main().catch(() => {
|
|
81
|
+
// Silently ignore errors - better-sqlite3 is optional
|
|
82
|
+
process.exit(0);
|
|
83
|
+
});
|
|
File without changes
|