fluxflow-cli 3.11.2 → 3.11.3

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.
Files changed (2) hide show
  1. package/dist/fluxflow.js +1 -1
  2. package/package.json +72 -72
package/dist/fluxflow.js CHANGED
@@ -5818,7 +5818,7 @@ var init_StatusBar = __esm({
5818
5818
  paddingX: 1,
5819
5819
  width: "100%"
5820
5820
  },
5821
- /* @__PURE__ */ React5.createElement(Box4, null, /* @__PURE__ */ React5.createElement(Box4, { marginRight: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: colors.text, bold: true }, mode.toUpperCase())), /* @__PURE__ */ React5.createElement(Text5, { color: colors.textMuted, dimColor: true }, "\u2503"), /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: colors.text, italic: true }, truncatePath(process.cwd(), 35)))),
5821
+ /* @__PURE__ */ React5.createElement(Box4, null, mode.toLowerCase() === "flow" && /* @__PURE__ */ React5.createElement(React5.Fragment, null, /* @__PURE__ */ React5.createElement(Box4, { marginRight: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: colors.text, bold: true }, mode.toUpperCase()), /* @__PURE__ */ React5.createElement(Text5, { color: colors.textMuted }, " (Limited Tools)")), /* @__PURE__ */ React5.createElement(Text5, { color: colors.textMuted, dimColor: true }, "\u2503 ")), /* @__PURE__ */ React5.createElement(Box4, null, /* @__PURE__ */ React5.createElement(Text5, { color: colors.text, italic: true }, truncatePath(process.cwd(), 35)))),
5822
5822
  /* @__PURE__ */ React5.createElement(Box4, null, isProcessing ? /* @__PURE__ */ React5.createElement(Box4, null, /* @__PURE__ */ React5.createElement(Text5, { color: dotColor }, "\u25CF"), showTPMEstimate && /* @__PURE__ */ React5.createElement(React5.Fragment, null, /* @__PURE__ */ React5.createElement(Text5, { color: colors.textMuted, bold: true }, " ", displayedWps, " tps"), /* @__PURE__ */ React5.createElement(Text5, { color: colors.textMuted, dimColor: true }, " \u2503"))) : null, /* @__PURE__ */ React5.createElement(Box4, { marginX: 1 }, /* @__PURE__ */ React5.createElement(Text5, { color: colors.text }, formatTokens(tokensTotal), " ", (() => {
5823
5823
  const pct = tokens / maxLimit * 100;
5824
5824
  const color = pct < 60 ? colors.text : pct < 80 ? colors.warning : colors.danger;
package/package.json CHANGED
@@ -1,72 +1,72 @@
1
- {
2
- "name": "fluxflow-cli",
3
- "version": "3.11.2",
4
- "date": "2026-07-25",
5
- "description": "A High-Fidelity Agentic CLI with Sub-Agents for the Flux Era.",
6
- "keywords": [
7
- "ai",
8
- "agent",
9
- "terminal",
10
- "cli",
11
- "gemini",
12
- "ink",
13
- "flux",
14
- "fluxflow"
15
- ],
16
- "license": "MIT",
17
- "repository": {
18
- "type": "git",
19
- "url": "git+https://github.com/KushalRoyChowdhury/fluxflow-cli.git"
20
- },
21
- "engines": {
22
- "node": ">=20",
23
- "vscode": "^1.90.0"
24
- },
25
- "files": [
26
- "dist",
27
- "README.md",
28
- "package.json",
29
- "ARCHITECTURE.md",
30
- "TOOLS.md",
31
- "UI_FEATURES.md",
32
- "cat.txt",
33
- ".puppeteerrc.cjs",
34
- "flux-flow.cjs",
35
- "model_config.json"
36
- ],
37
- "type": "module",
38
- "bin": {
39
- "fluxflow-cli": "dist/fluxflow.js",
40
- "fluxflow": "dist/fluxflow.js"
41
- },
42
- "scripts": {
43
- "start": "tsx ./src/cli.jsx",
44
- "build": "esbuild ./src/cli.jsx --bundle --platform=node --format=esm --outfile=./dist/fluxflow.js --external:react --external:ink --external:chalk --external:fs-extra --external:gradient-string --external:ink-text-input --external:ink-select-input --external:@google/genai --external:zod --external:nanoid --external:puppeteer --external:pdf-lib --external:node-pty --external:html-to-docx --external:typescript --external:ws --external:web-tree-sitter --external:diff"
45
- },
46
- "dependencies": {
47
- "@google/genai": "^1.52.0",
48
- "chalk": "^5.6.2",
49
- "diff": "^9.0.0",
50
- "fs-extra": "^11.3.4",
51
- "gradient-string": "^3.0.0",
52
- "html-to-docx": "^1.8.0",
53
- "ink": "^7.0.1",
54
- "ink-gradient": "^4.0.1",
55
- "ink-select-input": "^6.2.0",
56
- "ink-spinner": "^5.0.0",
57
- "ink-text-input": "^6.0.0",
58
- "nanoid": "^5.1.9",
59
- "node-pty": "^1.1.0",
60
- "pdf-lib": "^1.17.1",
61
- "puppeteer": "24.43.1",
62
- "react": "^19.2.5",
63
- "web-tree-sitter": "^0.25.10",
64
- "ws": "^8.21.0",
65
- "zod": "^4.3.6"
66
- },
67
- "devDependencies": {
68
- "@types/react": "^19.2.14",
69
- "esbuild": "^0.28.0",
70
- "tsx": "^4.21.0"
71
- }
72
- }
1
+ {
2
+ "name": "fluxflow-cli",
3
+ "version": "3.11.3",
4
+ "date": "2026-07-25",
5
+ "description": "A High-Fidelity Agentic CLI with Sub-Agents for the Flux Era.",
6
+ "keywords": [
7
+ "ai",
8
+ "agent",
9
+ "terminal",
10
+ "cli",
11
+ "gemini",
12
+ "ink",
13
+ "flux",
14
+ "fluxflow"
15
+ ],
16
+ "license": "MIT",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/KushalRoyChowdhury/fluxflow-cli.git"
20
+ },
21
+ "engines": {
22
+ "node": ">=20",
23
+ "vscode": "^1.90.0"
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md",
28
+ "package.json",
29
+ "ARCHITECTURE.md",
30
+ "TOOLS.md",
31
+ "UI_FEATURES.md",
32
+ "cat.txt",
33
+ ".puppeteerrc.cjs",
34
+ "flux-flow.cjs",
35
+ "model_config.json"
36
+ ],
37
+ "type": "module",
38
+ "bin": {
39
+ "fluxflow-cli": "dist/fluxflow.js",
40
+ "fluxflow": "dist/fluxflow.js"
41
+ },
42
+ "scripts": {
43
+ "start": "tsx ./src/cli.jsx",
44
+ "build": "esbuild ./src/cli.jsx --bundle --platform=node --format=esm --outfile=./dist/fluxflow.js --external:react --external:ink --external:chalk --external:fs-extra --external:gradient-string --external:ink-text-input --external:ink-select-input --external:@google/genai --external:zod --external:nanoid --external:puppeteer --external:pdf-lib --external:node-pty --external:html-to-docx --external:typescript --external:ws --external:web-tree-sitter --external:diff"
45
+ },
46
+ "dependencies": {
47
+ "@google/genai": "^1.52.0",
48
+ "chalk": "^5.6.2",
49
+ "diff": "^9.0.0",
50
+ "fs-extra": "^11.3.4",
51
+ "gradient-string": "^3.0.0",
52
+ "html-to-docx": "^1.8.0",
53
+ "ink": "^7.0.1",
54
+ "ink-gradient": "^4.0.1",
55
+ "ink-select-input": "^6.2.0",
56
+ "ink-spinner": "^5.0.0",
57
+ "ink-text-input": "^6.0.0",
58
+ "nanoid": "^5.1.9",
59
+ "node-pty": "^1.1.0",
60
+ "pdf-lib": "^1.17.1",
61
+ "puppeteer": "24.43.1",
62
+ "react": "^19.2.5",
63
+ "web-tree-sitter": "^0.25.10",
64
+ "ws": "^8.21.0",
65
+ "zod": "^4.3.6"
66
+ },
67
+ "devDependencies": {
68
+ "@types/react": "^19.2.14",
69
+ "esbuild": "^0.28.0",
70
+ "tsx": "^4.21.0"
71
+ }
72
+ }