claude-flow 2.7.9 → 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
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
  # Claude-Flow Smart Dispatcher - Detects and uses the best available runtime
3
3
 
4
- VERSION="2.7.9"
4
+ VERSION="2.7.11"
5
5
 
6
6
  # Determine the correct path based on how the script is invoked
7
7
  if [ -L "$0" ]; then
@@ -30,15 +30,6 @@ if (args.length === 0) {
30
30
  for (const arg of args) {
31
31
  if (arg === '--version' || arg === '-v') {
32
32
  console.log(`v${VERSION}`);
33
- console.log('');
34
- console.log('⚡ Alpha 128 - Build Optimization & Memory Coordination');
35
- console.log(' • Build System Fixed - Removed 32 UI files, clean compilation');
36
- console.log(' • Memory Coordination Validated - MCP tools fully operational');
37
- console.log(' • Agent Updates - All core agents with MCP tool integration');
38
- console.log(' • Hive-Mind Agents - 5 new agents with memory coordination');
39
- console.log(' • Command System - All CLI commands tested and working');
40
- console.log('');
41
- console.log('📚 Docs: https://github.com/ruvnet/claude-flow');
42
33
  process.exit(0);
43
34
  }
44
35
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "2.7.9",
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",
@@ -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
- main().catch(console.error);
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