claude-flow 2.0.0-alpha.63 → 2.0.0-alpha.64

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/CHANGELOG.md CHANGED
@@ -5,6 +5,40 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.0.0-alpha.64] - 2025-01-18
9
+
10
+ ### 🔧 Bug Fixes
11
+ - Fixed wrapper script hardcoded to use outdated alpha-27 version
12
+ - Updated wrapper to use `@alpha` tag for always getting latest alpha version
13
+ - Ensures `./claude-flow` wrapper always uses the most recent alpha release
14
+
15
+ ### 📦 Dependencies
16
+ - No dependency changes, only template fix
17
+
18
+ ## [2.0.0-alpha.63] - 2025-01-18
19
+
20
+ ### 🚀 Major Features
21
+ - **MCP/NPX Fallback Pattern**: All 60+ command files now include both MCP tools (preferred) and NPX CLI (fallback)
22
+ - **SPARC Included by Default**: No more `--sparc` flag needed, SPARC commands automatically initialized
23
+ - **Complete Environment Init**: Creates 112+ files including both databases properly initialized
24
+
25
+ ### 🏗️ Infrastructure
26
+ - **Template System**: Updated template generation to include MCP/NPX fallback patterns
27
+ - **Init Command**: Fixed missing imports for createAgentsReadme and createSessionsReadme
28
+ - **Database Init**: Added .hive-mind directory creation and hive.db initialization with schema
29
+ - **SPARC Integration**: Made SPARC included by default in v2.0.0 flow
30
+
31
+ ### 🛠️ Improvements
32
+ - Updated all 18 SPARC command files in .claude/commands/sparc/ with MCP/NPX fallback
33
+ - Updated 5 swarm strategy files with MCP/NPX patterns
34
+ - Enhanced init command to create complete environment with 113 files
35
+ - Fixed copyRevisedTemplates to include SPARC files
36
+
37
+ ### 📚 Documentation
38
+ - Updated CLAUDE.md template with comprehensive MCP/NPX usage examples
39
+ - Added fallback guidance to all command documentation
40
+ - Enhanced GitHub integration documentation with gh CLI usage
41
+
8
42
  ## [2.0.0-alpha.62] - 2025-01-18
9
43
 
10
44
  ### 🔒 Security Fixes
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.0.0-alpha.63"
4
+ VERSION="2.0.0-alpha.64"
5
5
 
6
6
  # Determine the correct path based on how the script is invoked
7
7
  if [ -L "$0" ]; then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-flow",
3
- "version": "2.0.0-alpha.63",
3
+ "version": "2.0.0-alpha.64",
4
4
  "description": "Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)",
5
5
  "main": "cli.mjs",
6
6
  "bin": {
@@ -5,14 +5,14 @@
5
5
 
6
6
  import { HelpFormatter } from './help-formatter.js';
7
7
 
8
- export const VERSION = '2.0.0-alpha.61';
8
+ export const VERSION = '2.0.0-alpha.64';
9
9
 
10
10
  export const MAIN_HELP = `
11
11
  🌊 Claude-Flow v${VERSION} - Enterprise-Grade AI Agent Orchestration Platform
12
12
 
13
13
  🎯 ENTERPRISE FEATURES: Complete ruv-swarm integration with 87 MCP tools, neural networking, and production-ready infrastructure
14
14
  🐝 NEW: Advanced Hive Mind System with Queen-led coordination, collective intelligence, and unlimited scaling
15
- ⚡ ALPHA 61: Neural training optimizations, enhanced help system, and improved MCP tool coordination
15
+ ⚡ ALPHA 64: Fixed wrapper script to use @alpha tag, ensures latest version always used
16
16
 
17
17
  USAGE:
18
18
  claude-flow <command> [options]
@@ -27,7 +27,7 @@ import process from 'process';
27
27
  import readline from 'readline';
28
28
  import { getMainHelp, getCommandHelp, getStandardizedCommandHelp } from './help-text.js';
29
29
 
30
- const VERSION = '2.0.0-alpha.61';
30
+ const VERSION = '2.0.0-alpha.64';
31
31
 
32
32
  function printHelp(plain = false) {
33
33
  console.log(getMainHelp(plain));
@@ -53,7 +53,7 @@
53
53
 
54
54
  // 3. NPX with latest alpha version (prioritized over global)
55
55
  async () => {
56
- return spawn('npx', ['claude-flow@2.0.0-alpha.27', ...process.argv.slice(2)], {
56
+ return spawn('npx', ['claude-flow@alpha', ...process.argv.slice(2)], {
57
57
  stdio: 'inherit',
58
58
  });
59
59
  },