@claude-flow/cli 3.5.15 → 3.5.16

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.
@@ -90,7 +90,7 @@ Automatic checkpoint created by Claude Code
90
90
 
91
91
  🤖 Generated with [Claude Code](https://claude.com/claude-code)
92
92
 
93
- Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>" --quiet 2>/dev/null; then
93
+ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>" --quiet 2>/dev/null; then
94
94
  log "Created commit: $message"
95
95
 
96
96
  # Push if enabled
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * Claude Flow V3 Statusline Generator
3
+ * RuFlo V3.5 Statusline Generator
4
4
  * Displays real-time V3 implementation progress and system status
5
5
  *
6
6
  * Usage: node statusline.cjs [options]
@@ -121,8 +121,8 @@ function getUserInfo() {
121
121
  }
122
122
  }
123
123
  // Parse model ID to human-readable name
124
- if (modelId.includes('opus')) modelName = 'Opus 4.5';
125
- else if (modelId.includes('sonnet')) modelName = 'Sonnet 4';
124
+ if (modelId.includes('opus')) modelName = 'Opus 4.6 (1M context)';
125
+ else if (modelId.includes('sonnet')) modelName = 'Sonnet 4.6';
126
126
  else if (modelId.includes('haiku')) modelName = 'Haiku 4.5';
127
127
  else modelName = modelId.split('-').slice(1, 3).join(' ');
128
128
  }
@@ -404,7 +404,7 @@ function generateStatusline() {
404
404
  const lines = [];
405
405
 
406
406
  // Header Line
407
- let header = `${c.bold}${c.brightPurple}▊ Claude Flow V3 ${c.reset}`;
407
+ let header = `${c.bold}${c.brightPurple}▊ RuFlo V3.5 ${c.reset}`;
408
408
  header += `${swarm.coordinationActive ? c.brightCyan : c.dim}● ${c.brightCyan}${user.name}${c.reset}`;
409
409
  if (user.gitBranch) {
410
410
  header += ` ${c.dim}│${c.reset} ${c.brightBlue}⎇ ${user.gitBranch}${c.reset}`;
@@ -486,7 +486,7 @@ function generateSingleLine() {
486
486
  const securityStatus = security.status === 'CLEAN' ? '✓' :
487
487
  security.cvesFixed > 0 ? '~' : '✗';
488
488
 
489
- return `${c.brightPurple}CF-V3${c.reset} ${c.dim}|${c.reset} ` +
489
+ return `${c.brightPurple}RuFlo${c.reset} ${c.dim}|${c.reset} ` +
490
490
  `${c.cyan}D:${progress.domainsCompleted}/${progress.totalDomains}${c.reset} ${c.dim}|${c.reset} ` +
491
491
  `${c.yellow}S:${swarmIndicator}${swarm.activeAgents}/${swarm.maxAgents}${c.reset} ${c.dim}|${c.reset} ` +
492
492
  `${security.status === 'CLEAN' ? c.green : c.red}CVE:${securityStatus}${security.cvesFixed}/${security.totalCves}${c.reset} ${c.dim}|${c.reset} ` +
@@ -510,7 +510,7 @@ function generateSafeStatusline() {
510
510
  const lines = [];
511
511
 
512
512
  // Header Line
513
- let header = `${c.bold}${c.brightPurple}▊ Claude Flow V3 ${c.reset}`;
513
+ let header = `${c.bold}${c.brightPurple}▊ RuFlo V3.5 ${c.reset}`;
514
514
  header += `${swarm.coordinationActive ? c.brightCyan : c.dim}● ${c.brightCyan}${user.name}${c.reset}`;
515
515
  if (user.gitBranch) {
516
516
  header += ` ${c.dim}│${c.reset} ${c.brightBlue}⎇ ${user.gitBranch}${c.reset}`;
@@ -529,16 +529,16 @@ function generateSafeStatusline() {
529
529
  `${c.brightYellow}⚡ 1.0x${c.reset} ${c.dim}→${c.reset} ${c.brightYellow}2.49x-7.47x${c.reset}`
530
530
  );
531
531
 
532
- // Line 2 (COLLISION LINE): Swarm status with 24 spaces padding after emoji
533
- // The emoji (🤖) is 2 columns. 24 spaces pushes content to column 26, past the collision zone (15-25)
532
+ // Line 2 (COLLISION LINE): Swarm status with padding after label
533
+ // The emoji+label is ~10 columns. Padding pushes content past collision zone (cols 15-25)
534
534
  const swarmIndicator = swarm.coordinationActive ? `${c.brightGreen}◉${c.reset}` : `${c.dim}○${c.reset}`;
535
535
  const agentsColor = swarm.activeAgents > 0 ? c.brightGreen : c.red;
536
536
  let securityIcon = security.status === 'CLEAN' ? '🟢' : security.status === 'IN_PROGRESS' ? '🟡' : '🔴';
537
537
  let securityColor = security.status === 'CLEAN' ? c.brightGreen : security.status === 'IN_PROGRESS' ? c.brightYellow : c.brightRed;
538
538
 
539
- // CRITICAL: 24 spaces after 🤖 (emoji is 2 cols, so 2+24=26, past collision zone cols 15-25)
539
+ // Padding after "🤖 Swarm" (emoji 2 cols + " Swarm" 6 cols = 8, pad 18 to reach col 26)
540
540
  lines.push(
541
- `${c.brightYellow}🤖${c.reset} ` + // 24 spaces padding
541
+ `${c.brightYellow}🤖 Swarm${c.reset} ` + // 18 spaces padding
542
542
  `${swarmIndicator} [${agentsColor}${String(swarm.activeAgents).padStart(2)}${c.reset}/${c.brightWhite}${swarm.maxAgents}${c.reset}] ` +
543
543
  `${c.brightPurple}👥 ${system.subAgents}${c.reset} ` +
544
544
  `${securityIcon} ${securityColor}CVE ${security.cvesFixed}${c.reset}/${c.brightWhite}${security.totalCves}${c.reset} ` +
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  /**
3
- * Claude Flow V3 Statusline Generator
3
+ * RuFlo V3.5 Statusline Generator
4
4
  * Displays real-time V3 implementation progress and system status
5
5
  *
6
6
  * Usage: node statusline.js [--json] [--compact]
@@ -47,7 +47,7 @@ const c = {
47
47
  function getUserInfo() {
48
48
  let name = 'user';
49
49
  let gitBranch = '';
50
- let modelName = 'Opus 4.5';
50
+ let modelName = 'Opus 4.6 (1M context)';
51
51
 
52
52
  try {
53
53
  name = execSync('git config user.name 2>/dev/null || echo "user"', { encoding: 'utf-8' }).trim();
@@ -242,7 +242,7 @@ function generateStatusline() {
242
242
  const lines = [];
243
243
 
244
244
  // Header Line
245
- let header = `${c.bold}${c.brightPurple}▊ Claude Flow V3 ${c.reset}`;
245
+ let header = `${c.bold}${c.brightPurple}▊ RuFlo V3.5 ${c.reset}`;
246
246
  header += `${swarm.coordinationActive ? c.brightCyan : c.dim}● ${c.brightCyan}${user.name}${c.reset}`;
247
247
  if (user.gitBranch) {
248
248
  header += ` ${c.dim}│${c.reset} ${c.brightBlue}⎇ ${user.gitBranch}${c.reset}`;
@@ -2805,7 +2805,7 @@ const statuslineCommand = {
2805
2805
  function getUserInfo() {
2806
2806
  let name = 'user';
2807
2807
  let gitBranch = '';
2808
- const modelName = 'Opus 4.5';
2808
+ const modelName = 'Opus 4.6 (1M context)';
2809
2809
  const isWindows = process.platform === 'win32';
2810
2810
  try {
2811
2811
  const nameCmd = isWindows