@claude-flow/cli 3.5.15 → 3.5.17
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/.claude/helpers/auto-commit.sh +1 -1
- package/.claude/helpers/statusline.cjs +10 -10
- package/.claude/helpers/statusline.js +3 -3
- package/dist/src/commands/agent.d.ts.map +1 -1
- package/dist/src/commands/agent.js +38 -0
- package/dist/src/commands/agent.js.map +1 -1
- package/dist/src/commands/hooks.js +1 -1
- package/dist/src/commands/hooks.js.map +1 -1
- package/dist/src/init/statusline-generator.d.ts +1 -1
- package/dist/src/init/statusline-generator.js +4 -4
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ import type { InitOptions } from './types.js';
|
|
|
13
13
|
/**
|
|
14
14
|
* Generate optimized statusline script
|
|
15
15
|
* Output format:
|
|
16
|
-
* ▊ RuFlo V3 ● user │ ⎇ branch │ Opus 4.6
|
|
16
|
+
* ▊ RuFlo V3.5 ● user │ ⎇ branch │ Opus 4.6 (1M context)
|
|
17
17
|
* ─────────────────────────────────────────────────────
|
|
18
18
|
* 🏗️ DDD Domains [●●○○○] 2/5 ⚡ HNSW 150x
|
|
19
19
|
* 🤖 Swarm ◉ [ 5/15] 👥 2 🪝 10/17 🟢 CVE 3/3 💾 4MB 🧠 63%
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
/**
|
|
13
13
|
* Generate optimized statusline script
|
|
14
14
|
* Output format:
|
|
15
|
-
* ▊ RuFlo V3 ● user │ ⎇ branch │ Opus 4.6
|
|
15
|
+
* ▊ RuFlo V3.5 ● user │ ⎇ branch │ Opus 4.6 (1M context)
|
|
16
16
|
* ─────────────────────────────────────────────────────
|
|
17
17
|
* 🏗️ DDD Domains [●●○○○] 2/5 ⚡ HNSW 150x
|
|
18
18
|
* 🤖 Swarm ◉ [ 5/15] 👥 2 🪝 10/17 🟢 CVE 3/3 💾 4MB 🧠 63%
|
|
@@ -175,7 +175,7 @@ function getModelName() {
|
|
|
175
175
|
const ts = usage[id] && usage[id].lastUsedAt ? new Date(usage[id].lastUsedAt).getTime() : 0;
|
|
176
176
|
if (ts > latest) { latest = ts; modelId = id; }
|
|
177
177
|
}
|
|
178
|
-
if (modelId.includes('opus')) return 'Opus 4.6';
|
|
178
|
+
if (modelId.includes('opus')) return 'Opus 4.6 (1M context)';
|
|
179
179
|
if (modelId.includes('sonnet')) return 'Sonnet 4.6';
|
|
180
180
|
if (modelId.includes('haiku')) return 'Haiku 4.5';
|
|
181
181
|
return modelId.split('-').slice(1, 3).join(' ');
|
|
@@ -191,7 +191,7 @@ function getModelName() {
|
|
|
191
191
|
const settings = getSettings();
|
|
192
192
|
if (settings && settings.model) {
|
|
193
193
|
const m = settings.model;
|
|
194
|
-
if (m.includes('opus')) return 'Opus 4.6';
|
|
194
|
+
if (m.includes('opus')) return 'Opus 4.6 (1M context)';
|
|
195
195
|
if (m.includes('sonnet')) return 'Sonnet 4.6';
|
|
196
196
|
if (m.includes('haiku')) return 'Haiku 4.5';
|
|
197
197
|
}
|
|
@@ -578,7 +578,7 @@ function generateStatusline() {
|
|
|
578
578
|
const lines = [];
|
|
579
579
|
|
|
580
580
|
// Header
|
|
581
|
-
let header = c.bold + c.brightPurple + '\\u258A RuFlo V3 ' + c.reset;
|
|
581
|
+
let header = c.bold + c.brightPurple + '\\u258A RuFlo V3.5 ' + c.reset;
|
|
582
582
|
header += (swarm.coordinationActive ? c.brightCyan : c.dim) + '\\u25CF ' + c.brightCyan + git.name + c.reset;
|
|
583
583
|
if (git.gitBranch) {
|
|
584
584
|
header += ' ' + c.dim + '\\u2502' + c.reset + ' ' + c.brightBlue + '\\u23C7 ' + git.gitBranch + c.reset;
|