fluxflow-cli 3.13.0 → 3.13.1
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/dist/fluxflow.js +4 -0
- package/package.json +3 -2
package/dist/fluxflow.js
CHANGED
|
@@ -12254,6 +12254,7 @@ __export(ai_exports, {
|
|
|
12254
12254
|
runSubagent: () => runSubagent,
|
|
12255
12255
|
signalTermination: () => signalTermination
|
|
12256
12256
|
});
|
|
12257
|
+
import dotenv from "dotenv";
|
|
12257
12258
|
import { GoogleGenAI, ThinkingLevel, HarmBlockThreshold, HarmCategory } from "@google/genai";
|
|
12258
12259
|
import path24, { normalize } from "path";
|
|
12259
12260
|
import fs25 from "fs";
|
|
@@ -12277,6 +12278,7 @@ var init_ai = __esm({
|
|
|
12277
12278
|
init_revert();
|
|
12278
12279
|
init_advanceRevert();
|
|
12279
12280
|
init_editor();
|
|
12281
|
+
dotenv.config();
|
|
12280
12282
|
RE_STUTTER_CODE_BLOCK_CLOSED = /```[\s\S]*?```/g;
|
|
12281
12283
|
RE_STUTTER_CODE_BLOCK_OPEN = /```[\s\S]*$/g;
|
|
12282
12284
|
RE_STUTTER_INLINE_CODE = /`[^`]+`/g;
|
|
@@ -22935,6 +22937,8 @@ var init_app = __esm({
|
|
|
22935
22937
|
import { spawn as spawn3 } from "child_process";
|
|
22936
22938
|
import { fileURLToPath as fileURLToPath4 } from "url";
|
|
22937
22939
|
import os6 from "os";
|
|
22940
|
+
import dotenv2 from "dotenv";
|
|
22941
|
+
dotenv2.config();
|
|
22938
22942
|
var totalSystemRamBytes = os6.totalmem();
|
|
22939
22943
|
var totalSystemRamMB = totalSystemRamBytes / (1024 * 1024);
|
|
22940
22944
|
var SAFETY_MARGIN = 0.5;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluxflow-cli",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.1",
|
|
4
4
|
"date": "2026-07-29",
|
|
5
5
|
"description": "A High-Fidelity Agentic CLI with Sub-Agents for the Flux Era.",
|
|
6
6
|
"keywords": [
|
|
@@ -41,12 +41,13 @@
|
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
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"
|
|
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 --external:dotenv"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@google/genai": "^1.52.0",
|
|
48
48
|
"chalk": "^5.6.2",
|
|
49
49
|
"diff": "^9.0.0",
|
|
50
|
+
"dotenv": "^17.4.2",
|
|
50
51
|
"fs-extra": "^11.3.4",
|
|
51
52
|
"gradient-string": "^3.0.0",
|
|
52
53
|
"html-to-docx": "^1.8.0",
|