fluxflow-cli 3.3.5 → 3.4.0
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 +637 -740
- package/model_config.json +204 -0
- package/package.json +4 -3
package/dist/fluxflow.js
CHANGED
|
@@ -189,6 +189,139 @@ var init_crypto = __esm({
|
|
|
189
189
|
}
|
|
190
190
|
});
|
|
191
191
|
|
|
192
|
+
// src/data/model_config.js
|
|
193
|
+
import fs3 from "fs";
|
|
194
|
+
import path3 from "path";
|
|
195
|
+
import { fileURLToPath } from "url";
|
|
196
|
+
var __filename, __dirname, packageConfigPath, pathsToCheck, userConfigPath, activeConfig, multimodalModelsSet, rebuildMultimodalSet, loadRemoteModelConfig, isModelMultimodal, getModels, getDefaultModel, getFallbackValue;
|
|
197
|
+
var init_model_config = __esm({
|
|
198
|
+
"src/data/model_config.js"() {
|
|
199
|
+
init_paths();
|
|
200
|
+
__filename = fileURLToPath(import.meta.url);
|
|
201
|
+
__dirname = path3.dirname(__filename);
|
|
202
|
+
packageConfigPath = "";
|
|
203
|
+
pathsToCheck = [
|
|
204
|
+
path3.join(__dirname, "../../model_config.json"),
|
|
205
|
+
// Dev: src/data/model_config.js -> root
|
|
206
|
+
path3.join(__dirname, "../model_config.json")
|
|
207
|
+
// Prod: dist/fluxflow.js -> root
|
|
208
|
+
];
|
|
209
|
+
for (const p of pathsToCheck) {
|
|
210
|
+
try {
|
|
211
|
+
if (fs3.existsSync(p)) {
|
|
212
|
+
packageConfigPath = p;
|
|
213
|
+
break;
|
|
214
|
+
}
|
|
215
|
+
} catch (e) {
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
userConfigPath = path3.join(FLUXFLOW_DIR, "model_config.json");
|
|
219
|
+
activeConfig = null;
|
|
220
|
+
if (fs3.existsSync(userConfigPath)) {
|
|
221
|
+
try {
|
|
222
|
+
const fileContent = fs3.readFileSync(userConfigPath, "utf-8");
|
|
223
|
+
const parsed = JSON.parse(fileContent);
|
|
224
|
+
if (parsed && parsed.providers && parsed.fallbacks && parsed.release) {
|
|
225
|
+
activeConfig = parsed;
|
|
226
|
+
}
|
|
227
|
+
} catch (e) {
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
if (!activeConfig && packageConfigPath) {
|
|
231
|
+
try {
|
|
232
|
+
const fileContent = fs3.readFileSync(packageConfigPath, "utf-8");
|
|
233
|
+
const parsed = JSON.parse(fileContent);
|
|
234
|
+
if (parsed && parsed.providers && parsed.fallbacks && parsed.release) {
|
|
235
|
+
activeConfig = parsed;
|
|
236
|
+
}
|
|
237
|
+
} catch (e) {
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
if (!activeConfig) {
|
|
241
|
+
console.error("\n[Error] Unable to load model configuration. Please re-install the package from your package manager.\n");
|
|
242
|
+
process.exit(1);
|
|
243
|
+
}
|
|
244
|
+
multimodalModelsSet = /* @__PURE__ */ new Set();
|
|
245
|
+
rebuildMultimodalSet = () => {
|
|
246
|
+
const nextSet = /* @__PURE__ */ new Set();
|
|
247
|
+
if (activeConfig.providers) {
|
|
248
|
+
for (const providerKey of Object.keys(activeConfig.providers)) {
|
|
249
|
+
const provider = activeConfig.providers[providerKey];
|
|
250
|
+
if (provider && provider.models) {
|
|
251
|
+
const tiers = ["Free", "Paid"];
|
|
252
|
+
for (const tier of tiers) {
|
|
253
|
+
const list = provider.models[tier];
|
|
254
|
+
if (Array.isArray(list)) {
|
|
255
|
+
for (const m of list) {
|
|
256
|
+
if (m && m.cmd && m.multimodal === true) {
|
|
257
|
+
nextSet.add(m.cmd.trim().toLowerCase());
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
if (Array.isArray(activeConfig.multimodal_models)) {
|
|
266
|
+
for (const m of activeConfig.multimodal_models) {
|
|
267
|
+
if (m && typeof m === "string") {
|
|
268
|
+
nextSet.add(m.trim().toLowerCase());
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
multimodalModelsSet = nextSet;
|
|
273
|
+
};
|
|
274
|
+
rebuildMultimodalSet();
|
|
275
|
+
loadRemoteModelConfig = async () => {
|
|
276
|
+
try {
|
|
277
|
+
const url = "https://raw.githubusercontent.com/KushalRoyChowdhury/fluxflow-cli/main/src/data/model_config.json";
|
|
278
|
+
const res = await fetch(url, { signal: AbortSignal.timeout(3e3) });
|
|
279
|
+
if (res.ok) {
|
|
280
|
+
const data = await res.json();
|
|
281
|
+
if (data && data.providers && data.fallbacks && data.release) {
|
|
282
|
+
const isNewerVersion = typeof data.version === "number" && data.version > activeConfig.version;
|
|
283
|
+
const isNewerRelease = typeof data.release === "number" && data.release > activeConfig.release;
|
|
284
|
+
if (isNewerVersion || isNewerRelease) {
|
|
285
|
+
activeConfig = data;
|
|
286
|
+
rebuildMultimodalSet();
|
|
287
|
+
try {
|
|
288
|
+
if (!fs3.existsSync(FLUXFLOW_DIR)) {
|
|
289
|
+
fs3.mkdirSync(FLUXFLOW_DIR, { recursive: true });
|
|
290
|
+
}
|
|
291
|
+
fs3.writeFileSync(userConfigPath, JSON.stringify(data, null, 2), "utf-8");
|
|
292
|
+
} catch (writeErr) {
|
|
293
|
+
}
|
|
294
|
+
return true;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
} catch (e) {
|
|
299
|
+
}
|
|
300
|
+
return false;
|
|
301
|
+
};
|
|
302
|
+
isModelMultimodal = (model) => {
|
|
303
|
+
if (!model) return false;
|
|
304
|
+
const lower = model.trim().toLowerCase();
|
|
305
|
+
if (multimodalModelsSet.has(lower)) return true;
|
|
306
|
+
if (lower.startsWith("gemini-") || lower.startsWith("gemma-")) return true;
|
|
307
|
+
return false;
|
|
308
|
+
};
|
|
309
|
+
getModels = (provider, apiTier) => {
|
|
310
|
+
const p = activeConfig.providers[provider];
|
|
311
|
+
if (!p) return [];
|
|
312
|
+
return p.models[apiTier === "Free" ? "Free" : "Paid"] || [];
|
|
313
|
+
};
|
|
314
|
+
getDefaultModel = (provider, apiTier) => {
|
|
315
|
+
const p = activeConfig.providers[provider];
|
|
316
|
+
if (!p) return "";
|
|
317
|
+
return apiTier === "Free" ? p.default_free : p.default_paid;
|
|
318
|
+
};
|
|
319
|
+
getFallbackValue = (key) => {
|
|
320
|
+
return activeConfig.fallbacks[key];
|
|
321
|
+
};
|
|
322
|
+
}
|
|
323
|
+
});
|
|
324
|
+
|
|
192
325
|
// src/utils/secrets.js
|
|
193
326
|
var secrets_exports = {};
|
|
194
327
|
__export(secrets_exports, {
|
|
@@ -204,14 +337,14 @@ __export(secrets_exports, {
|
|
|
204
337
|
saveSearchKey: () => saveSearchKey,
|
|
205
338
|
saveSecret: () => saveSecret
|
|
206
339
|
});
|
|
207
|
-
import
|
|
208
|
-
import
|
|
340
|
+
import fs4 from "fs-extra";
|
|
341
|
+
import path4 from "path";
|
|
209
342
|
var SECRET_FILE, getAPIKey, getProviderAPIKey, saveProviderAPIKey, getSecret, saveSecret, getSearchSecrets, saveAPIKey, saveSearchKey, saveSearchId, removeSecret, removeAPIKey;
|
|
210
343
|
var init_secrets = __esm({
|
|
211
344
|
"src/utils/secrets.js"() {
|
|
212
345
|
init_crypto();
|
|
213
346
|
init_paths();
|
|
214
|
-
SECRET_FILE =
|
|
347
|
+
SECRET_FILE = path4.join(SECRET_DIR, "secrets.json");
|
|
215
348
|
getAPIKey = async () => {
|
|
216
349
|
try {
|
|
217
350
|
const secrets = readEncryptedJson(SECRET_FILE, {});
|
|
@@ -252,7 +385,7 @@ var init_secrets = __esm({
|
|
|
252
385
|
}
|
|
253
386
|
};
|
|
254
387
|
saveSecret = async (key, value) => {
|
|
255
|
-
await
|
|
388
|
+
await fs4.ensureDir(SECRET_DIR);
|
|
256
389
|
let current = readEncryptedJson(SECRET_FILE, {});
|
|
257
390
|
current[key] = value;
|
|
258
391
|
writeEncryptedJson(SECRET_FILE, current);
|
|
@@ -289,18 +422,19 @@ __export(settings_exports, {
|
|
|
289
422
|
loadSettings: () => loadSettings,
|
|
290
423
|
saveSettings: () => saveSettings
|
|
291
424
|
});
|
|
292
|
-
import
|
|
293
|
-
import
|
|
425
|
+
import fs5 from "fs-extra";
|
|
426
|
+
import path5 from "path";
|
|
294
427
|
var DEFAULT_SETTINGS, loadSettings, migrateToExternal, saveSettings;
|
|
295
428
|
var init_settings = __esm({
|
|
296
429
|
"src/utils/settings.js"() {
|
|
297
430
|
init_paths();
|
|
298
431
|
init_crypto();
|
|
432
|
+
init_model_config();
|
|
299
433
|
DEFAULT_SETTINGS = {
|
|
300
434
|
mode: "Flux",
|
|
301
435
|
thinkingLevel: "Medium",
|
|
302
436
|
aiProvider: "Google",
|
|
303
|
-
activeModel: "gemma-4-31b-it",
|
|
437
|
+
activeModel: getDefaultModel("Google", "Free") || "gemma-4-31b-it",
|
|
304
438
|
showFullThinking: true,
|
|
305
439
|
apiTier: "Free",
|
|
306
440
|
quotas: {
|
|
@@ -343,7 +477,7 @@ var init_settings = __esm({
|
|
|
343
477
|
loadSettings = async () => {
|
|
344
478
|
let settingsObj = { ...DEFAULT_SETTINGS };
|
|
345
479
|
try {
|
|
346
|
-
if (await
|
|
480
|
+
if (await fs5.exists(SETTINGS_FILE)) {
|
|
347
481
|
const saved = readAesEncryptedJson(SETTINGS_FILE);
|
|
348
482
|
if (saved.imageSettings && saved.imageSettings.apiKey) {
|
|
349
483
|
try {
|
|
@@ -395,12 +529,12 @@ var init_settings = __esm({
|
|
|
395
529
|
const { FLUXFLOW_DIR: FLUXFLOW_DIR2 } = await Promise.resolve().then(() => (init_paths(), paths_exports));
|
|
396
530
|
const folders = ["logs", "secret"];
|
|
397
531
|
for (const folder of folders) {
|
|
398
|
-
const src =
|
|
399
|
-
const dest =
|
|
532
|
+
const src = path5.join(FLUXFLOW_DIR2, folder);
|
|
533
|
+
const dest = path5.join(newPath, folder);
|
|
400
534
|
try {
|
|
401
|
-
if (await
|
|
402
|
-
await
|
|
403
|
-
await
|
|
535
|
+
if (await fs5.exists(src)) {
|
|
536
|
+
await fs5.ensureDir(dest);
|
|
537
|
+
await fs5.copy(src, dest, { overwrite: true });
|
|
404
538
|
}
|
|
405
539
|
} catch (err) {
|
|
406
540
|
console.error(`Migration failed for ${folder}:`, err);
|
|
@@ -426,7 +560,7 @@ var init_settings = __esm({
|
|
|
426
560
|
if (updated.imageSettings) {
|
|
427
561
|
updated.imageSettings = { ...updated.imageSettings, apiKey: "" };
|
|
428
562
|
}
|
|
429
|
-
await
|
|
563
|
+
await fs5.ensureDir(path5.dirname(SETTINGS_FILE));
|
|
430
564
|
writeAesEncryptedJson(SETTINGS_FILE, updated);
|
|
431
565
|
return true;
|
|
432
566
|
} catch (err) {
|
|
@@ -4696,7 +4830,7 @@ var init_ChatLayout = __esm({
|
|
|
4696
4830
|
}
|
|
4697
4831
|
if (type === "agent-line") {
|
|
4698
4832
|
if (!text || text.trim() === "") {
|
|
4699
|
-
return
|
|
4833
|
+
return /* @__PURE__ */ React4.createElement(Box3, { height: 1 });
|
|
4700
4834
|
}
|
|
4701
4835
|
const animatedText = useStreamingText(text, isStreamingMsg, block.isActiveBlock);
|
|
4702
4836
|
return /* @__PURE__ */ React4.createElement(Box3, { flexDirection: "column", paddingX: 1, width: "100%" }, /* @__PURE__ */ React4.createElement(CodeRenderer, { text: animatedText, columns }));
|
|
@@ -5197,7 +5331,7 @@ var init_main_tools = __esm({
|
|
|
5197
5331
|
};
|
|
5198
5332
|
TOOL_PROTOCOL = (mode, osDetected, isMultiModal, aiProvider, advanceRollback = false) => `
|
|
5199
5333
|
-- TOOL DEFINITIONS --
|
|
5200
|
-
Internal tools. **MUST use the EXACT syntax** [tool:functions.ToolName(args)]. **NO OTHER SYNTAX/MARKERS/BOUNDARY ALLOWED**
|
|
5334
|
+
Internal tools. **MUST use the EXACT syntax** [tool:functions.ToolName(args)]. **NO OTHER SYNTAX/MARKERS/BOUNDARY ALLOWED** Proper bracket balancing per schema is mandatory
|
|
5201
5335
|
|
|
5202
5336
|
**TOOL USAGE POLICY:**
|
|
5203
5337
|
- **MAX 3 TOOL CALLS PER TURN${mode === "Flux" ? " (EXCEPTION FOR Todo TOOL: 3+ CALLS ALLOWED, Run TOOL: Limit 1, OR 2 CONSECUTIVE Run TOOL)" : ""}. Next Turn, verify tool results, plan next**
|
|
@@ -6518,7 +6652,7 @@ var init_thinking_prompts = __esm({
|
|
|
6518
6652
|
});
|
|
6519
6653
|
|
|
6520
6654
|
// src/utils/prompts.js
|
|
6521
|
-
import
|
|
6655
|
+
import fs6 from "fs";
|
|
6522
6656
|
var cachedProjectContextBlock, getMemoryPrompt, getSystemInstruction, getJanitorInstruction;
|
|
6523
6657
|
var init_prompts = __esm({
|
|
6524
6658
|
async "src/utils/prompts.js"() {
|
|
@@ -6594,7 +6728,7 @@ ${nicknameStr.length || userInstrStr.length ? "" : "\n"}` : "";
|
|
|
6594
6728
|
{ name: "architecture.md", desc: "System Structure" }
|
|
6595
6729
|
];
|
|
6596
6730
|
if (isFirstPrompt || cachedProjectContextBlock === null) {
|
|
6597
|
-
const foundFiles = projectContextFiles.filter((f) =>
|
|
6731
|
+
const foundFiles = projectContextFiles.filter((f) => fs6.existsSync(f.name));
|
|
6598
6732
|
cachedProjectContextBlock = mode === "Flux" && foundFiles.length > 0 ? `
|
|
6599
6733
|
-- PROJECT CONTEXT --
|
|
6600
6734
|
${foundFiles.map((f) => `- ${f.name}: ${f.desc}`).join("\n")}
|
|
@@ -6663,35 +6797,35 @@ Current date and Time: ${(/* @__PURE__ */ new Date()).toLocaleString([], { year:
|
|
|
6663
6797
|
});
|
|
6664
6798
|
|
|
6665
6799
|
// src/utils/revert.js
|
|
6666
|
-
import
|
|
6667
|
-
import
|
|
6800
|
+
import fs7 from "fs-extra";
|
|
6801
|
+
import path6 from "path";
|
|
6668
6802
|
async function performRestoration(change, tx) {
|
|
6669
6803
|
try {
|
|
6670
6804
|
if (change.type === "create") {
|
|
6671
|
-
if (await
|
|
6672
|
-
await
|
|
6805
|
+
if (await fs7.pathExists(change.filePath)) {
|
|
6806
|
+
await fs7.chmod(change.filePath, 438).catch(() => {
|
|
6673
6807
|
});
|
|
6674
|
-
await
|
|
6808
|
+
await fs7.remove(change.filePath);
|
|
6675
6809
|
}
|
|
6676
6810
|
} else if (change.type === "update") {
|
|
6677
6811
|
if (!change.backupFile) return;
|
|
6678
|
-
const backupPath =
|
|
6679
|
-
if (await
|
|
6812
|
+
const backupPath = path6.join(BACKUPS_DIR, tx.chatId, change.backupFile);
|
|
6813
|
+
if (await fs7.pathExists(backupPath)) {
|
|
6680
6814
|
const backupContainer = readEncryptedJson(backupPath, null);
|
|
6681
6815
|
if (!backupContainer || !backupContainer.data) {
|
|
6682
|
-
throw new Error(`Backup container corrupt or empty for ${
|
|
6816
|
+
throw new Error(`Backup container corrupt or empty for ${path6.basename(change.filePath)}`);
|
|
6683
6817
|
}
|
|
6684
6818
|
const decrypted = decryptAes(backupContainer.data);
|
|
6685
|
-
if (await
|
|
6686
|
-
await
|
|
6819
|
+
if (await fs7.pathExists(change.filePath)) {
|
|
6820
|
+
await fs7.chmod(change.filePath, 438).catch(() => {
|
|
6687
6821
|
});
|
|
6688
6822
|
}
|
|
6689
|
-
await
|
|
6823
|
+
await fs7.writeFile(change.filePath, decrypted, "utf8");
|
|
6690
6824
|
} else {
|
|
6691
6825
|
}
|
|
6692
6826
|
}
|
|
6693
6827
|
} catch (err) {
|
|
6694
|
-
throw new Error(`Restoration failed for ${
|
|
6828
|
+
throw new Error(`Restoration failed for ${path6.basename(change.filePath)}: ${err.message}`);
|
|
6695
6829
|
}
|
|
6696
6830
|
}
|
|
6697
6831
|
async function restoreWithRetry(change, tx, maxAttempts = 7) {
|
|
@@ -6716,7 +6850,7 @@ var init_revert = __esm({
|
|
|
6716
6850
|
"src/utils/revert.js"() {
|
|
6717
6851
|
init_paths();
|
|
6718
6852
|
init_crypto();
|
|
6719
|
-
|
|
6853
|
+
fs7.ensureDirSync(BACKUPS_DIR);
|
|
6720
6854
|
currentTransaction = null;
|
|
6721
6855
|
lastChatId = null;
|
|
6722
6856
|
RevertManager = {
|
|
@@ -6741,16 +6875,16 @@ var init_revert = __esm({
|
|
|
6741
6875
|
if (lastTx) {
|
|
6742
6876
|
const alreadyBackedUp2 = lastTx.changes.some((c) => c.filePath === absolutePath);
|
|
6743
6877
|
if (alreadyBackedUp2) return;
|
|
6744
|
-
const fileExists2 = await
|
|
6878
|
+
const fileExists2 = await fs7.pathExists(absolutePath);
|
|
6745
6879
|
let type2 = fileExists2 || forcedContent ? "update" : "create";
|
|
6746
6880
|
let backupFile2 = null;
|
|
6747
6881
|
if (type2 === "update") {
|
|
6748
|
-
const fileName =
|
|
6882
|
+
const fileName = path6.basename(absolutePath);
|
|
6749
6883
|
backupFile2 = `${lastTx.id}_${fileName}.bak`;
|
|
6750
|
-
const chatBackupDir =
|
|
6751
|
-
await
|
|
6752
|
-
const backupPath =
|
|
6753
|
-
let content = forcedContent !== null ? forcedContent : await
|
|
6884
|
+
const chatBackupDir = path6.join(BACKUPS_DIR, lastTx.chatId);
|
|
6885
|
+
await fs7.ensureDir(chatBackupDir);
|
|
6886
|
+
const backupPath = path6.join(chatBackupDir, backupFile2);
|
|
6887
|
+
let content = forcedContent !== null ? forcedContent : await fs7.readFile(absolutePath, "utf8").catch(() => null);
|
|
6754
6888
|
if (content !== null) {
|
|
6755
6889
|
writeEncryptedJson(backupPath, { data: encryptAes(content) });
|
|
6756
6890
|
} else {
|
|
@@ -6766,16 +6900,16 @@ var init_revert = __esm({
|
|
|
6766
6900
|
}
|
|
6767
6901
|
const alreadyBackedUp = currentTransaction.changes.some((c) => c.filePath === absolutePath);
|
|
6768
6902
|
if (alreadyBackedUp) return;
|
|
6769
|
-
const fileExists = await
|
|
6903
|
+
const fileExists = await fs7.pathExists(absolutePath);
|
|
6770
6904
|
let type = fileExists || forcedContent ? "update" : "create";
|
|
6771
6905
|
let backupFile = null;
|
|
6772
6906
|
if (type === "update") {
|
|
6773
|
-
const fileName =
|
|
6907
|
+
const fileName = path6.basename(absolutePath);
|
|
6774
6908
|
backupFile = `${currentTransaction.id}_${fileName}.bak`;
|
|
6775
|
-
const chatBackupDir =
|
|
6776
|
-
await
|
|
6777
|
-
const backupPath =
|
|
6778
|
-
let content = forcedContent !== null ? forcedContent : await
|
|
6909
|
+
const chatBackupDir = path6.join(BACKUPS_DIR, currentTransaction.chatId);
|
|
6910
|
+
await fs7.ensureDir(chatBackupDir);
|
|
6911
|
+
const backupPath = path6.join(chatBackupDir, backupFile);
|
|
6912
|
+
let content = forcedContent !== null ? forcedContent : await fs7.readFile(absolutePath, "utf8").catch(() => null);
|
|
6779
6913
|
if (content !== null) {
|
|
6780
6914
|
writeEncryptedJson(backupPath, { data: encryptAes(content) });
|
|
6781
6915
|
} else {
|
|
@@ -6798,14 +6932,14 @@ var init_revert = __esm({
|
|
|
6798
6932
|
if (removed.changes) {
|
|
6799
6933
|
for (const change of removed.changes) {
|
|
6800
6934
|
if (change.backupFile) {
|
|
6801
|
-
await
|
|
6935
|
+
await fs7.remove(path6.join(BACKUPS_DIR, removed.chatId, change.backupFile)).catch(() => {
|
|
6802
6936
|
});
|
|
6803
6937
|
}
|
|
6804
6938
|
}
|
|
6805
6939
|
}
|
|
6806
6940
|
}
|
|
6807
6941
|
writeEncryptedJson(LEDGER_FILE, ledger);
|
|
6808
|
-
await
|
|
6942
|
+
await fs7.remove(ACTIVE_TX_FILE).catch(() => {
|
|
6809
6943
|
});
|
|
6810
6944
|
} catch (err) {
|
|
6811
6945
|
} finally {
|
|
@@ -6814,7 +6948,7 @@ var init_revert = __esm({
|
|
|
6814
6948
|
},
|
|
6815
6949
|
async recoverCrashedTransaction() {
|
|
6816
6950
|
try {
|
|
6817
|
-
if (await
|
|
6951
|
+
if (await fs7.pathExists(ACTIVE_TX_FILE)) {
|
|
6818
6952
|
const orphanedTx = readEncryptedJson(ACTIVE_TX_FILE, null);
|
|
6819
6953
|
if (orphanedTx?.changes?.length > 0) {
|
|
6820
6954
|
const ledger = readEncryptedJson(LEDGER_FILE, []);
|
|
@@ -6823,7 +6957,7 @@ var init_revert = __esm({
|
|
|
6823
6957
|
writeEncryptedJson(LEDGER_FILE, ledger);
|
|
6824
6958
|
}
|
|
6825
6959
|
}
|
|
6826
|
-
await
|
|
6960
|
+
await fs7.remove(ACTIVE_TX_FILE).catch(() => {
|
|
6827
6961
|
});
|
|
6828
6962
|
}
|
|
6829
6963
|
} catch (e) {
|
|
@@ -6843,8 +6977,8 @@ var init_revert = __esm({
|
|
|
6843
6977
|
}
|
|
6844
6978
|
for (const change of tx.changes) {
|
|
6845
6979
|
if (change.backupFile) {
|
|
6846
|
-
const backupPath =
|
|
6847
|
-
await
|
|
6980
|
+
const backupPath = path6.join(BACKUPS_DIR, tx.chatId, change.backupFile);
|
|
6981
|
+
await fs7.remove(backupPath).catch(() => {
|
|
6848
6982
|
});
|
|
6849
6983
|
}
|
|
6850
6984
|
}
|
|
@@ -6863,7 +6997,7 @@ var init_revert = __esm({
|
|
|
6863
6997
|
},
|
|
6864
6998
|
async deleteChatBackups(chatId) {
|
|
6865
6999
|
try {
|
|
6866
|
-
await
|
|
7000
|
+
await fs7.remove(path6.join(BACKUPS_DIR, chatId));
|
|
6867
7001
|
let ledger = readEncryptedJson(LEDGER_FILE, []);
|
|
6868
7002
|
const clean = ledger.filter((t) => t.chatId !== chatId);
|
|
6869
7003
|
if (ledger.length !== clean.length) writeEncryptedJson(LEDGER_FILE, clean);
|
|
@@ -6875,8 +7009,8 @@ var init_revert = __esm({
|
|
|
6875
7009
|
});
|
|
6876
7010
|
|
|
6877
7011
|
// src/utils/history.js
|
|
6878
|
-
import
|
|
6879
|
-
import
|
|
7012
|
+
import fs8 from "fs-extra";
|
|
7013
|
+
import path7 from "path";
|
|
6880
7014
|
import { nanoid } from "nanoid";
|
|
6881
7015
|
var WRITE_LOCK, withLock, loadHistory, saveChat, saveChatTitle, deleteChat, generateChatId, cleanupOldHistory, parseCustomDate, cleanupLogFile, cleanupOldLogs, getTruncatedHistory, saveChatContext, loadChatContext;
|
|
6882
7016
|
var init_history = __esm({
|
|
@@ -6900,9 +7034,9 @@ var init_history = __esm({
|
|
|
6900
7034
|
return nextLock;
|
|
6901
7035
|
};
|
|
6902
7036
|
loadHistory = async () => {
|
|
6903
|
-
await
|
|
7037
|
+
await fs8.ensureDir(HISTORY_DIR);
|
|
6904
7038
|
let history = {};
|
|
6905
|
-
if (await
|
|
7039
|
+
if (await fs8.pathExists(HISTORY_FILE)) {
|
|
6906
7040
|
try {
|
|
6907
7041
|
history = readEncryptedJson(HISTORY_FILE, {});
|
|
6908
7042
|
} catch (e) {
|
|
@@ -6910,10 +7044,10 @@ var init_history = __esm({
|
|
|
6910
7044
|
}
|
|
6911
7045
|
}
|
|
6912
7046
|
for (const id in history) {
|
|
6913
|
-
const chatFile =
|
|
7047
|
+
const chatFile = path7.join(HISTORY_DIR, `${id}.json`);
|
|
6914
7048
|
Object.defineProperty(history[id], "messages", {
|
|
6915
7049
|
get: () => {
|
|
6916
|
-
if (
|
|
7050
|
+
if (fs8.existsSync(chatFile)) {
|
|
6917
7051
|
try {
|
|
6918
7052
|
return readEncryptedJson(chatFile, []);
|
|
6919
7053
|
} catch (e) {
|
|
@@ -6936,7 +7070,7 @@ var init_history = __esm({
|
|
|
6936
7070
|
};
|
|
6937
7071
|
saveChat = async (id, name, messages) => {
|
|
6938
7072
|
return withLock(async () => {
|
|
6939
|
-
await
|
|
7073
|
+
await fs8.ensureDir(HISTORY_DIR);
|
|
6940
7074
|
const history = await loadHistory();
|
|
6941
7075
|
const existingChat = history[id];
|
|
6942
7076
|
let persistentMessages = (messages || []).filter(
|
|
@@ -6950,7 +7084,7 @@ var init_history = __esm({
|
|
|
6950
7084
|
} catch (e) {
|
|
6951
7085
|
}
|
|
6952
7086
|
const finalName = name || (existingChat ? existingChat.name : `Session ${id.slice(-6)}`);
|
|
6953
|
-
const chatFile =
|
|
7087
|
+
const chatFile = path7.join(HISTORY_DIR, `${id}.json`);
|
|
6954
7088
|
writeEncryptedJson(chatFile, persistentMessages);
|
|
6955
7089
|
history[id] = {
|
|
6956
7090
|
name: finalName,
|
|
@@ -6997,7 +7131,7 @@ var init_history = __esm({
|
|
|
6997
7131
|
};
|
|
6998
7132
|
}
|
|
6999
7133
|
writeEncryptedJson(HISTORY_FILE, indexHistory);
|
|
7000
|
-
if (await
|
|
7134
|
+
if (await fs8.pathExists(CONTEXT_FILE)) {
|
|
7001
7135
|
try {
|
|
7002
7136
|
const contextData = readEncryptedJson(CONTEXT_FILE, []);
|
|
7003
7137
|
if (Array.isArray(contextData)) {
|
|
@@ -7018,10 +7152,10 @@ var init_history = __esm({
|
|
|
7018
7152
|
writeEncryptedJson(TEMP_MEM_CHAT_FILE, cache);
|
|
7019
7153
|
}
|
|
7020
7154
|
await RevertManager.deleteChatBackups(id);
|
|
7021
|
-
const chatFile =
|
|
7022
|
-
if (await
|
|
7155
|
+
const chatFile = path7.join(HISTORY_DIR, `${id}.json`);
|
|
7156
|
+
if (await fs8.pathExists(chatFile)) {
|
|
7023
7157
|
try {
|
|
7024
|
-
await
|
|
7158
|
+
await fs8.remove(chatFile);
|
|
7025
7159
|
} catch (e) {
|
|
7026
7160
|
}
|
|
7027
7161
|
}
|
|
@@ -7094,8 +7228,8 @@ var init_history = __esm({
|
|
|
7094
7228
|
};
|
|
7095
7229
|
cleanupLogFile = async (filePath) => {
|
|
7096
7230
|
try {
|
|
7097
|
-
if (!await
|
|
7098
|
-
const content = await
|
|
7231
|
+
if (!await fs8.pathExists(filePath)) return;
|
|
7232
|
+
const content = await fs8.readFile(filePath, "utf8");
|
|
7099
7233
|
if (!content.trim()) return;
|
|
7100
7234
|
const lines = content.split("\n");
|
|
7101
7235
|
const entries = [];
|
|
@@ -7135,26 +7269,26 @@ var init_history = __esm({
|
|
|
7135
7269
|
}
|
|
7136
7270
|
const finalContent = keptEntries.join("\n").trim();
|
|
7137
7271
|
if (finalContent) {
|
|
7138
|
-
await
|
|
7272
|
+
await fs8.writeFile(filePath, finalContent + "\n", "utf8");
|
|
7139
7273
|
} else {
|
|
7140
|
-
await
|
|
7274
|
+
await fs8.writeFile(filePath, "", "utf8");
|
|
7141
7275
|
}
|
|
7142
7276
|
} catch (e) {
|
|
7143
7277
|
}
|
|
7144
7278
|
};
|
|
7145
7279
|
cleanupOldLogs = async (logsDir) => {
|
|
7146
7280
|
try {
|
|
7147
|
-
if (!await
|
|
7281
|
+
if (!await fs8.pathExists(logsDir)) return;
|
|
7148
7282
|
const cleanRecursive = async (dir) => {
|
|
7149
|
-
const files = await
|
|
7283
|
+
const files = await fs8.readdir(dir);
|
|
7150
7284
|
for (const file of files) {
|
|
7151
|
-
const fullPath =
|
|
7152
|
-
const stat = await
|
|
7285
|
+
const fullPath = path7.join(dir, file);
|
|
7286
|
+
const stat = await fs8.stat(fullPath);
|
|
7153
7287
|
if (stat.isDirectory()) {
|
|
7154
7288
|
await cleanRecursive(fullPath);
|
|
7155
|
-
const subFiles = await
|
|
7289
|
+
const subFiles = await fs8.readdir(fullPath);
|
|
7156
7290
|
if (subFiles.length === 0) {
|
|
7157
|
-
await
|
|
7291
|
+
await fs8.remove(fullPath);
|
|
7158
7292
|
}
|
|
7159
7293
|
} else if (file.endsWith(".log")) {
|
|
7160
7294
|
await cleanupLogFile(fullPath);
|
|
@@ -7189,7 +7323,7 @@ var init_history = __esm({
|
|
|
7189
7323
|
};
|
|
7190
7324
|
loadChatContext = async (chatId) => {
|
|
7191
7325
|
try {
|
|
7192
|
-
if (!await
|
|
7326
|
+
if (!await fs8.pathExists(CONTEXT_FILE)) return { total: 0, context: 0 };
|
|
7193
7327
|
const contextData = readEncryptedJson(CONTEXT_FILE, []);
|
|
7194
7328
|
if (!Array.isArray(contextData)) return { total: 0, context: 0 };
|
|
7195
7329
|
const entry = contextData.find((item) => Object.keys(item)[0] === String(chatId));
|
|
@@ -7202,8 +7336,8 @@ var init_history = __esm({
|
|
|
7202
7336
|
});
|
|
7203
7337
|
|
|
7204
7338
|
// src/utils/usage.js
|
|
7205
|
-
import
|
|
7206
|
-
import
|
|
7339
|
+
import fs9 from "fs-extra";
|
|
7340
|
+
import path8 from "path";
|
|
7207
7341
|
import os3 from "os";
|
|
7208
7342
|
var getLocalBackupPath, BACKUP_FILE, generateSaveId, cachedUsage, writeTimeout, lastWriteTime, isDirty, defaultStats, purgeOldHistory, loadUsageFromFile, flushUsage, queueFlush, initUsage, forceFlushUsage, getDailyUsage, getMonthlyUsage, incrementUsage, runtimeSession, addToUsage, getCustomPeriodUsage, checkQuota, getImageQuotaBuckets, getImageQuotaLimit, checkImageQuota, getImageQuotaStats, recordImageGeneration;
|
|
7209
7343
|
var init_usage = __esm({
|
|
@@ -7212,14 +7346,14 @@ var init_usage = __esm({
|
|
|
7212
7346
|
init_crypto();
|
|
7213
7347
|
getLocalBackupPath = () => {
|
|
7214
7348
|
if (process.platform === "win32") {
|
|
7215
|
-
const localAppData = process.env.LOCALAPPDATA ||
|
|
7216
|
-
return
|
|
7349
|
+
const localAppData = process.env.LOCALAPPDATA || path8.join(os3.homedir(), "AppData", "Local");
|
|
7350
|
+
return path8.join(localAppData, "FxFl", "backups", "backup.json");
|
|
7217
7351
|
}
|
|
7218
7352
|
if (process.platform === "darwin") {
|
|
7219
|
-
return
|
|
7353
|
+
return path8.join(os3.homedir(), "Library", "Application Support", "FxFl", "backups", "backup.json");
|
|
7220
7354
|
}
|
|
7221
|
-
const xdgDataHome = process.env.XDG_DATA_HOME ||
|
|
7222
|
-
return
|
|
7355
|
+
const xdgDataHome = process.env.XDG_DATA_HOME || path8.join(os3.homedir(), ".local", "share");
|
|
7356
|
+
return path8.join(xdgDataHome, "fxfl", "backups", "backup.json");
|
|
7223
7357
|
};
|
|
7224
7358
|
BACKUP_FILE = getLocalBackupPath();
|
|
7225
7359
|
generateSaveId = () => Math.random().toString(36).substring(2) + Date.now().toString(36);
|
|
@@ -7261,8 +7395,8 @@ var init_usage = __esm({
|
|
|
7261
7395
|
let primaryData = null;
|
|
7262
7396
|
let backupData = null;
|
|
7263
7397
|
try {
|
|
7264
|
-
if (await
|
|
7265
|
-
const rawContent = (await
|
|
7398
|
+
if (await fs9.exists(tempFile)) {
|
|
7399
|
+
const rawContent = (await fs9.readFile(tempFile, "utf8")).trim();
|
|
7266
7400
|
let parsed = null;
|
|
7267
7401
|
if (rawContent.startsWith("{") || rawContent.startsWith("[")) {
|
|
7268
7402
|
parsed = JSON.parse(rawContent);
|
|
@@ -7272,26 +7406,26 @@ var init_usage = __esm({
|
|
|
7272
7406
|
if (parsed && parsed.date && parsed.stats) {
|
|
7273
7407
|
primaryData = parsed;
|
|
7274
7408
|
try {
|
|
7275
|
-
await
|
|
7409
|
+
await fs9.rename(tempFile, USAGE_FILE);
|
|
7276
7410
|
} catch (e) {
|
|
7277
7411
|
}
|
|
7278
7412
|
} else {
|
|
7279
7413
|
try {
|
|
7280
|
-
await
|
|
7414
|
+
await fs9.remove(tempFile);
|
|
7281
7415
|
} catch (e) {
|
|
7282
7416
|
}
|
|
7283
7417
|
}
|
|
7284
7418
|
}
|
|
7285
7419
|
} catch (err) {
|
|
7286
7420
|
try {
|
|
7287
|
-
await
|
|
7421
|
+
await fs9.remove(tempFile);
|
|
7288
7422
|
} catch (e) {
|
|
7289
7423
|
}
|
|
7290
7424
|
}
|
|
7291
7425
|
if (!primaryData) {
|
|
7292
7426
|
try {
|
|
7293
|
-
if (await
|
|
7294
|
-
const rawContent = (await
|
|
7427
|
+
if (await fs9.exists(USAGE_FILE)) {
|
|
7428
|
+
const rawContent = (await fs9.readFile(USAGE_FILE, "utf8")).trim();
|
|
7295
7429
|
if (rawContent.startsWith("{") || rawContent.startsWith("[")) {
|
|
7296
7430
|
primaryData = JSON.parse(rawContent);
|
|
7297
7431
|
} else {
|
|
@@ -7302,8 +7436,8 @@ var init_usage = __esm({
|
|
|
7302
7436
|
}
|
|
7303
7437
|
}
|
|
7304
7438
|
try {
|
|
7305
|
-
if (await
|
|
7306
|
-
const rawContent = (await
|
|
7439
|
+
if (await fs9.exists(BACKUP_FILE)) {
|
|
7440
|
+
const rawContent = (await fs9.readFile(BACKUP_FILE, "utf8")).trim();
|
|
7307
7441
|
if (rawContent.startsWith("{") || rawContent.startsWith("[")) {
|
|
7308
7442
|
backupData = JSON.parse(rawContent);
|
|
7309
7443
|
} else {
|
|
@@ -7317,8 +7451,8 @@ var init_usage = __esm({
|
|
|
7317
7451
|
if (primaryData.saveId !== backupData.saveId) {
|
|
7318
7452
|
resolvedData = primaryData;
|
|
7319
7453
|
try {
|
|
7320
|
-
await
|
|
7321
|
-
await
|
|
7454
|
+
await fs9.ensureDir(path8.dirname(BACKUP_FILE));
|
|
7455
|
+
await fs9.copy(USAGE_FILE, BACKUP_FILE);
|
|
7322
7456
|
} catch (e) {
|
|
7323
7457
|
}
|
|
7324
7458
|
} else {
|
|
@@ -7327,15 +7461,15 @@ var init_usage = __esm({
|
|
|
7327
7461
|
} else if (primaryData && !backupData) {
|
|
7328
7462
|
resolvedData = primaryData;
|
|
7329
7463
|
try {
|
|
7330
|
-
await
|
|
7331
|
-
await
|
|
7464
|
+
await fs9.ensureDir(path8.dirname(BACKUP_FILE));
|
|
7465
|
+
await fs9.copy(USAGE_FILE, BACKUP_FILE);
|
|
7332
7466
|
} catch (e) {
|
|
7333
7467
|
}
|
|
7334
7468
|
} else if (!primaryData && backupData) {
|
|
7335
7469
|
resolvedData = backupData;
|
|
7336
7470
|
try {
|
|
7337
|
-
await
|
|
7338
|
-
await
|
|
7471
|
+
await fs9.ensureDir(path8.dirname(USAGE_FILE));
|
|
7472
|
+
await fs9.copy(BACKUP_FILE, USAGE_FILE);
|
|
7339
7473
|
} catch (e) {
|
|
7340
7474
|
}
|
|
7341
7475
|
}
|
|
@@ -7375,11 +7509,11 @@ var init_usage = __esm({
|
|
|
7375
7509
|
flushUsage = async () => {
|
|
7376
7510
|
if (!isDirty || !cachedUsage) return;
|
|
7377
7511
|
try {
|
|
7378
|
-
await
|
|
7512
|
+
await fs9.ensureDir(path8.dirname(USAGE_FILE));
|
|
7379
7513
|
let diskData = null;
|
|
7380
7514
|
try {
|
|
7381
|
-
if (await
|
|
7382
|
-
const rawContent = (await
|
|
7515
|
+
if (await fs9.exists(USAGE_FILE)) {
|
|
7516
|
+
const rawContent = (await fs9.readFile(USAGE_FILE, "utf8")).trim();
|
|
7383
7517
|
if (rawContent.startsWith("{") || rawContent.startsWith("[")) {
|
|
7384
7518
|
diskData = JSON.parse(rawContent);
|
|
7385
7519
|
} else {
|
|
@@ -7455,14 +7589,14 @@ var init_usage = __esm({
|
|
|
7455
7589
|
cachedUsage.saveId = generateSaveId();
|
|
7456
7590
|
const tempFile = USAGE_FILE + ".tmp";
|
|
7457
7591
|
const encryptedStr = encryptAes(JSON.stringify(cachedUsage, null, 2));
|
|
7458
|
-
await
|
|
7459
|
-
const fd = await
|
|
7460
|
-
await
|
|
7461
|
-
await
|
|
7462
|
-
await
|
|
7592
|
+
await fs9.writeFile(tempFile, encryptedStr, "utf8");
|
|
7593
|
+
const fd = await fs9.open(tempFile, "r+");
|
|
7594
|
+
await fs9.fsync(fd);
|
|
7595
|
+
await fs9.close(fd);
|
|
7596
|
+
await fs9.rename(tempFile, USAGE_FILE);
|
|
7463
7597
|
try {
|
|
7464
|
-
await
|
|
7465
|
-
await
|
|
7598
|
+
await fs9.ensureDir(path8.dirname(BACKUP_FILE));
|
|
7599
|
+
await fs9.copy(USAGE_FILE, BACKUP_FILE);
|
|
7466
7600
|
} catch (backupErr) {
|
|
7467
7601
|
}
|
|
7468
7602
|
isDirty = false;
|
|
@@ -7946,10 +8080,10 @@ var init_usage = __esm({
|
|
|
7946
8080
|
|
|
7947
8081
|
// src/utils/puppeteer_helper.js
|
|
7948
8082
|
import os4 from "os";
|
|
7949
|
-
import
|
|
7950
|
-
import
|
|
8083
|
+
import path9 from "path";
|
|
8084
|
+
import fs10 from "fs";
|
|
7951
8085
|
import { createRequire } from "module";
|
|
7952
|
-
import { fileURLToPath } from "url";
|
|
8086
|
+
import { fileURLToPath as fileURLToPath2 } from "url";
|
|
7953
8087
|
function getPuppeteerConfig() {
|
|
7954
8088
|
const platform = os4.platform();
|
|
7955
8089
|
const arch = os4.arch();
|
|
@@ -7972,11 +8106,11 @@ function getPuppeteerConfig() {
|
|
|
7972
8106
|
} else {
|
|
7973
8107
|
return {};
|
|
7974
8108
|
}
|
|
7975
|
-
let configPath =
|
|
7976
|
-
if (!
|
|
7977
|
-
configPath =
|
|
8109
|
+
let configPath = path9.resolve(__dirname2, "..", "..", ".puppeteerrc.cjs");
|
|
8110
|
+
if (!fs10.existsSync(configPath)) {
|
|
8111
|
+
configPath = path9.resolve(__dirname2, "..", ".puppeteerrc.cjs");
|
|
7978
8112
|
}
|
|
7979
|
-
if (!
|
|
8113
|
+
if (!fs10.existsSync(configPath)) {
|
|
7980
8114
|
return {};
|
|
7981
8115
|
}
|
|
7982
8116
|
try {
|
|
@@ -7986,14 +8120,14 @@ function getPuppeteerConfig() {
|
|
|
7986
8120
|
if (cacheDir) {
|
|
7987
8121
|
process.env.PUPPETEER_CACHE_DIR = cacheDir;
|
|
7988
8122
|
if (version) {
|
|
7989
|
-
const expectedPath =
|
|
8123
|
+
const expectedPath = path9.join(
|
|
7990
8124
|
cacheDir,
|
|
7991
8125
|
"chrome",
|
|
7992
8126
|
`${pptrPlatform}-${version}`,
|
|
7993
8127
|
subDir,
|
|
7994
8128
|
execName
|
|
7995
8129
|
);
|
|
7996
|
-
if (
|
|
8130
|
+
if (fs10.existsSync(expectedPath)) {
|
|
7997
8131
|
return {
|
|
7998
8132
|
executablePath: expectedPath,
|
|
7999
8133
|
cacheDirectory: cacheDir
|
|
@@ -8001,15 +8135,15 @@ function getPuppeteerConfig() {
|
|
|
8001
8135
|
}
|
|
8002
8136
|
}
|
|
8003
8137
|
const findExecutable = (dir) => {
|
|
8004
|
-
if (!
|
|
8138
|
+
if (!fs10.existsSync(dir)) return null;
|
|
8005
8139
|
try {
|
|
8006
|
-
const files =
|
|
8140
|
+
const files = fs10.readdirSync(dir);
|
|
8007
8141
|
const dirsToSearch = [];
|
|
8008
8142
|
for (const file of files) {
|
|
8009
|
-
const fullPath =
|
|
8143
|
+
const fullPath = path9.join(dir, file);
|
|
8010
8144
|
let stat;
|
|
8011
8145
|
try {
|
|
8012
|
-
stat =
|
|
8146
|
+
stat = fs10.statSync(fullPath);
|
|
8013
8147
|
} catch (e) {
|
|
8014
8148
|
continue;
|
|
8015
8149
|
}
|
|
@@ -8051,11 +8185,11 @@ function getPuppeteerConfig() {
|
|
|
8051
8185
|
}
|
|
8052
8186
|
return {};
|
|
8053
8187
|
}
|
|
8054
|
-
var require2,
|
|
8188
|
+
var require2, __dirname2;
|
|
8055
8189
|
var init_puppeteer_helper = __esm({
|
|
8056
8190
|
"src/utils/puppeteer_helper.js"() {
|
|
8057
8191
|
require2 = createRequire(import.meta.url);
|
|
8058
|
-
|
|
8192
|
+
__dirname2 = path9.dirname(fileURLToPath2(import.meta.url));
|
|
8059
8193
|
}
|
|
8060
8194
|
});
|
|
8061
8195
|
|
|
@@ -8336,8 +8470,8 @@ var init_chat = __esm({
|
|
|
8336
8470
|
});
|
|
8337
8471
|
|
|
8338
8472
|
// src/tools/view_file.js
|
|
8339
|
-
import
|
|
8340
|
-
import
|
|
8473
|
+
import fs11 from "fs";
|
|
8474
|
+
import path10 from "path";
|
|
8341
8475
|
var view_file;
|
|
8342
8476
|
var init_view_file = __esm({
|
|
8343
8477
|
"src/tools/view_file.js"() {
|
|
@@ -8349,16 +8483,16 @@ var init_view_file = __esm({
|
|
|
8349
8483
|
const finalStart = sLine || 1;
|
|
8350
8484
|
const finalEnd = eLine || (sLine ? sLine + 800 : 800);
|
|
8351
8485
|
if (!targetPath) return 'ERROR: Missing "path" argument for view_file.';
|
|
8352
|
-
const absolutePath =
|
|
8486
|
+
const absolutePath = path10.resolve(process.cwd(), targetPath);
|
|
8353
8487
|
try {
|
|
8354
|
-
if (!
|
|
8488
|
+
if (!fs11.existsSync(absolutePath)) {
|
|
8355
8489
|
return `ERROR: File [${targetPath}] does not exist.`;
|
|
8356
8490
|
}
|
|
8357
|
-
const stats =
|
|
8491
|
+
const stats = fs11.statSync(absolutePath);
|
|
8358
8492
|
if (stats.isDirectory()) {
|
|
8359
8493
|
return `ERROR: Path [${targetPath}] is a directory. Use list_files instead.`;
|
|
8360
8494
|
}
|
|
8361
|
-
const ext =
|
|
8495
|
+
const ext = path10.extname(targetPath).toLowerCase();
|
|
8362
8496
|
const videoExtensions = [".mp4", ".mkv", ".avi", ".mov", ".webm", ".flv", ".wmv", ".mpeg", ".mpg"];
|
|
8363
8497
|
if (videoExtensions.includes(ext)) {
|
|
8364
8498
|
const format = ext.slice(1).toUpperCase();
|
|
@@ -8378,7 +8512,7 @@ var init_view_file = __esm({
|
|
|
8378
8512
|
if (!isMultiModal) {
|
|
8379
8513
|
return `ERROR: Multimodality is not supported for the current model. Unable to load [${targetPath}].`;
|
|
8380
8514
|
}
|
|
8381
|
-
const buffer =
|
|
8515
|
+
const buffer = fs11.readFileSync(absolutePath);
|
|
8382
8516
|
const base64 = buffer.toString("base64");
|
|
8383
8517
|
const mimeType = mimeMap[ext];
|
|
8384
8518
|
return {
|
|
@@ -8391,7 +8525,7 @@ var init_view_file = __esm({
|
|
|
8391
8525
|
}
|
|
8392
8526
|
};
|
|
8393
8527
|
}
|
|
8394
|
-
let content =
|
|
8528
|
+
let content = fs11.readFileSync(absolutePath, "utf8");
|
|
8395
8529
|
if (content.startsWith("\uFEFF")) {
|
|
8396
8530
|
content = content.slice(1);
|
|
8397
8531
|
}
|
|
@@ -8415,8 +8549,8 @@ ${code}`;
|
|
|
8415
8549
|
});
|
|
8416
8550
|
|
|
8417
8551
|
// src/tools/write_file.js
|
|
8418
|
-
import
|
|
8419
|
-
import
|
|
8552
|
+
import fs12 from "fs";
|
|
8553
|
+
import path11 from "path";
|
|
8420
8554
|
var write_file;
|
|
8421
8555
|
var init_write_file = __esm({
|
|
8422
8556
|
"src/tools/write_file.js"() {
|
|
@@ -8427,14 +8561,14 @@ var init_write_file = __esm({
|
|
|
8427
8561
|
if (!targetPath) return 'ERROR: Missing "path" argument for write_file.';
|
|
8428
8562
|
if (content === void 0) return 'ERROR: Missing "content" argument for write_file.';
|
|
8429
8563
|
content = content.replace(/^```[\w]*\n?/, "").replace(/```\s*$/, "").replace(/\r\n/g, "\n").replace(/\r/g, "\n");
|
|
8430
|
-
const absolutePath =
|
|
8431
|
-
const parentDir =
|
|
8564
|
+
const absolutePath = path11.resolve(process.cwd(), targetPath);
|
|
8565
|
+
const parentDir = path11.dirname(absolutePath);
|
|
8432
8566
|
try {
|
|
8433
8567
|
await RevertManager.recordFileChange(absolutePath);
|
|
8434
8568
|
let ancestry = "";
|
|
8435
|
-
if (
|
|
8569
|
+
if (fs12.existsSync(absolutePath)) {
|
|
8436
8570
|
try {
|
|
8437
|
-
const oldData =
|
|
8571
|
+
const oldData = fs12.readFileSync(absolutePath, "utf8");
|
|
8438
8572
|
const lines = oldData.split(/\r?\n/);
|
|
8439
8573
|
ancestry = `Old File contents:
|
|
8440
8574
|
${lines.map((l, i) => `${i + 1} | ${l}`).join("\n")}
|
|
@@ -8446,16 +8580,16 @@ ${lines.map((l, i) => `${i + 1} | ${l}`).join("\n")}
|
|
|
8446
8580
|
`;
|
|
8447
8581
|
}
|
|
8448
8582
|
}
|
|
8449
|
-
if (!
|
|
8450
|
-
|
|
8583
|
+
if (!fs12.existsSync(parentDir)) {
|
|
8584
|
+
fs12.mkdirSync(parentDir, { recursive: true });
|
|
8451
8585
|
}
|
|
8452
8586
|
const strip = (t) => t.replace(/^```[\w]*\n?/, "").replace(/```\s*$/, "").replace(/\r\n/g, "\n").replace(/\r/g, "\n");
|
|
8453
8587
|
const processedContent = strip(content);
|
|
8454
8588
|
const finalContent = processedContent.endsWith("\n") ? processedContent : processedContent + "\n";
|
|
8455
8589
|
const lineCount = finalContent.split(/\r?\n/).length;
|
|
8456
8590
|
const originalSize = Buffer.byteLength(finalContent, "utf8");
|
|
8457
|
-
|
|
8458
|
-
let verifiedContent =
|
|
8591
|
+
fs12.writeFileSync(absolutePath, finalContent, "utf8");
|
|
8592
|
+
let verifiedContent = fs12.readFileSync(absolutePath, "utf8");
|
|
8459
8593
|
const verifiedSize = Buffer.byteLength(verifiedContent, "utf8");
|
|
8460
8594
|
const verifiedLines = verifiedContent.split(/\r?\n/);
|
|
8461
8595
|
const verifiedLineCount = verifiedLines.length;
|
|
@@ -8490,8 +8624,8 @@ ${snippet}`;
|
|
|
8490
8624
|
});
|
|
8491
8625
|
|
|
8492
8626
|
// src/tools/update_file.js
|
|
8493
|
-
import
|
|
8494
|
-
import
|
|
8627
|
+
import fs13 from "fs";
|
|
8628
|
+
import path12 from "path";
|
|
8495
8629
|
var update_file;
|
|
8496
8630
|
var init_update_file = __esm({
|
|
8497
8631
|
"src/tools/update_file.js"() {
|
|
@@ -8507,12 +8641,12 @@ var init_update_file = __esm({
|
|
|
8507
8641
|
if (patchPairs.length === 0) {
|
|
8508
8642
|
return "ERROR: No valid replacement pairs found. Use replaceContent1, newContent1, etc.";
|
|
8509
8643
|
}
|
|
8510
|
-
const absolutePath =
|
|
8644
|
+
const absolutePath = path12.resolve(process.cwd(), targetPath);
|
|
8511
8645
|
try {
|
|
8512
|
-
if (!
|
|
8646
|
+
if (!fs13.existsSync(absolutePath)) {
|
|
8513
8647
|
return `ERROR: File [${targetPath}] does not exist. Use write_file instead.`;
|
|
8514
8648
|
}
|
|
8515
|
-
let diskContent = context.forcedContent ||
|
|
8649
|
+
let diskContent = context.forcedContent || fs13.readFileSync(absolutePath, "utf8");
|
|
8516
8650
|
if (diskContent.startsWith("\uFEFF")) diskContent = diskContent.slice(1);
|
|
8517
8651
|
const originalContent = diskContent.replace(/\r\n/g, "\n").replace(/\r/g, "\n");
|
|
8518
8652
|
const { content: finalContent, results } = applyPatches(originalContent, patchPairs);
|
|
@@ -8523,7 +8657,7 @@ var init_update_file = __esm({
|
|
|
8523
8657
|
${failures.map((f) => ` \u2022 ${f.error}`).join("\n")}`;
|
|
8524
8658
|
}
|
|
8525
8659
|
await RevertManager.recordFileChange(absolutePath, originalContent);
|
|
8526
|
-
|
|
8660
|
+
fs13.writeFileSync(absolutePath, finalContent, "utf8");
|
|
8527
8661
|
const diffText = generateHighFidelityDiff(originalContent, finalContent, results, 12);
|
|
8528
8662
|
if (failures.length > 0) {
|
|
8529
8663
|
return `SUCCESS: File [${targetPath}] updated with some blocks failed. [${successes.length}/${patchPairs.length}] blocks applied.
|
|
@@ -8545,34 +8679,34 @@ ${diffText}`;
|
|
|
8545
8679
|
});
|
|
8546
8680
|
|
|
8547
8681
|
// src/tools/read_folder.js
|
|
8548
|
-
import
|
|
8549
|
-
import
|
|
8682
|
+
import fs14 from "fs";
|
|
8683
|
+
import path13 from "path";
|
|
8550
8684
|
var read_folder;
|
|
8551
8685
|
var init_read_folder = __esm({
|
|
8552
8686
|
"src/tools/read_folder.js"() {
|
|
8553
8687
|
init_arg_parser();
|
|
8554
8688
|
read_folder = async (args) => {
|
|
8555
8689
|
const { path: targetPath = "." } = parseArgs(args);
|
|
8556
|
-
const absolutePath =
|
|
8690
|
+
const absolutePath = path13.resolve(process.cwd(), targetPath);
|
|
8557
8691
|
try {
|
|
8558
|
-
if (!
|
|
8692
|
+
if (!fs14.existsSync(absolutePath)) {
|
|
8559
8693
|
return `ERROR: Path [${targetPath}] does not exist.`;
|
|
8560
8694
|
}
|
|
8561
|
-
const stats =
|
|
8695
|
+
const stats = fs14.statSync(absolutePath);
|
|
8562
8696
|
if (!stats.isDirectory()) {
|
|
8563
8697
|
return `ERROR: Path [${targetPath}] is a file, not a directory. Use view_file instead.`;
|
|
8564
8698
|
}
|
|
8565
|
-
const files =
|
|
8699
|
+
const files = fs14.readdirSync(absolutePath);
|
|
8566
8700
|
const totalItems = files.length;
|
|
8567
8701
|
const maxDisplay = 100;
|
|
8568
8702
|
const displayItems = files.slice(0, maxDisplay);
|
|
8569
8703
|
const folderData = [];
|
|
8570
8704
|
for (const file of displayItems) {
|
|
8571
|
-
const fPath =
|
|
8705
|
+
const fPath = path13.join(absolutePath, file);
|
|
8572
8706
|
let indicator = "\u{1F4C4}";
|
|
8573
8707
|
let info = { name: file, type: "unknown", size: "N/A", mtime: "N/A" };
|
|
8574
8708
|
try {
|
|
8575
|
-
const fStats =
|
|
8709
|
+
const fStats = fs14.statSync(fPath);
|
|
8576
8710
|
info = {
|
|
8577
8711
|
name: file,
|
|
8578
8712
|
type: fStats.isDirectory() ? "directory" : "file",
|
|
@@ -8657,8 +8791,8 @@ var init_ask_user = __esm({
|
|
|
8657
8791
|
|
|
8658
8792
|
// src/tools/write_pdf.js
|
|
8659
8793
|
import puppeteer3 from "puppeteer";
|
|
8660
|
-
import
|
|
8661
|
-
import
|
|
8794
|
+
import path14 from "path";
|
|
8795
|
+
import fs15 from "fs-extra";
|
|
8662
8796
|
import { PDFDocument } from "pdf-lib";
|
|
8663
8797
|
var write_pdf;
|
|
8664
8798
|
var init_write_pdf = __esm({
|
|
@@ -8675,10 +8809,10 @@ var init_write_pdf = __esm({
|
|
|
8675
8809
|
} = parseArgs(args);
|
|
8676
8810
|
if (!targetPath) return 'ERROR: Missing "path" argument for write_pdf.';
|
|
8677
8811
|
if (!content) return 'ERROR: Missing "content" (HTML/CSS) for write_pdf.';
|
|
8678
|
-
const absolutePath =
|
|
8812
|
+
const absolutePath = path14.resolve(process.cwd(), targetPath);
|
|
8679
8813
|
let browser = null;
|
|
8680
8814
|
try {
|
|
8681
|
-
await
|
|
8815
|
+
await fs15.ensureDir(path14.dirname(absolutePath));
|
|
8682
8816
|
await RevertManager.recordFileChange(absolutePath);
|
|
8683
8817
|
const pptrConfig = getPuppeteerConfig();
|
|
8684
8818
|
browser = await puppeteer3.launch({
|
|
@@ -8699,11 +8833,11 @@ var init_write_pdf = __esm({
|
|
|
8699
8833
|
return null;
|
|
8700
8834
|
}
|
|
8701
8835
|
try {
|
|
8702
|
-
const imgPath =
|
|
8703
|
-
if (await
|
|
8704
|
-
const ext =
|
|
8836
|
+
const imgPath = path14.resolve(process.cwd(), originalSrc);
|
|
8837
|
+
if (await fs15.pathExists(imgPath)) {
|
|
8838
|
+
const ext = path14.extname(imgPath).toLowerCase().replace(".", "") || "png";
|
|
8705
8839
|
const mime = ext === "jpg" ? "jpeg" : ext === "svg" ? "svg+xml" : ext;
|
|
8706
|
-
const base64 = await
|
|
8840
|
+
const base64 = await fs15.readFile(imgPath, "base64");
|
|
8707
8841
|
return `data:image/${mime};base64,${base64}`;
|
|
8708
8842
|
}
|
|
8709
8843
|
} catch (e) {
|
|
@@ -8718,9 +8852,9 @@ var init_write_pdf = __esm({
|
|
|
8718
8852
|
const fullTag = match[0];
|
|
8719
8853
|
if (originalHref && fullTag.toLowerCase().includes("stylesheet") && !originalHref.startsWith("http://") && !originalHref.startsWith("https://") && !originalHref.startsWith("data:")) {
|
|
8720
8854
|
try {
|
|
8721
|
-
const cssPath =
|
|
8722
|
-
if (await
|
|
8723
|
-
const cssContent = await
|
|
8855
|
+
const cssPath = path14.resolve(process.cwd(), originalHref);
|
|
8856
|
+
if (await fs15.pathExists(cssPath)) {
|
|
8857
|
+
const cssContent = await fs15.readFile(cssPath, "utf-8");
|
|
8724
8858
|
cssCache[fullTag] = `<style>${cssContent}</style>`;
|
|
8725
8859
|
}
|
|
8726
8860
|
} catch (e) {
|
|
@@ -8801,7 +8935,7 @@ var init_write_pdf = __esm({
|
|
|
8801
8935
|
printBackground: true
|
|
8802
8936
|
});
|
|
8803
8937
|
const pdfDoc = await PDFDocument.load(pdfBytes);
|
|
8804
|
-
const fileName =
|
|
8938
|
+
const fileName = path14.basename(targetPath);
|
|
8805
8939
|
pdfDoc.setTitle(`FluxFlow_${fileName}`);
|
|
8806
8940
|
pdfDoc.setAuthor("FluxFlow CLI");
|
|
8807
8941
|
pdfDoc.setSubject("Generated with Agentic AI System");
|
|
@@ -8809,8 +8943,8 @@ var init_write_pdf = __esm({
|
|
|
8809
8943
|
pdfDoc.setCreator("FluxFlow PDF Engine");
|
|
8810
8944
|
pdfDoc.setProducer("FluxFlow (Generative AI)");
|
|
8811
8945
|
const finalPdfBytes = await pdfDoc.save();
|
|
8812
|
-
await
|
|
8813
|
-
const stats = await
|
|
8946
|
+
await fs15.writeFile(absolutePath, finalPdfBytes);
|
|
8947
|
+
const stats = await fs15.stat(absolutePath);
|
|
8814
8948
|
return `SUCCESS: PDF generated successfully at [${targetPath}] (${(stats.size / 1024).toFixed(2)} KB).`;
|
|
8815
8949
|
} catch (err) {
|
|
8816
8950
|
const errorMsg = err instanceof Error ? err.message : String(err);
|
|
@@ -8823,8 +8957,8 @@ var init_write_pdf = __esm({
|
|
|
8823
8957
|
});
|
|
8824
8958
|
|
|
8825
8959
|
// src/tools/write_docx.js
|
|
8826
|
-
import
|
|
8827
|
-
import
|
|
8960
|
+
import fs16 from "fs-extra";
|
|
8961
|
+
import path15 from "path";
|
|
8828
8962
|
import HTMLtoDOCX from "html-to-docx";
|
|
8829
8963
|
var write_docx;
|
|
8830
8964
|
var init_write_docx = __esm({
|
|
@@ -8838,11 +8972,11 @@ var init_write_docx = __esm({
|
|
|
8838
8972
|
} = parseArgs(args);
|
|
8839
8973
|
if (!targetPath) return 'ERROR: Missing "path" argument for write_docx.';
|
|
8840
8974
|
if (!content) return 'ERROR: Missing "content" (HTML) for write_docx.';
|
|
8841
|
-
const absolutePath =
|
|
8975
|
+
const absolutePath = path15.resolve(process.cwd(), targetPath);
|
|
8842
8976
|
try {
|
|
8843
|
-
await
|
|
8977
|
+
await fs16.ensureDir(path15.dirname(absolutePath));
|
|
8844
8978
|
await RevertManager.recordFileChange(absolutePath);
|
|
8845
|
-
const fileName =
|
|
8979
|
+
const fileName = path15.basename(targetPath);
|
|
8846
8980
|
const fullHtml = content.includes("<html") ? content : `
|
|
8847
8981
|
<!DOCTYPE html>
|
|
8848
8982
|
<html lang="en">
|
|
@@ -8863,7 +8997,7 @@ var init_write_docx = __esm({
|
|
|
8863
8997
|
footer: true,
|
|
8864
8998
|
pageNumber: true
|
|
8865
8999
|
});
|
|
8866
|
-
await
|
|
9000
|
+
await fs16.writeFile(absolutePath, docxBuffer);
|
|
8867
9001
|
return `SUCCESS: Word document [${targetPath}] generated successfully.
|
|
8868
9002
|
- Size: ${(docxBuffer.length / 1024).toFixed(1)} KB`;
|
|
8869
9003
|
} catch (err) {
|
|
@@ -8875,21 +9009,21 @@ var init_write_docx = __esm({
|
|
|
8875
9009
|
});
|
|
8876
9010
|
|
|
8877
9011
|
// src/tools/search_keyword.js
|
|
8878
|
-
import
|
|
8879
|
-
import
|
|
9012
|
+
import fs17 from "fs/promises";
|
|
9013
|
+
import path16 from "path";
|
|
8880
9014
|
async function getFilesRecursively(dir, excludes, baseDir = dir, depth = 1) {
|
|
8881
9015
|
if (depth > 12) return [];
|
|
8882
9016
|
let results = [];
|
|
8883
9017
|
let list;
|
|
8884
9018
|
try {
|
|
8885
|
-
list = await
|
|
9019
|
+
list = await fs17.readdir(dir, { withFileTypes: true });
|
|
8886
9020
|
} catch {
|
|
8887
9021
|
return [];
|
|
8888
9022
|
}
|
|
8889
9023
|
for (const file of list) {
|
|
8890
|
-
const fullPath =
|
|
8891
|
-
const relativePath =
|
|
8892
|
-
const pathSegments = relativePath.split(
|
|
9024
|
+
const fullPath = path16.join(dir, file.name);
|
|
9025
|
+
const relativePath = path16.relative(baseDir, fullPath);
|
|
9026
|
+
const pathSegments = relativePath.split(path16.sep).map((s) => s.toLowerCase());
|
|
8893
9027
|
const isExcluded = excludes.some((ex) => pathSegments.includes(ex.toLowerCase()));
|
|
8894
9028
|
if (isExcluded) continue;
|
|
8895
9029
|
if (file.isDirectory()) {
|
|
@@ -8980,11 +9114,11 @@ var init_search_keyword = __esm({
|
|
|
8980
9114
|
let filesToSearch = [];
|
|
8981
9115
|
const rootDir = process.cwd();
|
|
8982
9116
|
if (file) {
|
|
8983
|
-
const fullPath =
|
|
9117
|
+
const fullPath = path16.resolve(rootDir, file);
|
|
8984
9118
|
try {
|
|
8985
|
-
const stat = await
|
|
9119
|
+
const stat = await fs17.stat(fullPath);
|
|
8986
9120
|
if (stat.isFile()) {
|
|
8987
|
-
filesToSearch.push({ fullPath, relativePath:
|
|
9121
|
+
filesToSearch.push({ fullPath, relativePath: path16.relative(rootDir, fullPath) });
|
|
8988
9122
|
}
|
|
8989
9123
|
} catch {
|
|
8990
9124
|
return `ERROR: File not found: ${file}`;
|
|
@@ -8994,7 +9128,7 @@ var init_search_keyword = __esm({
|
|
|
8994
9128
|
}
|
|
8995
9129
|
const searchPromises = filesToSearch.map(async (fileObj) => {
|
|
8996
9130
|
try {
|
|
8997
|
-
const content = await
|
|
9131
|
+
const content = await fs17.readFile(fileObj.fullPath, "utf-8");
|
|
8998
9132
|
if (content.includes("\0")) return [];
|
|
8999
9133
|
const lines = content.split(/\r?\n/);
|
|
9000
9134
|
const fileMatches = [];
|
|
@@ -9052,8 +9186,8 @@ var init_search_keyword = __esm({
|
|
|
9052
9186
|
});
|
|
9053
9187
|
|
|
9054
9188
|
// src/tools/generate_image.js
|
|
9055
|
-
import
|
|
9056
|
-
import
|
|
9189
|
+
import fs18 from "fs-extra";
|
|
9190
|
+
import path17 from "path";
|
|
9057
9191
|
var injectPngMetadata, generate_image;
|
|
9058
9192
|
var init_generate_image = __esm({
|
|
9059
9193
|
"src/tools/generate_image.js"() {
|
|
@@ -9232,12 +9366,12 @@ var init_generate_image = __esm({
|
|
|
9232
9366
|
"Seed": String(seed)
|
|
9233
9367
|
};
|
|
9234
9368
|
finalBuffer = injectPngMetadata(finalBuffer, metadata);
|
|
9235
|
-
const absolutePath =
|
|
9236
|
-
await
|
|
9369
|
+
const absolutePath = path17.resolve(process.cwd(), outputPath);
|
|
9370
|
+
await fs18.ensureDir(path17.dirname(absolutePath));
|
|
9237
9371
|
await RevertManager.recordFileChange(absolutePath);
|
|
9238
|
-
await
|
|
9372
|
+
await fs18.writeFile(absolutePath, finalBuffer);
|
|
9239
9373
|
await recordImageGeneration(settings);
|
|
9240
|
-
const ext =
|
|
9374
|
+
const ext = path17.extname(outputPath).toLowerCase();
|
|
9241
9375
|
const mimeMap = {
|
|
9242
9376
|
".jpg": "image/jpeg",
|
|
9243
9377
|
".jpeg": "image/jpeg",
|
|
@@ -9352,13 +9486,13 @@ var init_addMemScore = __esm({
|
|
|
9352
9486
|
});
|
|
9353
9487
|
|
|
9354
9488
|
// src/utils/parsers.js
|
|
9355
|
-
import
|
|
9356
|
-
import
|
|
9489
|
+
import fs19 from "fs-extra";
|
|
9490
|
+
import path18 from "path";
|
|
9357
9491
|
import https from "https";
|
|
9358
9492
|
async function downloadWasm(wasmFile, targetUrl = null) {
|
|
9359
9493
|
const url = targetUrl || `https://unpkg.com/tree-sitter-wasms@0.1.13/out/${wasmFile}`;
|
|
9360
|
-
const localPath =
|
|
9361
|
-
await
|
|
9494
|
+
const localPath = path18.join(PARSER_DIR, wasmFile);
|
|
9495
|
+
await fs19.ensureDir(PARSER_DIR);
|
|
9362
9496
|
return new Promise((resolve, reject) => {
|
|
9363
9497
|
const options = {
|
|
9364
9498
|
headers: {
|
|
@@ -9379,27 +9513,27 @@ async function downloadWasm(wasmFile, targetUrl = null) {
|
|
|
9379
9513
|
reject(new Error(`Failed to download ${wasmFile}: HTTP ${response.statusCode}`));
|
|
9380
9514
|
return;
|
|
9381
9515
|
}
|
|
9382
|
-
const file =
|
|
9516
|
+
const file = fs19.createWriteStream(localPath);
|
|
9383
9517
|
response.pipe(file);
|
|
9384
9518
|
file.on("finish", () => {
|
|
9385
9519
|
file.close();
|
|
9386
9520
|
resolve();
|
|
9387
9521
|
});
|
|
9388
9522
|
}).on("error", (err) => {
|
|
9389
|
-
if (
|
|
9523
|
+
if (fs19.existsSync(localPath)) fs19.unlink(localPath, () => {
|
|
9390
9524
|
});
|
|
9391
9525
|
reject(err);
|
|
9392
9526
|
});
|
|
9393
9527
|
});
|
|
9394
9528
|
}
|
|
9395
9529
|
function isParserInstalled(wasmFile) {
|
|
9396
|
-
const localPath =
|
|
9397
|
-
return
|
|
9530
|
+
const localPath = path18.join(PARSER_DIR, wasmFile);
|
|
9531
|
+
return fs19.existsSync(localPath);
|
|
9398
9532
|
}
|
|
9399
9533
|
async function deleteParser(wasmFile) {
|
|
9400
|
-
const localPath =
|
|
9401
|
-
if (
|
|
9402
|
-
await
|
|
9534
|
+
const localPath = path18.join(PARSER_DIR, wasmFile);
|
|
9535
|
+
if (fs19.existsSync(localPath)) {
|
|
9536
|
+
await fs19.unlink(localPath);
|
|
9403
9537
|
}
|
|
9404
9538
|
}
|
|
9405
9539
|
var EXTENSION_TO_WASM;
|
|
@@ -9421,8 +9555,8 @@ var init_parsers = __esm({
|
|
|
9421
9555
|
});
|
|
9422
9556
|
|
|
9423
9557
|
// src/tools/file_map.js
|
|
9424
|
-
import
|
|
9425
|
-
import
|
|
9558
|
+
import fs20 from "fs-extra";
|
|
9559
|
+
import path19 from "path";
|
|
9426
9560
|
import { createRequire as createRequire2 } from "module";
|
|
9427
9561
|
function sanitize(text, limit = 50) {
|
|
9428
9562
|
if (!text) return "";
|
|
@@ -9614,17 +9748,17 @@ var init_file_map = __esm({
|
|
|
9614
9748
|
if (!filePath) {
|
|
9615
9749
|
return 'ERROR: No file path provided. Use [tool:functions.FileMap(path="...")]';
|
|
9616
9750
|
}
|
|
9617
|
-
const absolutePath =
|
|
9618
|
-
if (!
|
|
9751
|
+
const absolutePath = path19.isAbsolute(filePath) ? filePath : path19.resolve(process.cwd(), filePath);
|
|
9752
|
+
if (!fs20.existsSync(absolutePath)) {
|
|
9619
9753
|
return `ERROR: File not found: ${filePath}`;
|
|
9620
9754
|
}
|
|
9621
|
-
const ext =
|
|
9755
|
+
const ext = path19.extname(absolutePath).slice(1).toLowerCase();
|
|
9622
9756
|
const wasmFile = EXTENSION_TO_WASM[ext];
|
|
9623
9757
|
if (!wasmFile) {
|
|
9624
9758
|
return `ERROR: Unsupported file extension: .${ext}`;
|
|
9625
9759
|
}
|
|
9626
|
-
const wasmPath =
|
|
9627
|
-
if (!
|
|
9760
|
+
const wasmPath = path19.resolve(PARSER_DIR, wasmFile);
|
|
9761
|
+
if (!fs20.existsSync(wasmPath)) {
|
|
9628
9762
|
return `ERROR: Parser for .${ext} not found. Please download it in Settings > Other.`;
|
|
9629
9763
|
}
|
|
9630
9764
|
try {
|
|
@@ -9632,9 +9766,9 @@ var init_file_map = __esm({
|
|
|
9632
9766
|
if (!isParserInitialized) {
|
|
9633
9767
|
let tsWasmPath;
|
|
9634
9768
|
try {
|
|
9635
|
-
tsWasmPath =
|
|
9769
|
+
tsWasmPath = path19.join(path19.dirname(require3.resolve("web-tree-sitter")), "tree-sitter.wasm");
|
|
9636
9770
|
} catch (e) {
|
|
9637
|
-
tsWasmPath =
|
|
9771
|
+
tsWasmPath = path19.join(process.cwd(), "node_modules", "web-tree-sitter", "tree-sitter.wasm");
|
|
9638
9772
|
}
|
|
9639
9773
|
await Parser.init({
|
|
9640
9774
|
locateFile: (p) => {
|
|
@@ -9649,7 +9783,7 @@ var init_file_map = __esm({
|
|
|
9649
9783
|
const parser = new Parser();
|
|
9650
9784
|
const Lang = await TreeSitter.Language.load(wasmPath);
|
|
9651
9785
|
parser.setLanguage(Lang);
|
|
9652
|
-
const sourceCode = await
|
|
9786
|
+
const sourceCode = await fs20.readFile(absolutePath, "utf8");
|
|
9653
9787
|
const lines = sourceCode.split("\n").length;
|
|
9654
9788
|
let maxDepth = 12;
|
|
9655
9789
|
if (lines > 1e4) maxDepth = 2;
|
|
@@ -9672,8 +9806,8 @@ Stack: ${err.stack}` : "";
|
|
|
9672
9806
|
});
|
|
9673
9807
|
|
|
9674
9808
|
// src/tools/todo.js
|
|
9675
|
-
import
|
|
9676
|
-
import
|
|
9809
|
+
import fs21 from "fs";
|
|
9810
|
+
import path20 from "path";
|
|
9677
9811
|
var todo;
|
|
9678
9812
|
var init_todo = __esm({
|
|
9679
9813
|
"src/tools/todo.js"() {
|
|
@@ -9684,8 +9818,8 @@ var init_todo = __esm({
|
|
|
9684
9818
|
const { method, tasks, markDone } = parseArgs(args);
|
|
9685
9819
|
const chatId = context.chatId || "default";
|
|
9686
9820
|
if (!method) return 'ERROR: Missing "method" argument for todo tool (create/append/get).';
|
|
9687
|
-
const todoDir =
|
|
9688
|
-
const todoFile =
|
|
9821
|
+
const todoDir = path20.join(DATA_DIR, "plan", chatId);
|
|
9822
|
+
const todoFile = path20.join(todoDir, "todo.md");
|
|
9689
9823
|
const parseMessyArray = (input) => {
|
|
9690
9824
|
if (!input || Array.isArray(input)) return input;
|
|
9691
9825
|
const trimmed = String(input).trim();
|
|
@@ -9745,8 +9879,8 @@ var init_todo = __esm({
|
|
|
9745
9879
|
};
|
|
9746
9880
|
};
|
|
9747
9881
|
try {
|
|
9748
|
-
if (!
|
|
9749
|
-
|
|
9882
|
+
if (!fs21.existsSync(todoDir)) {
|
|
9883
|
+
fs21.mkdirSync(todoDir, { recursive: true });
|
|
9750
9884
|
}
|
|
9751
9885
|
if (method === "create") {
|
|
9752
9886
|
if (!tasks) return 'ERROR: Missing "tasks" for create method.';
|
|
@@ -9758,7 +9892,7 @@ var init_todo = __esm({
|
|
|
9758
9892
|
markedCount = result.markedCount;
|
|
9759
9893
|
}
|
|
9760
9894
|
await RevertManager.recordFileChange(todoFile);
|
|
9761
|
-
|
|
9895
|
+
fs21.writeFileSync(todoFile, content, "utf8");
|
|
9762
9896
|
const total = content.split(/\r?\n/).map((l) => l.trim()).filter((l) => l.startsWith("- [ ]") || l.startsWith("- [x]") || l.startsWith("- [X]")).length;
|
|
9763
9897
|
if (markedCount > 0) {
|
|
9764
9898
|
const completed = content.split(/\r?\n/).map((l) => l.trim()).filter((l) => l.startsWith("- [x]") || l.startsWith("- [X]")).length;
|
|
@@ -9772,8 +9906,8 @@ ${content}`;
|
|
|
9772
9906
|
if (!tasks) return 'ERROR: Missing "tasks" for append method.';
|
|
9773
9907
|
const appendContent = getTasksString(tasks);
|
|
9774
9908
|
await RevertManager.recordFileChange(todoFile);
|
|
9775
|
-
|
|
9776
|
-
const fullContent =
|
|
9909
|
+
fs21.appendFileSync(todoFile, appendContent, "utf8");
|
|
9910
|
+
const fullContent = fs21.readFileSync(todoFile, "utf8");
|
|
9777
9911
|
const lines = fullContent.split(/\r?\n/).map((l) => l.trim());
|
|
9778
9912
|
const total = lines.filter((l) => l.startsWith("- [ ]") || l.startsWith("- [x]") || l.startsWith("- [X]")).length;
|
|
9779
9913
|
const completed = lines.filter((l) => l.startsWith("- [x]") || l.startsWith("- [X]")).length;
|
|
@@ -9782,10 +9916,10 @@ ${content}`;
|
|
|
9782
9916
|
${fullContent}`;
|
|
9783
9917
|
}
|
|
9784
9918
|
if (method === "get") {
|
|
9785
|
-
if (!
|
|
9919
|
+
if (!fs21.existsSync(todoFile)) {
|
|
9786
9920
|
return "TODO GET: No task list found for this session.";
|
|
9787
9921
|
}
|
|
9788
|
-
let content =
|
|
9922
|
+
let content = fs21.readFileSync(todoFile, "utf8");
|
|
9789
9923
|
let markedCount = 0;
|
|
9790
9924
|
if (markDone) {
|
|
9791
9925
|
const result = applyMarkDone(content, markDone);
|
|
@@ -9793,7 +9927,7 @@ ${fullContent}`;
|
|
|
9793
9927
|
content = result.content;
|
|
9794
9928
|
markedCount = result.markedCount;
|
|
9795
9929
|
await RevertManager.recordFileChange(todoFile);
|
|
9796
|
-
|
|
9930
|
+
fs21.writeFileSync(todoFile, content, "utf8");
|
|
9797
9931
|
}
|
|
9798
9932
|
}
|
|
9799
9933
|
const totalLines = content.split(/\r?\n/).map((l) => l.trim());
|
|
@@ -10174,20 +10308,20 @@ var init_await = __esm({
|
|
|
10174
10308
|
});
|
|
10175
10309
|
|
|
10176
10310
|
// src/utils/advanceRevert.js
|
|
10177
|
-
import
|
|
10178
|
-
import
|
|
10311
|
+
import fs22 from "fs-extra";
|
|
10312
|
+
import path21 from "path";
|
|
10179
10313
|
async function scanWorkspace(dir, baseDir = dir) {
|
|
10180
10314
|
const manifest = {};
|
|
10181
|
-
const entries = await
|
|
10315
|
+
const entries = await fs22.readdir(dir, { withFileTypes: true }).catch(() => []);
|
|
10182
10316
|
for (const entry of entries) {
|
|
10183
10317
|
if (JUNK_DIRECTORIES.includes(entry.name)) continue;
|
|
10184
|
-
const fullPath =
|
|
10185
|
-
const relPath =
|
|
10318
|
+
const fullPath = path21.join(dir, entry.name);
|
|
10319
|
+
const relPath = path21.relative(baseDir, fullPath).replace(/\\/g, "/");
|
|
10186
10320
|
if (entry.isDirectory()) {
|
|
10187
10321
|
const sub = await scanWorkspace(fullPath, baseDir);
|
|
10188
10322
|
Object.assign(manifest, sub);
|
|
10189
10323
|
} else {
|
|
10190
|
-
const stats = await
|
|
10324
|
+
const stats = await fs22.stat(fullPath).catch(() => null);
|
|
10191
10325
|
if (stats) {
|
|
10192
10326
|
manifest[relPath] = {
|
|
10193
10327
|
size: stats.size,
|
|
@@ -10199,34 +10333,34 @@ async function scanWorkspace(dir, baseDir = dir) {
|
|
|
10199
10333
|
return manifest;
|
|
10200
10334
|
}
|
|
10201
10335
|
async function copyWorkspaceFiles(destDir, manifest) {
|
|
10202
|
-
await
|
|
10336
|
+
await fs22.ensureDir(destDir);
|
|
10203
10337
|
for (const relPath of Object.keys(manifest)) {
|
|
10204
|
-
const srcPath =
|
|
10205
|
-
const destPath =
|
|
10206
|
-
await
|
|
10207
|
-
await
|
|
10338
|
+
const srcPath = path21.join(process.cwd(), relPath);
|
|
10339
|
+
const destPath = path21.join(destDir, relPath);
|
|
10340
|
+
await fs22.ensureDir(path21.dirname(destPath));
|
|
10341
|
+
await fs22.copyFile(srcPath, destPath).catch(() => {
|
|
10208
10342
|
});
|
|
10209
10343
|
}
|
|
10210
10344
|
}
|
|
10211
10345
|
async function restoreSnapshotDir(srcDir, destDir, stats = null, baseDir = null) {
|
|
10212
|
-
if (!await
|
|
10346
|
+
if (!await fs22.pathExists(srcDir)) return;
|
|
10213
10347
|
if (!baseDir) baseDir = srcDir;
|
|
10214
|
-
const entries = await
|
|
10348
|
+
const entries = await fs22.readdir(srcDir, { withFileTypes: true }).catch(() => []);
|
|
10215
10349
|
for (const entry of entries) {
|
|
10216
|
-
const srcPath =
|
|
10217
|
-
const destPath =
|
|
10350
|
+
const srcPath = path21.join(srcDir, entry.name);
|
|
10351
|
+
const destPath = path21.join(destDir, entry.name);
|
|
10218
10352
|
if (entry.isDirectory()) {
|
|
10219
10353
|
await restoreSnapshotDir(srcPath, destPath, stats, baseDir);
|
|
10220
10354
|
} else {
|
|
10221
|
-
const relPath =
|
|
10222
|
-
const existed = await
|
|
10355
|
+
const relPath = path21.relative(baseDir, srcPath).replace(/\\/g, "/");
|
|
10356
|
+
const existed = await fs22.pathExists(destPath);
|
|
10223
10357
|
if (existed) {
|
|
10224
|
-
await
|
|
10358
|
+
await fs22.chmod(destPath, 438).catch(() => {
|
|
10225
10359
|
});
|
|
10226
10360
|
}
|
|
10227
|
-
await
|
|
10228
|
-
const ok = await
|
|
10229
|
-
await
|
|
10361
|
+
await fs22.ensureDir(path21.dirname(destPath));
|
|
10362
|
+
const ok = await fs22.copyFile(srcPath, destPath).then(() => true).catch(() => false);
|
|
10363
|
+
await fs22.chmod(destPath, 438).catch(() => {
|
|
10230
10364
|
});
|
|
10231
10365
|
if (stats) {
|
|
10232
10366
|
if (!ok) {
|
|
@@ -10264,12 +10398,12 @@ var init_advanceRevert = __esm({
|
|
|
10264
10398
|
AdvanceRevertManager = {
|
|
10265
10399
|
async takeInitialSnapshot(chatId) {
|
|
10266
10400
|
try {
|
|
10267
|
-
const snapshotsDir =
|
|
10268
|
-
await
|
|
10401
|
+
const snapshotsDir = path21.join(DATA_DIR, "snapshots", chatId);
|
|
10402
|
+
await fs22.remove(snapshotsDir).catch(() => {
|
|
10269
10403
|
});
|
|
10270
|
-
await
|
|
10404
|
+
await fs22.ensureDir(snapshotsDir);
|
|
10271
10405
|
const manifest = await scanWorkspace(process.cwd());
|
|
10272
|
-
await copyWorkspaceFiles(
|
|
10406
|
+
await copyWorkspaceFiles(path21.join(snapshotsDir, "initial"), manifest);
|
|
10273
10407
|
const ledger = readEncryptedJson(LEDGER_ADVANCE_FILE, {});
|
|
10274
10408
|
ledger[chatId] = {
|
|
10275
10409
|
initialManifest: manifest,
|
|
@@ -10318,7 +10452,7 @@ var init_advanceRevert = __esm({
|
|
|
10318
10452
|
for (const file of changedFiles) {
|
|
10319
10453
|
deltaManifest[file] = currentManifest[file];
|
|
10320
10454
|
}
|
|
10321
|
-
const turnDir =
|
|
10455
|
+
const turnDir = path21.join(DATA_DIR, "snapshots", chatId, `turn_${turnNumber}`);
|
|
10322
10456
|
await copyWorkspaceFiles(turnDir, deltaManifest);
|
|
10323
10457
|
}
|
|
10324
10458
|
session.checkpoints.push({
|
|
@@ -10352,28 +10486,28 @@ var init_advanceRevert = __esm({
|
|
|
10352
10486
|
const checkpoints = session.checkpoints || [];
|
|
10353
10487
|
const targetIdx = checkpoints.findIndex((c) => c.id === checkpointId);
|
|
10354
10488
|
if (targetIdx === -1) throw new Error(`Checkpoint [${checkpointId}] not found.`);
|
|
10355
|
-
const snapshotsDir =
|
|
10489
|
+
const snapshotsDir = path21.join(DATA_DIR, "snapshots", chatId);
|
|
10356
10490
|
const stats = { restored: 0, replaced: 0, failed: [] };
|
|
10357
10491
|
const currentFiles = await scanWorkspace(process.cwd());
|
|
10358
10492
|
for (const relPath of Object.keys(currentFiles)) {
|
|
10359
|
-
const fullPath =
|
|
10360
|
-
await
|
|
10493
|
+
const fullPath = path21.join(process.cwd(), relPath);
|
|
10494
|
+
await fs22.chmod(fullPath, 438).catch(() => {
|
|
10361
10495
|
});
|
|
10362
|
-
await
|
|
10496
|
+
await fs22.remove(fullPath).catch(() => {
|
|
10363
10497
|
});
|
|
10364
10498
|
}
|
|
10365
|
-
const initialDir =
|
|
10499
|
+
const initialDir = path21.join(snapshotsDir, "initial");
|
|
10366
10500
|
await restoreSnapshotDir(initialDir, process.cwd(), stats, initialDir);
|
|
10367
10501
|
for (let i = 1; i <= targetIdx; i++) {
|
|
10368
10502
|
const cp = checkpoints[i];
|
|
10369
|
-
const turnDir =
|
|
10503
|
+
const turnDir = path21.join(snapshotsDir, cp.id);
|
|
10370
10504
|
await restoreSnapshotDir(turnDir, process.cwd(), stats, turnDir);
|
|
10371
10505
|
if (cp.deletedFiles && cp.deletedFiles.length > 0) {
|
|
10372
10506
|
for (const delFile of cp.deletedFiles) {
|
|
10373
|
-
const fullPath =
|
|
10374
|
-
await
|
|
10507
|
+
const fullPath = path21.join(process.cwd(), delFile);
|
|
10508
|
+
await fs22.chmod(fullPath, 438).catch(() => {
|
|
10375
10509
|
});
|
|
10376
|
-
await
|
|
10510
|
+
await fs22.remove(fullPath).catch(() => {
|
|
10377
10511
|
});
|
|
10378
10512
|
}
|
|
10379
10513
|
}
|
|
@@ -10388,8 +10522,8 @@ var init_advanceRevert = __esm({
|
|
|
10388
10522
|
},
|
|
10389
10523
|
async cleanup(chatId) {
|
|
10390
10524
|
try {
|
|
10391
|
-
const snapshotsDir =
|
|
10392
|
-
await
|
|
10525
|
+
const snapshotsDir = path21.join(DATA_DIR, "snapshots", chatId);
|
|
10526
|
+
await fs22.remove(snapshotsDir).catch(() => {
|
|
10393
10527
|
});
|
|
10394
10528
|
const ledger = readEncryptedJson(LEDGER_ADVANCE_FILE, {});
|
|
10395
10529
|
if (ledger[chatId]) {
|
|
@@ -10743,9 +10877,9 @@ __export(ai_exports, {
|
|
|
10743
10877
|
signalTermination: () => signalTermination
|
|
10744
10878
|
});
|
|
10745
10879
|
import { GoogleGenAI, ThinkingLevel, HarmBlockThreshold, HarmCategory } from "@google/genai";
|
|
10746
|
-
import
|
|
10747
|
-
import
|
|
10748
|
-
var client, globalSettings, colorMainWords, withRetry, TERMINATION_SIGNAL,
|
|
10880
|
+
import path22, { normalize } from "path";
|
|
10881
|
+
import fs23 from "fs";
|
|
10882
|
+
var client, globalSettings, colorMainWords, withRetry, TERMINATION_SIGNAL, getCleanGroupedLength, stripAnsi2, fetchWithBackoff, getDeepSeekStream, getNVIDIAStream, wrapNvidiaStreamWithQueueDepth, getOpenRouterStream, signalTermination, isTerminationSignaled, TOOL_LABELS2, getToolDetail, runJanitorTask, getActiveToolContext, getContextSafeText, contextSafeReplace, getSanitizedText, translateKimiToolCalls, detectToolCalls, initAI, generateSimpleContent, consolidatePastMemories, compressHistory, deleteChatSummary, getAIStream, runSubagent;
|
|
10749
10883
|
var init_ai = __esm({
|
|
10750
10884
|
async "src/utils/ai.js"() {
|
|
10751
10885
|
await init_prompts();
|
|
@@ -10759,6 +10893,7 @@ var init_ai = __esm({
|
|
|
10759
10893
|
init_text();
|
|
10760
10894
|
init_settings();
|
|
10761
10895
|
init_subagent_state();
|
|
10896
|
+
init_model_config();
|
|
10762
10897
|
init_paths();
|
|
10763
10898
|
init_revert();
|
|
10764
10899
|
init_advanceRevert();
|
|
@@ -10801,35 +10936,6 @@ var init_ai = __esm({
|
|
|
10801
10936
|
}
|
|
10802
10937
|
};
|
|
10803
10938
|
TERMINATION_SIGNAL = false;
|
|
10804
|
-
MULTIMODAL_MODELS = [
|
|
10805
|
-
// OpenRouter models
|
|
10806
|
-
"google/gemma-4-31b-it:free",
|
|
10807
|
-
"moonshotai/kimi-k2.6:free",
|
|
10808
|
-
"google/gemini-3.5-flash",
|
|
10809
|
-
"qwen/qwen3.7-plus",
|
|
10810
|
-
"minimax/minimax-m3",
|
|
10811
|
-
"anthropic/claude-sonnet-4.5",
|
|
10812
|
-
"anthropic/claude-opus-4.6",
|
|
10813
|
-
"anthropic/claude-opus-4.8",
|
|
10814
|
-
"openai/gpt-5.2-codex",
|
|
10815
|
-
"openai/gpt-5.2-pro",
|
|
10816
|
-
"openai/gpt-5.5-pro",
|
|
10817
|
-
"moonshotai/kimi-k2.6",
|
|
10818
|
-
// NVIDIA vision models
|
|
10819
|
-
"moonshotai/kimi-k2.7",
|
|
10820
|
-
"stepfun-ai/step-3.7-flash",
|
|
10821
|
-
"google/gemma-4-31b-it",
|
|
10822
|
-
"mistralai/mistral-medium-3.5-128b",
|
|
10823
|
-
"qwen/qwen3.5-397b-a17b"
|
|
10824
|
-
// Google models
|
|
10825
|
-
// No need. All models on Gemini API is Multimodal
|
|
10826
|
-
];
|
|
10827
|
-
isModelMultimodal = (model) => {
|
|
10828
|
-
if (!model) return false;
|
|
10829
|
-
const lower = model.toLowerCase();
|
|
10830
|
-
if (lower.startsWith("gemini-") || lower.startsWith("gemma-")) return true;
|
|
10831
|
-
return MULTIMODAL_MODELS.some((m) => m.toLowerCase() === lower);
|
|
10832
|
-
};
|
|
10833
10939
|
getCleanGroupedLength = (rawHistory) => {
|
|
10834
10940
|
const preprocessed = rawHistory.filter(
|
|
10835
10941
|
(m) => (m.role === "user" || m.role === "agent" || m.role === "system") && m.role !== "think" && !m.isVisualFeedback && !m.isMeta && !String(m.id).startsWith("welcome")
|
|
@@ -11139,6 +11245,7 @@ var init_ai = __esm({
|
|
|
11139
11245
|
const isGPT = model.includes("gpt");
|
|
11140
11246
|
const isQwen = model.includes("qwen");
|
|
11141
11247
|
const isNemotron = model.includes("nemotron");
|
|
11248
|
+
const isLlama3 = model.includes("llama-3");
|
|
11142
11249
|
const GPT_THINKING_LEVELS = {
|
|
11143
11250
|
"Fast": "low",
|
|
11144
11251
|
"Low": "low",
|
|
@@ -11157,7 +11264,8 @@ var init_ai = __esm({
|
|
|
11157
11264
|
temperature,
|
|
11158
11265
|
...isGPT && { thinking: GPT_THINKING_LEVELS[thinkingLevel] || "high" }
|
|
11159
11266
|
};
|
|
11160
|
-
if (
|
|
11267
|
+
if (isLlama3) {
|
|
11268
|
+
} else if (isKimi) {
|
|
11161
11269
|
body.chat_template_kwargs = { thinking: isThinking };
|
|
11162
11270
|
} else if (isGemma) {
|
|
11163
11271
|
body.chat_template_kwargs = { enable_thinking: isThinking };
|
|
@@ -11301,7 +11409,8 @@ var init_ai = __esm({
|
|
|
11301
11409
|
resolve();
|
|
11302
11410
|
}
|
|
11303
11411
|
};
|
|
11304
|
-
|
|
11412
|
+
let cleanModelId = modelName.split("/").pop();
|
|
11413
|
+
cleanModelId = cleanModelId.replace("llama-3.3", "llama-3_3");
|
|
11305
11414
|
const pollUrl = `https://api.ngc.nvidia.com/v2/predict/queues/models/qc69jvmznzxy/${cleanModelId}`;
|
|
11306
11415
|
let isStreamingStarted = false;
|
|
11307
11416
|
let pollInterval = null;
|
|
@@ -11561,7 +11670,7 @@ var init_ai = __esm({
|
|
|
11561
11670
|
return pArgs.id || pArgs.taskId;
|
|
11562
11671
|
}
|
|
11563
11672
|
const filePath = pArgs.path || pArgs.targetFile || pArgs.TargetFile || pArgs.directory;
|
|
11564
|
-
return filePath ?
|
|
11673
|
+
return filePath ? path22.basename(filePath.replace(/["']/g, "").replace(/\\/g, "/")) : null;
|
|
11565
11674
|
} catch (e) {
|
|
11566
11675
|
return null;
|
|
11567
11676
|
}
|
|
@@ -11633,7 +11742,7 @@ ${originalTextProcessed.length > USER_CONTEXT_LENGTH ? "... (truncated) ...\n\n"
|
|
|
11633
11742
|
);
|
|
11634
11743
|
const streamPromise = (async () => {
|
|
11635
11744
|
if (aiProvider === "OpenRouter") {
|
|
11636
|
-
const janitorOpenRouterModel = "
|
|
11745
|
+
const janitorOpenRouterModel = getFallbackValue("janitor_open_router");
|
|
11637
11746
|
const stream = getOpenRouterStream(
|
|
11638
11747
|
apiKey,
|
|
11639
11748
|
janitorOpenRouterModel,
|
|
@@ -11652,7 +11761,7 @@ ${originalTextProcessed.length > USER_CONTEXT_LENGTH ? "... (truncated) ...\n\n"
|
|
|
11652
11761
|
} else if (aiProvider === "DeepSeek") {
|
|
11653
11762
|
const stream = getDeepSeekStream(
|
|
11654
11763
|
apiKey,
|
|
11655
|
-
"
|
|
11764
|
+
getFallbackValue("deepseek_fast_fallback"),
|
|
11656
11765
|
janitorContents,
|
|
11657
11766
|
janitorPrompt,
|
|
11658
11767
|
"Fast",
|
|
@@ -11668,7 +11777,7 @@ ${originalTextProcessed.length > USER_CONTEXT_LENGTH ? "... (truncated) ...\n\n"
|
|
|
11668
11777
|
} else if (aiProvider === "NVIDIA") {
|
|
11669
11778
|
const stream = getNVIDIAStream(
|
|
11670
11779
|
apiKey,
|
|
11671
|
-
"
|
|
11780
|
+
getFallbackValue("nvidia_janitor_fallback"),
|
|
11672
11781
|
janitorContents,
|
|
11673
11782
|
janitorPrompt,
|
|
11674
11783
|
"Fast",
|
|
@@ -11683,7 +11792,7 @@ ${originalTextProcessed.length > USER_CONTEXT_LENGTH ? "... (truncated) ...\n\n"
|
|
|
11683
11792
|
return { iterator: iterator2, firstResult: firstResult2 };
|
|
11684
11793
|
} else {
|
|
11685
11794
|
const stream = await client.models.generateContentStream({
|
|
11686
|
-
model: janitorModel || (attempts === MAX_JANITOR_RETRIES ? "
|
|
11795
|
+
model: janitorModel || (attempts === MAX_JANITOR_RETRIES ? getFallbackValue("janitor_default") : getFallbackValue("gemma_janitor_fallback_google")),
|
|
11687
11796
|
contents: janitorContents,
|
|
11688
11797
|
config: {
|
|
11689
11798
|
systemInstruction: janitorPrompt,
|
|
@@ -11729,7 +11838,7 @@ ${originalTextProcessed.length > USER_CONTEXT_LENGTH ? "... (truncated) ...\n\n"
|
|
|
11729
11838
|
const total = lastUsage.totalTokenCount || 0;
|
|
11730
11839
|
const cached = lastUsage.cachedContentTokenCount || 0;
|
|
11731
11840
|
const candidates = (lastUsage.candidatesTokenCount || 0) + (lastUsage.thoughtsTokenCount || 0);
|
|
11732
|
-
const jModel = janitorModel || "
|
|
11841
|
+
const jModel = janitorModel || getFallbackValue("janitor_default");
|
|
11733
11842
|
await addToUsage("tokens", total, aiProvider, jModel);
|
|
11734
11843
|
if (cached > 0) {
|
|
11735
11844
|
await addToUsage("cachedTokens", cached, aiProvider, jModel);
|
|
@@ -11802,9 +11911,9 @@ ${originalTextProcessed.length > USER_CONTEXT_LENGTH ? "... (truncated) ...\n\n"
|
|
|
11802
11911
|
}
|
|
11803
11912
|
})() : String(err);
|
|
11804
11913
|
await new Promise((resolve) => setTimeout(resolve, 1e3));
|
|
11805
|
-
const janitorErrDir =
|
|
11806
|
-
if (!
|
|
11807
|
-
|
|
11914
|
+
const janitorErrDir = path22.join(LOGS_DIR, "janitor");
|
|
11915
|
+
if (!fs23.existsSync(janitorErrDir)) fs23.mkdirSync(janitorErrDir, { recursive: true });
|
|
11916
|
+
fs23.appendFileSync(path22.join(janitorErrDir, "error.log"), `ERROR [Attempt ${attempts}/${MAX_JANITOR_RETRIES + 1}] [${date}]: ${errLog}
|
|
11808
11917
|
|
|
11809
11918
|
`);
|
|
11810
11919
|
if (attempts > MAX_JANITOR_RETRIES) break;
|
|
@@ -11813,8 +11922,8 @@ ${originalTextProcessed.length > USER_CONTEXT_LENGTH ? "... (truncated) ...\n\n"
|
|
|
11813
11922
|
}
|
|
11814
11923
|
}
|
|
11815
11924
|
if (attempts) {
|
|
11816
|
-
const janitorErrDir =
|
|
11817
|
-
|
|
11925
|
+
const janitorErrDir = path22.join(LOGS_DIR, "janitor");
|
|
11926
|
+
fs23.appendFileSync(path22.join(janitorErrDir, "error.log"), `-----------------------------------------------------------------------------
|
|
11818
11927
|
|
|
11819
11928
|
`);
|
|
11820
11929
|
if (attempts >= MAX_JANITOR_RETRIES) {
|
|
@@ -12310,10 +12419,10 @@ ${newMemoryListStr}
|
|
|
12310
12419
|
let attempts = 0;
|
|
12311
12420
|
const maxAttempts = 5;
|
|
12312
12421
|
let success = false;
|
|
12313
|
-
let targetModel = "
|
|
12314
|
-
if (aiProvider === "OpenRouter") targetModel = "
|
|
12315
|
-
if (aiProvider === "DeepSeek") targetModel = "
|
|
12316
|
-
if (aiProvider === "NVIDIA") targetModel = "
|
|
12422
|
+
let targetModel = getFallbackValue("gemma_janitor_fallback_google");
|
|
12423
|
+
if (aiProvider === "OpenRouter") targetModel = getFallbackValue("janitor_open_router");
|
|
12424
|
+
if (aiProvider === "DeepSeek") targetModel = getFallbackValue("deepseek_level_1");
|
|
12425
|
+
if (aiProvider === "NVIDIA") targetModel = getFallbackValue("nvidia_janitor_fallback");
|
|
12317
12426
|
while (attempts <= maxAttempts && !success) {
|
|
12318
12427
|
attempts++;
|
|
12319
12428
|
try {
|
|
@@ -12345,10 +12454,10 @@ ${newMemoryListStr}
|
|
|
12345
12454
|
}
|
|
12346
12455
|
})() : String(err);
|
|
12347
12456
|
;
|
|
12348
|
-
const janitorLogDir =
|
|
12349
|
-
if (!
|
|
12350
|
-
|
|
12351
|
-
|
|
12457
|
+
const janitorLogDir = path22.join(LOGS_DIR, "janitor");
|
|
12458
|
+
if (!fs23.existsSync(janitorLogDir)) fs23.mkdirSync(janitorLogDir, { recursive: true });
|
|
12459
|
+
fs23.appendFileSync(
|
|
12460
|
+
path22.join(janitorLogDir, "error.log"),
|
|
12352
12461
|
`[${(/* @__PURE__ */ new Date()).toLocaleString()}] Past memory batch consolidation error: ${errLog}
|
|
12353
12462
|
`
|
|
12354
12463
|
);
|
|
@@ -12356,7 +12465,7 @@ ${newMemoryListStr}
|
|
|
12356
12465
|
};
|
|
12357
12466
|
compressHistory = async (settings, history, isAuto = false) => {
|
|
12358
12467
|
const { chatId, aiProvider = "Google" } = settings;
|
|
12359
|
-
const summariesFile =
|
|
12468
|
+
const summariesFile = path22.join(SECRET_DIR, "chat-summaries.json");
|
|
12360
12469
|
const flattenContext = (hist) => {
|
|
12361
12470
|
return hist.filter(
|
|
12362
12471
|
(m) => (m.role === "user" || m.role === "agent" || m.role === "system") && m.role !== "think" && !m.isVisualFeedback && !m.isMeta && !String(m.id).startsWith("welcome")
|
|
@@ -12377,10 +12486,10 @@ Provide a new consolidated summary of the entire session.` : `Here is the conver
|
|
|
12377
12486
|
${flattenedText2}
|
|
12378
12487
|
|
|
12379
12488
|
Provide a consolidated summary of the entire session.`;
|
|
12380
|
-
let targetModel = "
|
|
12381
|
-
if (aiProvider === "OpenRouter") targetModel = "
|
|
12382
|
-
if (aiProvider === "DeepSeek") targetModel = "
|
|
12383
|
-
if (aiProvider === "NVIDIA") targetModel = "
|
|
12489
|
+
let targetModel = getFallbackValue("gemma_janitor_fallback_google");
|
|
12490
|
+
if (aiProvider === "OpenRouter") targetModel = getFallbackValue("janitor_open_router");
|
|
12491
|
+
if (aiProvider === "DeepSeek") targetModel = getFallbackValue("deepseek_level_1");
|
|
12492
|
+
if (aiProvider === "NVIDIA") targetModel = getFallbackValue("nvidia_janitor_fallback");
|
|
12384
12493
|
let attempts = 0;
|
|
12385
12494
|
let success = false;
|
|
12386
12495
|
let response = null;
|
|
@@ -12393,7 +12502,7 @@ Provide a consolidated summary of the entire session.`;
|
|
|
12393
12502
|
if (attempts > 3) {
|
|
12394
12503
|
if (aiProvider === "Google") {
|
|
12395
12504
|
try {
|
|
12396
|
-
const fallbackModel = "
|
|
12505
|
+
const fallbackModel = getFallbackValue("general_fallback");
|
|
12397
12506
|
const fallback = await generateSimpleContent(settings, fallbackModel, prompt, systemInstruction, "Fast");
|
|
12398
12507
|
return fallback.text || "";
|
|
12399
12508
|
} catch (e) {
|
|
@@ -12430,8 +12539,8 @@ Provide a consolidated summary of the entire session.`;
|
|
|
12430
12539
|
};
|
|
12431
12540
|
deleteChatSummary = (chatId) => {
|
|
12432
12541
|
try {
|
|
12433
|
-
const summariesFile =
|
|
12434
|
-
if (
|
|
12542
|
+
const summariesFile = path22.join(SECRET_DIR, "chat-summaries.json");
|
|
12543
|
+
if (fs23.existsSync(summariesFile)) {
|
|
12435
12544
|
const summaries = readEncryptedJson(summariesFile, {});
|
|
12436
12545
|
if (summaries[chatId]) {
|
|
12437
12546
|
delete summaries[chatId];
|
|
@@ -12447,7 +12556,7 @@ Provide a consolidated summary of the entire session.`;
|
|
|
12447
12556
|
if (!client && aiProvider === "Google") throw new Error("AI not initialized");
|
|
12448
12557
|
const isMemoryEnabled = systemSettings?.memory !== false;
|
|
12449
12558
|
const originalText = history[history.length - 1].text;
|
|
12450
|
-
const summariesFile =
|
|
12559
|
+
const summariesFile = path22.join(SECRET_DIR, "chat-summaries.json");
|
|
12451
12560
|
let wasCompressedInStream = false;
|
|
12452
12561
|
const isFirstPrompt = history.filter((m) => m.role === "user").length === 1;
|
|
12453
12562
|
const hasTitleSignal = originalText.includes("[TITLE-UPDATE]");
|
|
@@ -12691,7 +12800,7 @@ Provide a consolidated summary of the entire session.`;
|
|
|
12691
12800
|
];
|
|
12692
12801
|
const safeReaddirWithTypes = (dir) => {
|
|
12693
12802
|
try {
|
|
12694
|
-
return
|
|
12803
|
+
return fs23.readdirSync(dir, { withFileTypes: true });
|
|
12695
12804
|
} catch (e) {
|
|
12696
12805
|
return [];
|
|
12697
12806
|
}
|
|
@@ -12704,16 +12813,16 @@ Provide a consolidated summary of the entire session.`;
|
|
|
12704
12813
|
if (COLLAPSED_DIRS_GLOBAL.includes(entry.name)) continue;
|
|
12705
12814
|
if (entry.isDirectory()) {
|
|
12706
12815
|
currentCount.value++;
|
|
12707
|
-
countFolders(
|
|
12816
|
+
countFolders(path22.join(dir, entry.name), currentCount, depth + 1);
|
|
12708
12817
|
}
|
|
12709
12818
|
}
|
|
12710
12819
|
return currentCount.value;
|
|
12711
12820
|
};
|
|
12712
12821
|
const getDirTree = (dir, maxDepth, prefix = "", depth = 1) => {
|
|
12713
12822
|
const entries = safeReaddirWithTypes(dir);
|
|
12714
|
-
const sep =
|
|
12823
|
+
const sep = path22.sep;
|
|
12715
12824
|
if (entries.length > 100) {
|
|
12716
|
-
return `${prefix}\u2514\u2500\u2500 ${
|
|
12825
|
+
return `${prefix}\u2514\u2500\u2500 ${path22.basename(dir)}${sep} ...100+ files...
|
|
12717
12826
|
`;
|
|
12718
12827
|
}
|
|
12719
12828
|
let result = "";
|
|
@@ -12731,7 +12840,7 @@ Provide a consolidated summary of the entire session.`;
|
|
|
12731
12840
|
];
|
|
12732
12841
|
finalItems.forEach((item, index) => {
|
|
12733
12842
|
const isLast = index === finalItems.length - 1;
|
|
12734
|
-
const filePath =
|
|
12843
|
+
const filePath = path22.join(dir, item.name);
|
|
12735
12844
|
const connector = isLast ? "\u2514\u2500\u2500 " : "\u251C\u2500\u2500 ";
|
|
12736
12845
|
const childPrefix = prefix + (isLast ? " " : "\u2502 ");
|
|
12737
12846
|
if (item.isCollapsed) {
|
|
@@ -12816,10 +12925,10 @@ ${currentSummary}
|
|
|
12816
12925
|
if (isBridgeConnected()) {
|
|
12817
12926
|
ideBlock = "[IDE CONTEXT]\n";
|
|
12818
12927
|
if (ideCtx.file_focused !== "none") {
|
|
12819
|
-
const relFocused =
|
|
12928
|
+
const relFocused = path22.relative(process.cwd(), ideCtx.file_focused);
|
|
12820
12929
|
const relOpened = (ideCtx.opened_editors || []).map((p) => {
|
|
12821
|
-
const rel =
|
|
12822
|
-
return rel.startsWith("..") ? `[External] ${
|
|
12930
|
+
const rel = path22.relative(process.cwd(), p);
|
|
12931
|
+
return rel.startsWith("..") ? `[External] ${path22.basename(p)}` : rel;
|
|
12823
12932
|
});
|
|
12824
12933
|
ideBlock += `Focused File: ${relFocused}
|
|
12825
12934
|
Cursor Line: ${ideCtx.cursor_line}
|
|
@@ -12861,7 +12970,7 @@ Cursor Line: ${ideCtx.cursor_line}
|
|
|
12861
12970
|
}
|
|
12862
12971
|
const getSumForLimit = (limit, activeFiles2) => {
|
|
12863
12972
|
return activeFiles2.reduce((sum, f) => {
|
|
12864
|
-
const isFocused = ideCtx.file_focused && (f.path === ideCtx.file_focused ||
|
|
12973
|
+
const isFocused = ideCtx.file_focused && (f.path === ideCtx.file_focused || path22.resolve(process.cwd(), f.path) === path22.resolve(ideCtx.file_focused));
|
|
12865
12974
|
const fileLimit = isFocused ? Math.ceil(limit * 1.2) : limit;
|
|
12866
12975
|
return sum + Math.min(f.edits.length, fileLimit);
|
|
12867
12976
|
}, 0);
|
|
@@ -12895,7 +13004,7 @@ Cursor Line: ${ideCtx.cursor_line}
|
|
|
12895
13004
|
}
|
|
12896
13005
|
}
|
|
12897
13006
|
for (const file of activeFiles) {
|
|
12898
|
-
const isFocused = ideCtx.file_focused && (file.path === ideCtx.file_focused ||
|
|
13007
|
+
const isFocused = ideCtx.file_focused && (file.path === ideCtx.file_focused || path22.resolve(process.cwd(), file.path) === path22.resolve(ideCtx.file_focused));
|
|
12899
13008
|
const fileLimit = isFocused ? Math.ceil(chosenLimit * 1.2) : chosenLimit;
|
|
12900
13009
|
if (file.edits.length > fileLimit) {
|
|
12901
13010
|
file.edits = file.edits.slice(-fileLimit);
|
|
@@ -12980,9 +13089,9 @@ ${ideCtx.warnings}
|
|
|
12980
13089
|
endLine = matchRange[2] ? parseInt(matchRange[2], 10) : startLine;
|
|
12981
13090
|
filePath = tagClean.slice(0, matchRange.index);
|
|
12982
13091
|
}
|
|
12983
|
-
const absPath =
|
|
12984
|
-
if (
|
|
12985
|
-
const stats =
|
|
13092
|
+
const absPath = path22.resolve(process.cwd(), filePath);
|
|
13093
|
+
if (fs23.existsSync(absPath)) {
|
|
13094
|
+
const stats = fs23.statSync(absPath);
|
|
12986
13095
|
if (stats.isFile()) {
|
|
12987
13096
|
const pathLower = filePath.toLowerCase();
|
|
12988
13097
|
const isPdf = pathLower.endsWith(".pdf");
|
|
@@ -12991,7 +13100,7 @@ ${ideCtx.warnings}
|
|
|
12991
13100
|
const isMultimodalFile = isImage || isPdf || isOfficeFile;
|
|
12992
13101
|
const isSupported = aiProvider === "Google" || MULTIMODAL_MODELS.includes(modelName);
|
|
12993
13102
|
if (isMultimodalFile && !isSupported) {
|
|
12994
|
-
const label = `\u2718 Unsupported Modality: ${
|
|
13103
|
+
const label = `\u2718 Unsupported Modality: ${path22.basename(filePath)}`;
|
|
12995
13104
|
let terminalWidth = 115;
|
|
12996
13105
|
if (process.stdout.isTTY) {
|
|
12997
13106
|
terminalWidth = process.stdout.columns - 5 || 120;
|
|
@@ -13042,7 +13151,7 @@ ${ideCtx.warnings}
|
|
|
13042
13151
|
} else {
|
|
13043
13152
|
let totalLines = "...";
|
|
13044
13153
|
try {
|
|
13045
|
-
const content =
|
|
13154
|
+
const content = fs23.readFileSync(absPath, "utf8");
|
|
13046
13155
|
totalLines = content.split("\n").length;
|
|
13047
13156
|
} catch (e) {
|
|
13048
13157
|
}
|
|
@@ -13158,6 +13267,7 @@ ${activeSummaryBlock}${thinkingLevel !== "Fast" && thinkingLevel !== "xHigh" &&
|
|
|
13158
13267
|
let accumulatedContext = "";
|
|
13159
13268
|
let dedupeBuffer = "";
|
|
13160
13269
|
let isDedupeActive = false;
|
|
13270
|
+
let detectedAnyToolCalls = false;
|
|
13161
13271
|
let targetModel = modelName;
|
|
13162
13272
|
let currentSystemInstruction = "";
|
|
13163
13273
|
while (retryCount <= MAX_RETRIES && inStreamRetryCount <= MAX_RETRIES && !success && !TERMINATION_SIGNAL) {
|
|
@@ -13245,21 +13355,6 @@ ${activeSummaryBlock}${thinkingLevel !== "Fast" && thinkingLevel !== "xHigh" &&
|
|
|
13245
13355
|
throw new Error("Error: Quota Exausted for Agent");
|
|
13246
13356
|
}
|
|
13247
13357
|
targetModel = modelName;
|
|
13248
|
-
if (aiProvider === "DeepSeek" && thinkingLevel === "Fast" && targetModel.includes("flash")) {
|
|
13249
|
-
targetModel = "deepseek-chat";
|
|
13250
|
-
}
|
|
13251
|
-
if (retryCount === MAX_RETRIES - 1) {
|
|
13252
|
-
targetModel = aiProvider === "DeepSeek" ? "deepseek-v4-flash" : "gemini-3-flash-preview";
|
|
13253
|
-
yield { type: "model_update", content: "Trying with fallback model" };
|
|
13254
|
-
} else if (retryCount === MAX_RETRIES) {
|
|
13255
|
-
targetModel = aiProvider === "DeepSeek" ? "deepseek-v4-pro" : "gemini-3.5-flash";
|
|
13256
|
-
yield { type: "model_update", content: "Trying with fallback model" };
|
|
13257
|
-
} else if (retryCount > 12 && retryCount < MAX_RETRIES - 2 && settings.apiKey !== "custom") {
|
|
13258
|
-
targetModel = "gemma-4-31b-it";
|
|
13259
|
-
yield { type: "model_update", content: "Trying with fallback Gemma Model" };
|
|
13260
|
-
} else if (retryCount > 0) {
|
|
13261
|
-
yield { type: "model_update", content: null };
|
|
13262
|
-
}
|
|
13263
13358
|
currentSystemInstruction = getSystemInstruction(profile, !(targetModel || "gemma").toLowerCase().startsWith("gemma") ? thinkingLevel : thinkingLevel, mode, systemSettings, isMemoryEnabled, isFirstPrompt, aiProvider, aiProvider === "Google" ? true : isMultiModal, !(targetModel || "gemma").toLowerCase().startsWith("gemma") ? true : false);
|
|
13264
13359
|
const lastUserMsg = contents[contents.length - 1];
|
|
13265
13360
|
if (isBridgeConnected() & loop > 0) {
|
|
@@ -13649,6 +13744,7 @@ ${ideErr} [/ERROR]`;
|
|
|
13649
13744
|
}
|
|
13650
13745
|
const toolContext = getActiveToolContext(turnText);
|
|
13651
13746
|
if (toolContext.inside) {
|
|
13747
|
+
detectedAnyToolCalls = true;
|
|
13652
13748
|
if (!lastToolEventTime) lastToolEventTime = Date.now();
|
|
13653
13749
|
const NORMALIZE_MAP = {
|
|
13654
13750
|
"Ask": "ask",
|
|
@@ -13692,7 +13788,7 @@ ${ideErr} [/ERROR]`;
|
|
|
13692
13788
|
if (keyword) {
|
|
13693
13789
|
detail = keyword.replace(/["']/g, "");
|
|
13694
13790
|
} else if (filePath) {
|
|
13695
|
-
detail =
|
|
13791
|
+
detail = path22.basename(filePath.replace(/["']/g, "").replace(/\\/g, "/"));
|
|
13696
13792
|
} else if (title && (potentialTool === "invoke" || potentialTool === "invoke_sync")) {
|
|
13697
13793
|
detail = title.replace(/["']/g, "").substring(0, 30);
|
|
13698
13794
|
} else if (id && potentialTool === "get_progress") {
|
|
@@ -13721,7 +13817,7 @@ ${ideErr} [/ERROR]`;
|
|
|
13721
13817
|
if (potentialTool === "invoke" || potentialTool === "invoke_sync" || potentialTool === "get_progress") {
|
|
13722
13818
|
detail = val.substring(0, 30);
|
|
13723
13819
|
} else {
|
|
13724
|
-
detail = potentialTool === "search_keyword" || potentialTool === "file_map" ? val :
|
|
13820
|
+
detail = potentialTool === "search_keyword" || potentialTool === "file_map" ? val : path22.basename(val.replace(/\\/g, "/"));
|
|
13725
13821
|
}
|
|
13726
13822
|
}
|
|
13727
13823
|
}
|
|
@@ -13923,9 +14019,9 @@ ${ideErr} [/ERROR]`;
|
|
|
13923
14019
|
let totalLines = "...";
|
|
13924
14020
|
let actualEndLine = eLine;
|
|
13925
14021
|
try {
|
|
13926
|
-
const absPath =
|
|
13927
|
-
if (
|
|
13928
|
-
const content =
|
|
14022
|
+
const absPath = path22.resolve(process.cwd(), targetPath2);
|
|
14023
|
+
if (fs23.existsSync(absPath)) {
|
|
14024
|
+
const content = fs23.readFileSync(absPath, "utf8");
|
|
13929
14025
|
const lines = content.split("\n").length;
|
|
13930
14026
|
totalLines = lines;
|
|
13931
14027
|
actualEndLine = Math.min(eLine, lines);
|
|
@@ -13945,8 +14041,8 @@ ${ideErr} [/ERROR]`;
|
|
|
13945
14041
|
}
|
|
13946
14042
|
} else if (normToolName === "list_files" || normToolName === "read_folder") {
|
|
13947
14043
|
const action = normToolName === "list_files" ? "List" : "Browsed";
|
|
13948
|
-
const
|
|
13949
|
-
label = `\u2714 ${action}: ${
|
|
14044
|
+
const path24 = parseArgs(toolCall.args).path;
|
|
14045
|
+
label = `\u2714 ${action}: ${path24 === "." ? "./" : path24}`;
|
|
13950
14046
|
} else if (normToolName === "write_file" || normToolName === "update_file") {
|
|
13951
14047
|
const action = normToolName === "write_file" ? "Created" : "Edited";
|
|
13952
14048
|
label = `\u2714 ${action}: ${parseArgs(toolCall.args).path || "..."}`;
|
|
@@ -14032,7 +14128,7 @@ ${ideErr} [/ERROR]`;
|
|
|
14032
14128
|
const { command } = parseArgs(toolCall.args);
|
|
14033
14129
|
if (command && settings.systemSettings && settings.systemSettings.allowExternalAccess === false) {
|
|
14034
14130
|
const riskyPatterns = [/[a-zA-Z]:[\\\/]/i, /^\//, /\.\.[\\\/]/, /\/etc\//, /\/var\//, /\/root\//, /\/bin\//, /\/usr\//];
|
|
14035
|
-
const currentDrive =
|
|
14131
|
+
const currentDrive = path22.resolve(process.cwd()).substring(0, 3).toLowerCase();
|
|
14036
14132
|
const splitCommands = (cmdString) => {
|
|
14037
14133
|
const commands = [];
|
|
14038
14134
|
let current = "";
|
|
@@ -14161,8 +14257,8 @@ ${ideErr} [/ERROR]`;
|
|
|
14161
14257
|
const targetPath = parsedArgs.path || parsedArgs.targetPath || null;
|
|
14162
14258
|
if (targetPath) {
|
|
14163
14259
|
const isExternalOff = settings.systemSettings && settings.systemSettings.allowExternalAccess === false;
|
|
14164
|
-
const absoluteTarget =
|
|
14165
|
-
const absoluteCwd =
|
|
14260
|
+
const absoluteTarget = path22.resolve(targetPath);
|
|
14261
|
+
const absoluteCwd = path22.resolve(process.cwd());
|
|
14166
14262
|
if (isExternalOff && !absoluteTarget.startsWith(absoluteCwd)) {
|
|
14167
14263
|
const denyMsg = `Access Denied. You are not allowed to access files outside the current workspace.`;
|
|
14168
14264
|
if (normToolName === "write_file" || normToolName === "update_file") {
|
|
@@ -14351,7 +14447,7 @@ ${boxMid}`) };
|
|
|
14351
14447
|
const toolArgs = parseArgs(toolCall.args);
|
|
14352
14448
|
const { path: filePath } = toolArgs;
|
|
14353
14449
|
if (filePath) {
|
|
14354
|
-
const absPath =
|
|
14450
|
+
const absPath = path22.resolve(process.cwd(), filePath);
|
|
14355
14451
|
const normalize2 = (p) => p ? p.toLowerCase().replace(/\\/g, "/").replace(/^[a-z]:/, (m) => m.toUpperCase()) : "";
|
|
14356
14452
|
const normAbsPath = normalize2(absPath);
|
|
14357
14453
|
let originalContent = "";
|
|
@@ -14361,8 +14457,8 @@ ${boxMid}`) };
|
|
|
14361
14457
|
if (currentIDE && normFocused === normAbsPath && currentIDE.full_content) {
|
|
14362
14458
|
originalContent = currentIDE.full_content;
|
|
14363
14459
|
hasOriginal = true;
|
|
14364
|
-
} else if (
|
|
14365
|
-
originalContent =
|
|
14460
|
+
} else if (fs23.existsSync(absPath)) {
|
|
14461
|
+
originalContent = fs23.readFileSync(absPath, "utf8");
|
|
14366
14462
|
hasOriginal = true;
|
|
14367
14463
|
}
|
|
14368
14464
|
originalContentForReporting = originalContent;
|
|
@@ -14389,9 +14485,9 @@ ${boxMid}`) };
|
|
|
14389
14485
|
const successes = patchResults.filter((r) => r.success);
|
|
14390
14486
|
const failures = patchResults.filter((r) => !r.success);
|
|
14391
14487
|
if (successes.length === 0) {
|
|
14392
|
-
const errorMsg = `[TOOL RESULT]: ERROR: Failed to apply patches to [${
|
|
14488
|
+
const errorMsg = `[TOOL RESULT]: ERROR: Failed to apply patches to [${path22.basename(absPath)}].
|
|
14393
14489
|
${failures.map((f) => ` \u2022 ${f.error}`).join("\n")}`;
|
|
14394
|
-
const errorLabel = `\u2714 Edited: ${
|
|
14490
|
+
const errorLabel = `\u2714 Edited: ${path22.basename(absPath)}`.toUpperCase();
|
|
14395
14491
|
let terminalWidth = 115;
|
|
14396
14492
|
if (process.stdout.isTTY) {
|
|
14397
14493
|
terminalWidth = process.stdout.columns - 5 || 120;
|
|
@@ -14409,19 +14505,19 @@ ${boxMid}}`) };
|
|
|
14409
14505
|
continue;
|
|
14410
14506
|
}
|
|
14411
14507
|
}
|
|
14412
|
-
yield { type: "status", content: `Opening Diff in IDE: ${
|
|
14508
|
+
yield { type: "status", content: `Opening Diff in IDE: ${path22.basename(absPath)}` };
|
|
14413
14509
|
showDiffInIDE(absPath, originalContent, modifiedContent);
|
|
14414
14510
|
diffOpened = true;
|
|
14415
14511
|
await new Promise((r) => setTimeout(r, 50));
|
|
14416
14512
|
} else if (normToolName === "write_file") {
|
|
14417
14513
|
const rawContent = toolArgs.content || toolArgs.newContent || "";
|
|
14418
14514
|
const modifiedContent = rawContent.endsWith("\n") ? rawContent : rawContent + "\n";
|
|
14419
|
-
if (!
|
|
14515
|
+
if (!fs23.existsSync(absPath)) {
|
|
14420
14516
|
isNewFileCreated = true;
|
|
14421
|
-
|
|
14422
|
-
|
|
14517
|
+
fs23.mkdirSync(path22.dirname(absPath), { recursive: true });
|
|
14518
|
+
fs23.writeFileSync(absPath, "", "utf8");
|
|
14423
14519
|
}
|
|
14424
|
-
yield { type: "status", content: `Opening New File Diff in IDE: ${
|
|
14520
|
+
yield { type: "status", content: `Opening New File Diff in IDE: ${path22.basename(absPath)}` };
|
|
14425
14521
|
showDiffInIDE(absPath, "", modifiedContent);
|
|
14426
14522
|
diffOpened = true;
|
|
14427
14523
|
await new Promise((r) => setTimeout(r, 50));
|
|
@@ -14457,11 +14553,11 @@ ${boxMid}}`) };
|
|
|
14457
14553
|
if (normToolName === "write_file" || normToolName === "update_file") {
|
|
14458
14554
|
const { path: filePath } = parseArgs(toolCall.args);
|
|
14459
14555
|
if (filePath) {
|
|
14460
|
-
const absPath =
|
|
14556
|
+
const absPath = path22.resolve(process.cwd(), filePath);
|
|
14461
14557
|
closeDiffInIDE(absPath, approval);
|
|
14462
|
-
if (approval === "deny" && isNewFileCreated &&
|
|
14558
|
+
if (approval === "deny" && isNewFileCreated && fs23.existsSync(absPath)) {
|
|
14463
14559
|
try {
|
|
14464
|
-
|
|
14560
|
+
fs23.unlinkSync(absPath);
|
|
14465
14561
|
} catch (e) {
|
|
14466
14562
|
}
|
|
14467
14563
|
}
|
|
@@ -14473,13 +14569,13 @@ ${boxMid}}`) };
|
|
|
14473
14569
|
}
|
|
14474
14570
|
if (approval === "allow" && diffOpened && isBridgeConnected()) {
|
|
14475
14571
|
const { path: filePath } = parseArgs(toolCall.args);
|
|
14476
|
-
const absPath =
|
|
14572
|
+
const absPath = path22.resolve(process.cwd(), filePath);
|
|
14477
14573
|
const finalIDE = await getIDEContext();
|
|
14478
14574
|
let finalContent = "";
|
|
14479
14575
|
if (finalIDE && finalIDE.file_focused === absPath && finalIDE.full_content) {
|
|
14480
14576
|
finalContent = finalIDE.full_content;
|
|
14481
|
-
} else if (
|
|
14482
|
-
finalContent =
|
|
14577
|
+
} else if (fs23.existsSync(absPath)) {
|
|
14578
|
+
finalContent = fs23.readFileSync(absPath, "utf8");
|
|
14483
14579
|
}
|
|
14484
14580
|
const verifiedLines = finalContent.split(/\r?\n/);
|
|
14485
14581
|
const verifiedLineCount = verifiedLines.length;
|
|
@@ -14647,7 +14743,7 @@ ${boxMid}`) };
|
|
|
14647
14743
|
try {
|
|
14648
14744
|
const { path: filePath } = parseArgs(toolCall.args);
|
|
14649
14745
|
if (filePath) {
|
|
14650
|
-
const absPath =
|
|
14746
|
+
const absPath = path22.resolve(process.cwd(), filePath);
|
|
14651
14747
|
const currentIDE = await getIDEContext();
|
|
14652
14748
|
if (currentIDE && currentIDE.file_focused === absPath && currentIDE.full_content) {
|
|
14653
14749
|
execToolContext.forcedContent = currentIDE.full_content;
|
|
@@ -14662,7 +14758,7 @@ ${boxMid}`) };
|
|
|
14662
14758
|
if ((normToolName === "write_file" || normToolName === "update_file") && result.startsWith("SUCCESS")) {
|
|
14663
14759
|
const { path: filePath } = parseArgs(toolCall.args);
|
|
14664
14760
|
if (filePath) {
|
|
14665
|
-
const absPath =
|
|
14761
|
+
const absPath = path22.resolve(process.cwd(), filePath);
|
|
14666
14762
|
openFileInEditor(absPath);
|
|
14667
14763
|
}
|
|
14668
14764
|
}
|
|
@@ -14925,9 +15021,9 @@ ${boxMid}`) };
|
|
|
14925
15021
|
})() : String(err);
|
|
14926
15022
|
;
|
|
14927
15023
|
const date = (/* @__PURE__ */ new Date()).toLocaleString();
|
|
14928
|
-
const agentErrDir =
|
|
14929
|
-
if (!
|
|
14930
|
-
|
|
15024
|
+
const agentErrDir = path22.join(LOGS_DIR, "agent");
|
|
15025
|
+
if (!fs23.existsSync(agentErrDir)) fs23.mkdirSync(agentErrDir, { recursive: true });
|
|
15026
|
+
fs23.appendFileSync(path22.join(agentErrDir, "error.log"), `ERROR [${date}]: ${errLog}
|
|
14931
15027
|
|
|
14932
15028
|
----------------------------------------------------------------------
|
|
14933
15029
|
|
|
@@ -14974,7 +15070,7 @@ ${recoveryText}`
|
|
|
14974
15070
|
yield { type: "status", content: `Error Occured. Recovering Stream...` };
|
|
14975
15071
|
} else {
|
|
14976
15072
|
throw new Error(`Stream collapsed too many times. (Failed to resolve ${MAX_RETRIES} times)
|
|
14977
|
-
Error Log can be found in ${
|
|
15073
|
+
Error Log can be found in ${path22.join(LOGS_DIR, "agent", "error.log")}`);
|
|
14978
15074
|
}
|
|
14979
15075
|
} else {
|
|
14980
15076
|
if (retryCount <= MAX_RETRIES) {
|
|
@@ -14992,7 +15088,7 @@ Error Log can be found in ${path21.join(LOGS_DIR, "agent", "error.log")}`);
|
|
|
14992
15088
|
yield { type: "status", content: `Trying to reach ${modelName}` };
|
|
14993
15089
|
} else {
|
|
14994
15090
|
throw new Error(`Model ${modelName} cannot be reached. (Failed ${MAX_RETRIES} times)
|
|
14995
|
-
Error Log can be found in ${
|
|
15091
|
+
Error Log can be found in ${path22.join(LOGS_DIR, "agent", "error.log")}`);
|
|
14996
15092
|
}
|
|
14997
15093
|
}
|
|
14998
15094
|
}
|
|
@@ -15024,6 +15120,7 @@ Error Log can be found in ${path21.join(LOGS_DIR, "agent", "error.log")}`);
|
|
|
15024
15120
|
const cleanedTurnText = contextSafeReplace(turnText, /(\[\s*(turn\s*:)?\s*(continue|finish)\s*\]|\[\[END\]\])/gi, "").trim();
|
|
15025
15121
|
let isActuallyFinished = (hasFinish || toolResults.length === 0) && !isThinkingLoop && !isStutteringLoop && !isGeneralLoop;
|
|
15026
15122
|
isActuallyFinished = toolResults.length === 0 ? isActuallyFinished : false;
|
|
15123
|
+
isActuallyFinished = detectedAnyToolCalls || wasToolCalledInLastLoop ? false : isActuallyFinished;
|
|
15027
15124
|
if (turnText && turnText.trim().endsWith('")]') && toolResults.length === 0) {
|
|
15028
15125
|
isActuallyFinished = false;
|
|
15029
15126
|
}
|
|
@@ -15051,13 +15148,20 @@ Error Log can be found in ${path21.join(LOGS_DIR, "agent", "error.log")}`);
|
|
|
15051
15148
|
modifiedHistory.push({ role: "agent", text: nextAgentMsg });
|
|
15052
15149
|
if (toolResults.length > 0 || anyToolExecutedInThisTurn) {
|
|
15053
15150
|
if (toolResults.length > 0) {
|
|
15054
|
-
|
|
15151
|
+
let combinedText = toolResults.map((tr) => tr.text).join("\n\n");
|
|
15152
|
+
const toolActionableText = turnText.replace(/(?:<(think|thought|thoughts)>|\[(think|thought|thoughts)\])[\s\S]*?(?:<\/(think|thought|thoughts)>|\[\/(think|thought|thoughts)\]|$)/gi, "");
|
|
15153
|
+
const attemptedToolsCount = (toolActionableText.match(/\[tool:functions/g) || []).length;
|
|
15154
|
+
if (toolResults.length < attemptedToolsCount) {
|
|
15155
|
+
combinedText += `
|
|
15156
|
+
|
|
15157
|
+
[SYSTEM] Only ${toolResults.length} out of ${attemptedToolsCount} attempted tool calls were executed. Verify proper syntax compliance & try failed calls again [/SYSTEM]`;
|
|
15158
|
+
}
|
|
15055
15159
|
const binaryPart = toolResults.find((tr) => tr.binaryPart)?.binaryPart || null;
|
|
15056
15160
|
modifiedHistory.push({ role: "user", text: combinedText, binaryPart });
|
|
15057
15161
|
}
|
|
15058
15162
|
} else {
|
|
15059
|
-
if (wasToolCalledInLastLoop) {
|
|
15060
|
-
modifiedHistory.push({ role: "user", text: `[SYSTEM] Failed to
|
|
15163
|
+
if (wasToolCalledInLastLoop || detectedAnyToolCalls) {
|
|
15164
|
+
modifiedHistory.push({ role: "user", text: `[SYSTEM] Failed to execute some tools. Verify proper syntax compliance & try again [/SYSTEM]` });
|
|
15061
15165
|
} else {
|
|
15062
15166
|
modifiedHistory.push({ role: "user", text: `[SYSTEM] ${isStutteringLoop && !isThinkingLoop ? `STUTTERING DETECTED by Internal System. Re-calibrate your response & proceed.` : `${isThinkingLoop ? " OVER THINKING" : " LOOP"} DETECTED by Internal System${isThinkingLoop ? " for current EFFORT_LEVEL" : ""}. ${isThinkingLoop ? "If you have planned the task, prioritize execution/output" : "If you have finished your task use [[END]]"}`} [/SYSTEM]` });
|
|
15063
15167
|
}
|
|
@@ -15098,10 +15202,10 @@ Error Log can be found in ${path21.join(LOGS_DIR, "agent", "error.log")}`);
|
|
|
15098
15202
|
}
|
|
15099
15203
|
})() : String(err);
|
|
15100
15204
|
const date = (/* @__PURE__ */ new Date()).toLocaleString();
|
|
15101
|
-
const agentErrDir =
|
|
15205
|
+
const agentErrDir = path22.join(LOGS_DIR, "agent");
|
|
15102
15206
|
yield { type: "text", content: `\u274C CRITICAL ERROR: ${errLog}` };
|
|
15103
|
-
if (!
|
|
15104
|
-
|
|
15207
|
+
if (!fs23.existsSync(agentErrDir)) fs23.mkdirSync(agentErrDir, { recursive: true });
|
|
15208
|
+
fs23.appendFileSync(path22.join(agentErrDir, "error.log"), `CRITICAL ERROR [${date}]: ${err}
|
|
15105
15209
|
|
|
15106
15210
|
----------------------------------------------------------------------
|
|
15107
15211
|
|
|
@@ -15243,20 +15347,20 @@ ${cleanResponse}
|
|
|
15243
15347
|
} else if (normalizedToolName === "web_scrape" || normalizedToolName === "webscrape") {
|
|
15244
15348
|
label = `\u2714 \x1B[95mScraped\x1B[0m`;
|
|
15245
15349
|
} else if (normalizedToolName === "view_file" || normalizedToolName === "viewfile" || normalizedToolName === "readfile") {
|
|
15246
|
-
const
|
|
15247
|
-
label = `\u2714 \x1B[95mRead File\x1B[0m: ${
|
|
15350
|
+
const path24 = parseArgs(toolCall.args).path || "";
|
|
15351
|
+
label = `\u2714 \x1B[95mRead File\x1B[0m: ${path24}`;
|
|
15248
15352
|
} else if (normalizedToolName === "list_files" || normalizedToolName === "read_folder" || normalizedToolName === "readfolder") {
|
|
15249
|
-
const
|
|
15250
|
-
label = `\u2714 \x1B[95mBrowsed Folder\x1B[0m: ${
|
|
15353
|
+
const path24 = parseArgs(toolCall.args).path || "";
|
|
15354
|
+
label = `\u2714 \x1B[95mBrowsed Folder\x1B[0m: ${path24}`;
|
|
15251
15355
|
} else if (normalizedToolName === "write_file" || normalizedToolName === "writefile") {
|
|
15252
|
-
const
|
|
15253
|
-
label = `\u2714 \x1B[95mFile Created\x1B[0m: ${
|
|
15356
|
+
const path24 = parseArgs(toolCall.args).path || "";
|
|
15357
|
+
label = `\u2714 \x1B[95mFile Created\x1B[0m: ${path24}`;
|
|
15254
15358
|
} else if (normalizedToolName === "update_file" || normalizedToolName === "updatefile" || normalizedToolName === "patchfile" || normalizedToolName === "patch_file" || normalizedToolName === "patchfile" || normalizedToolName === "updatefile") {
|
|
15255
|
-
const
|
|
15256
|
-
label = `\u2714 \x1B[95mFile Edited\x1B[0m: ${
|
|
15359
|
+
const path24 = parseArgs(toolCall.args).path || "";
|
|
15360
|
+
label = `\u2714 \x1B[95mFile Edited\x1B[0m: ${path24}`;
|
|
15257
15361
|
} else if (normalizedToolName === "file_map" || normalizedToolName === "filemap") {
|
|
15258
|
-
const
|
|
15259
|
-
label = `\u2714 \x1B[95mIndexed\x1B[0m: ${
|
|
15362
|
+
const path24 = parseArgs(toolCall.args).path || "";
|
|
15363
|
+
label = `\u2714 \x1B[95mIndexed\x1B[0m: ${path24}`;
|
|
15260
15364
|
} else if (normalizedToolName === "await") {
|
|
15261
15365
|
const { time } = parseArgs(toolCall.args);
|
|
15262
15366
|
let sec = parseFloat(time) || 0;
|
|
@@ -16171,7 +16275,7 @@ var init_RevertModal = __esm({
|
|
|
16171
16275
|
import puppeteer4 from "puppeteer";
|
|
16172
16276
|
import { exec } from "child_process";
|
|
16173
16277
|
import { promisify } from "util";
|
|
16174
|
-
import
|
|
16278
|
+
import fs24 from "fs";
|
|
16175
16279
|
var execAsync, checkPuppeteerReady, installPuppeteerBrowser;
|
|
16176
16280
|
var init_setup = __esm({
|
|
16177
16281
|
"src/utils/setup.js"() {
|
|
@@ -16180,11 +16284,11 @@ var init_setup = __esm({
|
|
|
16180
16284
|
checkPuppeteerReady = () => {
|
|
16181
16285
|
try {
|
|
16182
16286
|
const pptrConfig = getPuppeteerConfig();
|
|
16183
|
-
if (pptrConfig.executablePath &&
|
|
16287
|
+
if (pptrConfig.executablePath && fs24.existsSync(pptrConfig.executablePath)) {
|
|
16184
16288
|
return true;
|
|
16185
16289
|
}
|
|
16186
16290
|
const exePath = puppeteer4.executablePath();
|
|
16187
|
-
const exists = exePath &&
|
|
16291
|
+
const exists = exePath && fs24.existsSync(exePath);
|
|
16188
16292
|
if (exists) return true;
|
|
16189
16293
|
} catch (e) {
|
|
16190
16294
|
return false;
|
|
@@ -16271,10 +16375,10 @@ __export(app_exports, {
|
|
|
16271
16375
|
import os5 from "os";
|
|
16272
16376
|
import React16, { useState as useState15, useEffect as useEffect12, useRef as useRef4, useMemo as useMemo2 } from "react";
|
|
16273
16377
|
import { Box as Box14, Text as Text16, useInput as useInput9, useStdout as useStdout2, Static } from "ink";
|
|
16274
|
-
import
|
|
16275
|
-
import
|
|
16378
|
+
import fs25 from "fs-extra";
|
|
16379
|
+
import path23 from "path";
|
|
16276
16380
|
import { exec as exec2 } from "child_process";
|
|
16277
|
-
import { fileURLToPath as
|
|
16381
|
+
import { fileURLToPath as fileURLToPath3 } from "url";
|
|
16278
16382
|
import TextInput4 from "ink-text-input";
|
|
16279
16383
|
import SelectInput2 from "ink-select-input";
|
|
16280
16384
|
import gradient2 from "gradient-string";
|
|
@@ -16581,8 +16685,8 @@ function App({ args = [] }) {
|
|
|
16581
16685
|
const [setupStep, setSetupStep] = useState15(0);
|
|
16582
16686
|
const [latestVer, setLatestVer] = useState15(null);
|
|
16583
16687
|
const [showFullThinking, setShowFullThinking] = useState15(false);
|
|
16584
|
-
const [activeModel, setActiveModel] = useState15("gemma-4-31b-it");
|
|
16585
|
-
const [janitorModel, setJanitorModel] = useState15("gemma-4-26b-a4b-it");
|
|
16688
|
+
const [activeModel, setActiveModel] = useState15(getDefaultModel("Google", "Free") || "gemma-4-31b-it");
|
|
16689
|
+
const [janitorModel, setJanitorModel] = useState15(getFallbackValue("gemma_janitor_fallback_google") || "gemma-4-26b-a4b-it");
|
|
16586
16690
|
const [isInitializing, setIsInitializing] = useState15(true);
|
|
16587
16691
|
const [isAppFocused, setIsAppFocused] = useState15(true);
|
|
16588
16692
|
const lastFocusEventTime = useRef4(0);
|
|
@@ -16592,10 +16696,10 @@ function App({ args = [] }) {
|
|
|
16592
16696
|
const kbPath = getKeybindingsPath(ideName);
|
|
16593
16697
|
if (!kbPath) return;
|
|
16594
16698
|
try {
|
|
16595
|
-
await
|
|
16699
|
+
await fs25.ensureDir(path23.dirname(kbPath));
|
|
16596
16700
|
let bindings = [];
|
|
16597
|
-
if (
|
|
16598
|
-
const content =
|
|
16701
|
+
if (fs25.existsSync(kbPath)) {
|
|
16702
|
+
const content = fs25.readFileSync(kbPath, "utf8").trim();
|
|
16599
16703
|
if (content) {
|
|
16600
16704
|
try {
|
|
16601
16705
|
bindings = parseJsonc(content);
|
|
@@ -16615,7 +16719,7 @@ function App({ args = [] }) {
|
|
|
16615
16719
|
},
|
|
16616
16720
|
"when": "terminalFocus"
|
|
16617
16721
|
});
|
|
16618
|
-
|
|
16722
|
+
fs25.writeFileSync(kbPath, JSON.stringify(bindings, null, 4), "utf8");
|
|
16619
16723
|
cachedShortcut = "Shift + Enter";
|
|
16620
16724
|
setMessages((prev) => {
|
|
16621
16725
|
setCompletedIndex(prev.length + 1);
|
|
@@ -16736,37 +16840,14 @@ function App({ args = [] }) {
|
|
|
16736
16840
|
if (isThirdRender.current) {
|
|
16737
16841
|
return;
|
|
16738
16842
|
}
|
|
16739
|
-
const
|
|
16740
|
-
let
|
|
16741
|
-
|
|
16742
|
-
|
|
16743
|
-
|
|
16744
|
-
|
|
16745
|
-
|
|
16746
|
-
|
|
16747
|
-
defaultModel = "deepseek-v4-flash";
|
|
16748
|
-
modelDisplayName = "DeepSeek Flash (Free default)";
|
|
16749
|
-
} else if (aiProvider === "NVIDIA") {
|
|
16750
|
-
defaultModel = "deepseek-ai/deepseek-v4-flash";
|
|
16751
|
-
modelDisplayName = "DeepSeek V4 Flash (NVIDIA)";
|
|
16752
|
-
} else {
|
|
16753
|
-
defaultModel = "google/gemma-4-31b-it:free";
|
|
16754
|
-
modelDisplayName = "Gemma 4 (Free default)";
|
|
16755
|
-
}
|
|
16756
|
-
} else {
|
|
16757
|
-
if (aiProvider === "Google") {
|
|
16758
|
-
defaultModel = "gemini-3-flash-preview";
|
|
16759
|
-
modelDisplayName = "Gemini 3 Flash";
|
|
16760
|
-
} else if (aiProvider === "DeepSeek") {
|
|
16761
|
-
defaultModel = "deepseek-v4-flash";
|
|
16762
|
-
modelDisplayName = "DeepSeek Flash";
|
|
16763
|
-
} else if (aiProvider === "NVIDIA") {
|
|
16764
|
-
defaultModel = "deepseek-ai/deepseek-v4-flash";
|
|
16765
|
-
modelDisplayName = "DeepSeek V4 Flash (NVIDIA)";
|
|
16766
|
-
} else {
|
|
16767
|
-
defaultModel = "deepseek/deepseek-v4-flash";
|
|
16768
|
-
modelDisplayName = "DeepSeek Flash";
|
|
16769
|
-
}
|
|
16843
|
+
const defaultModel = getDefaultModel(aiProvider, apiTier);
|
|
16844
|
+
let modelDisplayName = defaultModel;
|
|
16845
|
+
if (defaultModel.includes("gemma")) {
|
|
16846
|
+
modelDisplayName = "Gemma";
|
|
16847
|
+
} else if (defaultModel.includes("deepseek")) {
|
|
16848
|
+
modelDisplayName = "DeepSeek Flash";
|
|
16849
|
+
} else if (defaultModel.includes("gemini")) {
|
|
16850
|
+
modelDisplayName = "Gemini Flash";
|
|
16770
16851
|
}
|
|
16771
16852
|
setActiveModel(defaultModel);
|
|
16772
16853
|
saveSettings({ apiTier, activeModel: defaultModel });
|
|
@@ -17239,11 +17320,39 @@ function App({ args = [] }) {
|
|
|
17239
17320
|
}
|
|
17240
17321
|
if (suggestions.length > 0 && activeView === "chat") {
|
|
17241
17322
|
if (key.upArrow) {
|
|
17242
|
-
setSelectedIndex((prev) =>
|
|
17323
|
+
setSelectedIndex((prev) => {
|
|
17324
|
+
let nextIdx = prev > 0 ? prev - 1 : suggestions.length - 1;
|
|
17325
|
+
let loops = 0;
|
|
17326
|
+
while (nextIdx !== prev && loops < suggestions.length) {
|
|
17327
|
+
const sug = suggestions[nextIdx];
|
|
17328
|
+
const cmdName = sug?.cmd || sug || "";
|
|
17329
|
+
if (typeof cmdName === "string" && cmdName.trimStart().startsWith("---")) {
|
|
17330
|
+
nextIdx = nextIdx > 0 ? nextIdx - 1 : suggestions.length - 1;
|
|
17331
|
+
loops++;
|
|
17332
|
+
} else {
|
|
17333
|
+
break;
|
|
17334
|
+
}
|
|
17335
|
+
}
|
|
17336
|
+
return nextIdx;
|
|
17337
|
+
});
|
|
17243
17338
|
return;
|
|
17244
17339
|
}
|
|
17245
17340
|
if (key.downArrow) {
|
|
17246
|
-
setSelectedIndex((prev) =>
|
|
17341
|
+
setSelectedIndex((prev) => {
|
|
17342
|
+
let nextIdx = prev < suggestions.length - 1 ? prev + 1 : 0;
|
|
17343
|
+
let loops = 0;
|
|
17344
|
+
while (nextIdx !== prev && loops < suggestions.length) {
|
|
17345
|
+
const sug = suggestions[nextIdx];
|
|
17346
|
+
const cmdName = sug?.cmd || sug || "";
|
|
17347
|
+
if (typeof cmdName === "string" && cmdName.trimStart().startsWith("---")) {
|
|
17348
|
+
nextIdx = nextIdx < suggestions.length - 1 ? nextIdx + 1 : 0;
|
|
17349
|
+
loops++;
|
|
17350
|
+
} else {
|
|
17351
|
+
break;
|
|
17352
|
+
}
|
|
17353
|
+
}
|
|
17354
|
+
return nextIdx;
|
|
17355
|
+
});
|
|
17247
17356
|
return;
|
|
17248
17357
|
}
|
|
17249
17358
|
if (key.return) {
|
|
@@ -17294,7 +17403,7 @@ function App({ args = [] }) {
|
|
|
17294
17403
|
useEffect12(() => {
|
|
17295
17404
|
async function init() {
|
|
17296
17405
|
try {
|
|
17297
|
-
const pkg = JSON.parse(
|
|
17406
|
+
const pkg = JSON.parse(fs25.readFileSync(path23.join(process.cwd(), "package.json"), "utf8"));
|
|
17298
17407
|
initBridge(versionFluxflow || pkg.version || "2.0.0");
|
|
17299
17408
|
} catch (e) {
|
|
17300
17409
|
initBridge("2.0.0");
|
|
@@ -17314,6 +17423,7 @@ function App({ args = [] }) {
|
|
|
17314
17423
|
return [...prev, { id: "setup-done-" + Date.now(), role: "system", text: "[SYSTEM] All dependencies installed successfully.", isMeta: true }];
|
|
17315
17424
|
});
|
|
17316
17425
|
}
|
|
17426
|
+
await loadRemoteModelConfig();
|
|
17317
17427
|
const saved = await loadSettings();
|
|
17318
17428
|
originalAllowExternalAccessRef.current = saved.systemSettings?.allowExternalAccess ?? false;
|
|
17319
17429
|
originalMemoryRef.current = saved.systemSettings?.memory ?? true;
|
|
@@ -17335,28 +17445,7 @@ function App({ args = [] }) {
|
|
|
17335
17445
|
if (parsedArgs.model) {
|
|
17336
17446
|
setActiveModel(parsedArgs.model);
|
|
17337
17447
|
} else if (parsedArgs.provider) {
|
|
17338
|
-
|
|
17339
|
-
if (currentTier === "Free") {
|
|
17340
|
-
if (startupProvider === "Google") {
|
|
17341
|
-
defaultModel = "gemma-4-31b-it";
|
|
17342
|
-
} else if (startupProvider === "DeepSeek") {
|
|
17343
|
-
defaultModel = "deepseek-v4-flash";
|
|
17344
|
-
} else if (startupProvider === "OpenRouter") {
|
|
17345
|
-
defaultModel = "google/gemma-4-31b-it:free";
|
|
17346
|
-
} else if (startupProvider === "NVIDIA") {
|
|
17347
|
-
defaultModel = "deepseek-ai/deepseek-v4-flash";
|
|
17348
|
-
}
|
|
17349
|
-
} else {
|
|
17350
|
-
if (startupProvider === "Google") {
|
|
17351
|
-
defaultModel = "gemini-3-flash-preview";
|
|
17352
|
-
} else if (startupProvider === "DeepSeek") {
|
|
17353
|
-
defaultModel = "deepseek-v4-flash";
|
|
17354
|
-
} else if (startupProvider === "OpenRouter") {
|
|
17355
|
-
defaultModel = "deepseek/deepseek-v4-flash";
|
|
17356
|
-
} else if (startupProvider === "NVIDIA") {
|
|
17357
|
-
defaultModel = "deepseek-ai/deepseek-v4-flash";
|
|
17358
|
-
}
|
|
17359
|
-
}
|
|
17448
|
+
const defaultModel = getDefaultModel(startupProvider, currentTier);
|
|
17360
17449
|
setActiveModel(defaultModel);
|
|
17361
17450
|
} else {
|
|
17362
17451
|
setActiveModel(saved.activeModel);
|
|
@@ -17417,7 +17506,7 @@ function App({ args = [] }) {
|
|
|
17417
17506
|
if (!parsedArgs.playground) {
|
|
17418
17507
|
deleteChat(PLAYGROUND_CHAT_ID).catch(() => {
|
|
17419
17508
|
});
|
|
17420
|
-
|
|
17509
|
+
fs25.remove(path23.join(DATA_DIR, "playground")).catch(() => {
|
|
17421
17510
|
});
|
|
17422
17511
|
}
|
|
17423
17512
|
performVersionCheck(false, freshSettings);
|
|
@@ -17451,9 +17540,9 @@ function App({ args = [] }) {
|
|
|
17451
17540
|
}
|
|
17452
17541
|
}
|
|
17453
17542
|
if (parsedArgs.playground) {
|
|
17454
|
-
const playgroundDir =
|
|
17543
|
+
const playgroundDir = path23.join(DATA_DIR, "playground");
|
|
17455
17544
|
try {
|
|
17456
|
-
|
|
17545
|
+
fs25.ensureDirSync(playgroundDir);
|
|
17457
17546
|
process.chdir(playgroundDir);
|
|
17458
17547
|
} catch (e) {
|
|
17459
17548
|
}
|
|
@@ -17494,8 +17583,8 @@ function App({ args = [] }) {
|
|
|
17494
17583
|
if (kbPath) {
|
|
17495
17584
|
try {
|
|
17496
17585
|
let bindings = [];
|
|
17497
|
-
if (
|
|
17498
|
-
const content =
|
|
17586
|
+
if (fs25.existsSync(kbPath)) {
|
|
17587
|
+
const content = fs25.readFileSync(kbPath, "utf8").trim();
|
|
17499
17588
|
if (content) {
|
|
17500
17589
|
bindings = parseJsonc(content);
|
|
17501
17590
|
}
|
|
@@ -17659,211 +17748,7 @@ function App({ args = [] }) {
|
|
|
17659
17748
|
{
|
|
17660
17749
|
cmd: "/model",
|
|
17661
17750
|
desc: "Select Agent Model",
|
|
17662
|
-
subs: aiProvider
|
|
17663
|
-
{
|
|
17664
|
-
cmd: "google/gemma-4-31b-it:free",
|
|
17665
|
-
desc: "Multimodal"
|
|
17666
|
-
},
|
|
17667
|
-
{
|
|
17668
|
-
cmd: "moonshotai/kimi-k2.6:free",
|
|
17669
|
-
desc: "Multimodal"
|
|
17670
|
-
},
|
|
17671
|
-
{
|
|
17672
|
-
cmd: "qwen/qwen3-coder:free",
|
|
17673
|
-
desc: "Text Only"
|
|
17674
|
-
},
|
|
17675
|
-
{
|
|
17676
|
-
cmd: "z-ai/glm-4.5-air:free",
|
|
17677
|
-
desc: "Text Only"
|
|
17678
|
-
}
|
|
17679
|
-
] : [
|
|
17680
|
-
{
|
|
17681
|
-
cmd: "google/gemini-3.5-flash",
|
|
17682
|
-
desc: "Multimodal"
|
|
17683
|
-
},
|
|
17684
|
-
{
|
|
17685
|
-
cmd: "qwen/qwen3.7-plus",
|
|
17686
|
-
desc: "Multimodal"
|
|
17687
|
-
},
|
|
17688
|
-
{
|
|
17689
|
-
cmd: "minimax/minimax-m3",
|
|
17690
|
-
desc: "Multimodal"
|
|
17691
|
-
},
|
|
17692
|
-
{
|
|
17693
|
-
cmd: "anthropic/claude-sonnet-4.5",
|
|
17694
|
-
desc: "Multimodal"
|
|
17695
|
-
},
|
|
17696
|
-
{
|
|
17697
|
-
cmd: "anthropic/claude-opus-4.6",
|
|
17698
|
-
desc: "Multimodal"
|
|
17699
|
-
},
|
|
17700
|
-
{
|
|
17701
|
-
cmd: "anthropic/claude-opus-4.8",
|
|
17702
|
-
desc: "Multimodal"
|
|
17703
|
-
},
|
|
17704
|
-
{
|
|
17705
|
-
cmd: "deepseek/deepseek-v4-pro",
|
|
17706
|
-
desc: "Text Only"
|
|
17707
|
-
},
|
|
17708
|
-
{
|
|
17709
|
-
cmd: "deepseek/deepseek-v4-flash",
|
|
17710
|
-
desc: "Text Only"
|
|
17711
|
-
},
|
|
17712
|
-
{
|
|
17713
|
-
cmd: "xiaomi/mimo-v2.5-pro",
|
|
17714
|
-
desc: "Text Only"
|
|
17715
|
-
},
|
|
17716
|
-
{
|
|
17717
|
-
cmd: "z-ai/glm-5",
|
|
17718
|
-
desc: "Text Only"
|
|
17719
|
-
},
|
|
17720
|
-
{
|
|
17721
|
-
cmd: "openai/gpt-5.2-codex",
|
|
17722
|
-
desc: "Multimodal"
|
|
17723
|
-
},
|
|
17724
|
-
{
|
|
17725
|
-
cmd: "openai/gpt-5.2-pro",
|
|
17726
|
-
desc: "Multimodal"
|
|
17727
|
-
},
|
|
17728
|
-
{
|
|
17729
|
-
cmd: "openai/gpt-5.5-pro",
|
|
17730
|
-
desc: "Multimodal"
|
|
17731
|
-
},
|
|
17732
|
-
{
|
|
17733
|
-
cmd: "moonshotai/kimi-k2.6",
|
|
17734
|
-
desc: "Multimodal"
|
|
17735
|
-
}
|
|
17736
|
-
] : aiProvider === "DeepSeek" ? [
|
|
17737
|
-
{
|
|
17738
|
-
cmd: "deepseek-v4-flash",
|
|
17739
|
-
desc: "Fast & Efficient (Text Only)"
|
|
17740
|
-
},
|
|
17741
|
-
{
|
|
17742
|
-
cmd: "deepseek-v4-pro",
|
|
17743
|
-
desc: "High-Intelligence Reasoning (Text Only)"
|
|
17744
|
-
}
|
|
17745
|
-
] : aiProvider === "NVIDIA" ? [
|
|
17746
|
-
// --- Kimi (Moonshot AI) ---
|
|
17747
|
-
{
|
|
17748
|
-
cmd: "moonshotai/kimi-k2.7",
|
|
17749
|
-
desc: "Multimodal"
|
|
17750
|
-
},
|
|
17751
|
-
// --- DeepSeek Family ---
|
|
17752
|
-
{
|
|
17753
|
-
cmd: "deepseek-ai/deepseek-v4-flash",
|
|
17754
|
-
desc: "Text Only"
|
|
17755
|
-
},
|
|
17756
|
-
{
|
|
17757
|
-
cmd: "deepseek-ai/deepseek-v4-pro",
|
|
17758
|
-
desc: "Text Only"
|
|
17759
|
-
},
|
|
17760
|
-
// --- StepFun ---
|
|
17761
|
-
{
|
|
17762
|
-
cmd: "stepfun-ai/step-3.7-flash",
|
|
17763
|
-
desc: "Multimodal"
|
|
17764
|
-
},
|
|
17765
|
-
// --- Gemma Family (Google) ---
|
|
17766
|
-
{
|
|
17767
|
-
cmd: "google/gemma-4-31b-it",
|
|
17768
|
-
desc: "Multimodal"
|
|
17769
|
-
},
|
|
17770
|
-
{
|
|
17771
|
-
cmd: "google/diffusiongemma-26b-a4b-it",
|
|
17772
|
-
desc: "Mega Fast [Experimental]"
|
|
17773
|
-
},
|
|
17774
|
-
// --- Mistral ---
|
|
17775
|
-
{
|
|
17776
|
-
cmd: "mistralai/mistral-medium-3.5-128b",
|
|
17777
|
-
desc: "Multimodal"
|
|
17778
|
-
},
|
|
17779
|
-
// --- GPT Open Source Series (OpenAI) ---
|
|
17780
|
-
{
|
|
17781
|
-
cmd: "openai/gpt-oss-20b",
|
|
17782
|
-
desc: "Text Only"
|
|
17783
|
-
},
|
|
17784
|
-
{
|
|
17785
|
-
cmd: "openai/gpt-oss-120b",
|
|
17786
|
-
desc: "Text Only"
|
|
17787
|
-
},
|
|
17788
|
-
// --- GLM (Zhipu AI) ---
|
|
17789
|
-
{
|
|
17790
|
-
cmd: "z-ai/glm-5.2",
|
|
17791
|
-
desc: "Text Only"
|
|
17792
|
-
},
|
|
17793
|
-
// --- MiniMax Family ---
|
|
17794
|
-
{
|
|
17795
|
-
cmd: "minimaxai/minimax-m2.7",
|
|
17796
|
-
desc: "Text Only"
|
|
17797
|
-
},
|
|
17798
|
-
{
|
|
17799
|
-
cmd: "minimaxai/minimax-m3",
|
|
17800
|
-
desc: "Text Only"
|
|
17801
|
-
},
|
|
17802
|
-
// QWEN
|
|
17803
|
-
{
|
|
17804
|
-
cmd: "qwen/qwen3.5-397b-a17b",
|
|
17805
|
-
desc: "Multimodal"
|
|
17806
|
-
},
|
|
17807
|
-
// NVIDIA NEMOTRON
|
|
17808
|
-
{
|
|
17809
|
-
cmd: "nvidia/nemotron-3-ultra-550b-a55b",
|
|
17810
|
-
desc: "Text Only [EXPERIMENTAL]"
|
|
17811
|
-
}
|
|
17812
|
-
] : apiTier === "Free" ? [
|
|
17813
|
-
{
|
|
17814
|
-
cmd: "gemma-4-26b-a4b-it",
|
|
17815
|
-
desc: "Standard & Faster (Multimodal)"
|
|
17816
|
-
},
|
|
17817
|
-
{
|
|
17818
|
-
cmd: "gemma-4-31b-it",
|
|
17819
|
-
desc: "Standard Default (Multimodal)"
|
|
17820
|
-
},
|
|
17821
|
-
{
|
|
17822
|
-
cmd: "gemini-2.5-flash-lite",
|
|
17823
|
-
desc: "Fast & Cheap (Multimodal) [Limited Free Quota]"
|
|
17824
|
-
},
|
|
17825
|
-
{
|
|
17826
|
-
cmd: "gemini-2.5-flash",
|
|
17827
|
-
desc: "Fast & Reliable (Multimodal) [Limited Free Quota]"
|
|
17828
|
-
},
|
|
17829
|
-
{
|
|
17830
|
-
cmd: "gemini-3-flash-preview",
|
|
17831
|
-
desc: "Fast & Lightweight (Multimodal) [Limited Free Quota]"
|
|
17832
|
-
},
|
|
17833
|
-
{
|
|
17834
|
-
cmd: "gemini-3.5-flash",
|
|
17835
|
-
desc: "Flash Latest (Multimodal) [Limited Free Quota] Instability Issues"
|
|
17836
|
-
}
|
|
17837
|
-
] : [
|
|
17838
|
-
{
|
|
17839
|
-
cmd: "gemini-2.5-flash-lite",
|
|
17840
|
-
desc: "Fast & Cheap (Multimodal)"
|
|
17841
|
-
},
|
|
17842
|
-
{
|
|
17843
|
-
cmd: "gemini-2.5-flash",
|
|
17844
|
-
desc: "Fast & Reliable (Multimodal)"
|
|
17845
|
-
},
|
|
17846
|
-
{
|
|
17847
|
-
cmd: "gemini-2.5-pro",
|
|
17848
|
-
desc: "Last gen Pro reasoning (Multimodal)"
|
|
17849
|
-
},
|
|
17850
|
-
{
|
|
17851
|
-
cmd: "gemini-3.1-flash-lite",
|
|
17852
|
-
desc: "Ultra-Fast & Lite (Multimodal)"
|
|
17853
|
-
},
|
|
17854
|
-
{
|
|
17855
|
-
cmd: "gemini-3-flash-preview",
|
|
17856
|
-
desc: "Default, Fast & Lightweight (Multimodal)"
|
|
17857
|
-
},
|
|
17858
|
-
{
|
|
17859
|
-
cmd: "gemini-3.5-flash",
|
|
17860
|
-
desc: "Flash Latest (Multimodal) [Instability Issues]"
|
|
17861
|
-
},
|
|
17862
|
-
{
|
|
17863
|
-
cmd: "gemini-3.1-pro-preview",
|
|
17864
|
-
desc: "Pro Reasoning (Multimodal)"
|
|
17865
|
-
}
|
|
17866
|
-
]
|
|
17751
|
+
subs: getModels(aiProvider, apiTier)
|
|
17867
17752
|
},
|
|
17868
17753
|
{
|
|
17869
17754
|
cmd: "/mode",
|
|
@@ -18024,22 +17909,22 @@ ${cleanText}`, color: "magenta" }];
|
|
|
18024
17909
|
});
|
|
18025
17910
|
break;
|
|
18026
17911
|
}
|
|
18027
|
-
const src =
|
|
18028
|
-
const dest =
|
|
17912
|
+
const src = path23.join(DATA_DIR, "playground");
|
|
17913
|
+
const dest = path23.join(parsedArgs.originalCwd, "playground-export");
|
|
18029
17914
|
const moveFiles = async () => {
|
|
18030
17915
|
try {
|
|
18031
17916
|
setMessages((prev) => {
|
|
18032
17917
|
setCompletedIndex(prev.length + 1);
|
|
18033
17918
|
return [...prev, { id: Date.now(), role: "system", text: `[PLAYGROUND] Exporting playground content to ${dest}`, isMeta: true }];
|
|
18034
17919
|
});
|
|
18035
|
-
await
|
|
17920
|
+
await fs25.ensureDir(dest);
|
|
18036
17921
|
const excludeDirs = ["node_modules", ".git", ".venv", "venv", "env", ".next", "dist", "build", ".cache"];
|
|
18037
|
-
await
|
|
17922
|
+
await fs25.copy(src, dest, {
|
|
18038
17923
|
overwrite: true,
|
|
18039
17924
|
filter: (srcPath) => {
|
|
18040
|
-
const relative =
|
|
17925
|
+
const relative = path23.relative(src, srcPath);
|
|
18041
17926
|
if (!relative) return true;
|
|
18042
|
-
const parts2 = relative.split(
|
|
17927
|
+
const parts2 = relative.split(path23.sep);
|
|
18043
17928
|
return !parts2.some((part) => excludeDirs.includes(part));
|
|
18044
17929
|
}
|
|
18045
17930
|
});
|
|
@@ -18099,7 +17984,7 @@ ${cleanText}`, color: "magenta" }];
|
|
|
18099
17984
|
}
|
|
18100
17985
|
}
|
|
18101
17986
|
setTimeout(() => {
|
|
18102
|
-
|
|
17987
|
+
fs25.emptyDir(path23.join(DATA_DIR, "playground")).catch((err) => {
|
|
18103
17988
|
setMessages((prev) => {
|
|
18104
17989
|
const newMsgs = [...prev, {
|
|
18105
17990
|
id: "playground-" + Date.now(),
|
|
@@ -18343,17 +18228,19 @@ ${cleanText}`, color: "magenta" }];
|
|
|
18343
18228
|
case "/model": {
|
|
18344
18229
|
if (parts[1]) {
|
|
18345
18230
|
const mod = parts.slice(1).join(" ");
|
|
18346
|
-
|
|
18231
|
+
const freeDefault = getDefaultModel("Google", "Free");
|
|
18232
|
+
const paidDefault = getDefaultModel("Google", "Paid");
|
|
18233
|
+
if (mod === freeDefault && apiTier !== "Free" && aiProvider === "Google") {
|
|
18347
18234
|
setMessages((prev) => {
|
|
18348
18235
|
setCompletedIndex(prev.length + 1);
|
|
18349
18236
|
return [...prev, {
|
|
18350
18237
|
id: Date.now(),
|
|
18351
18238
|
role: "system",
|
|
18352
|
-
text: `**[ACCESS DENIED]**
|
|
18239
|
+
text: `**[ACCESS DENIED]** ${freeDefault} is restricted to the Free API tier. Automatically switching you to **${paidDefault}** for optimal performance.`,
|
|
18353
18240
|
isMeta: true
|
|
18354
18241
|
}];
|
|
18355
18242
|
});
|
|
18356
|
-
setActiveModel(
|
|
18243
|
+
setActiveModel(paidDefault);
|
|
18357
18244
|
} else {
|
|
18358
18245
|
setActiveModel(mod);
|
|
18359
18246
|
const s2 = emojiSpace(2);
|
|
@@ -18402,7 +18289,7 @@ ${cleanText}`, color: "magenta" }];
|
|
|
18402
18289
|
}
|
|
18403
18290
|
case "/export": {
|
|
18404
18291
|
const exportFile = `export-fluxflow-${chatId}.txt`;
|
|
18405
|
-
const exportPath =
|
|
18292
|
+
const exportPath = path23.join(process.cwd(), exportFile);
|
|
18406
18293
|
const exportLines = [];
|
|
18407
18294
|
let insideAgentBlock = false;
|
|
18408
18295
|
for (let i = 0; i < messages.length; i++) {
|
|
@@ -18454,7 +18341,7 @@ ${cleanText}`, color: "magenta" }];
|
|
|
18454
18341
|
}
|
|
18455
18342
|
const fileContent = exportLines.join("\n");
|
|
18456
18343
|
try {
|
|
18457
|
-
|
|
18344
|
+
fs25.writeFileSync(exportPath, fileContent, "utf8");
|
|
18458
18345
|
setMessages((prev) => {
|
|
18459
18346
|
setCompletedIndex(prev.length + 1);
|
|
18460
18347
|
return [...prev, {
|
|
@@ -18501,12 +18388,12 @@ ${list || "No saved chats found."}`, isMeta: true }];
|
|
|
18501
18388
|
setCompletedIndex(prev.length + 1);
|
|
18502
18389
|
return [...prev, { id: Date.now(), role: "system", text: "[NUCLEAR] Initiating reset...", isMeta: true }];
|
|
18503
18390
|
});
|
|
18504
|
-
if (
|
|
18505
|
-
if (
|
|
18506
|
-
if (
|
|
18391
|
+
if (fs25.existsSync(LOGS_DIR)) fs25.removeSync(LOGS_DIR);
|
|
18392
|
+
if (fs25.existsSync(SECRET_DIR)) fs25.removeSync(SECRET_DIR);
|
|
18393
|
+
if (fs25.existsSync(SETTINGS_FILE)) fs25.removeSync(SETTINGS_FILE);
|
|
18507
18394
|
try {
|
|
18508
|
-
const items =
|
|
18509
|
-
if (items.length === 0)
|
|
18395
|
+
const items = fs25.readdirSync(FLUXFLOW_DIR);
|
|
18396
|
+
if (items.length === 0) fs25.removeSync(FLUXFLOW_DIR);
|
|
18510
18397
|
} catch (e) {
|
|
18511
18398
|
}
|
|
18512
18399
|
setTimeout(() => {
|
|
@@ -18628,15 +18515,15 @@ ${list || "No saved chats found."}`, isMeta: true }];
|
|
|
18628
18515
|
# SKILLS & WORKFLOWS
|
|
18629
18516
|
- [Define custom step-by-step recipes for this project here]
|
|
18630
18517
|
`;
|
|
18631
|
-
const filePath =
|
|
18632
|
-
if (
|
|
18518
|
+
const filePath = path23.join(process.cwd(), "FluxFlow.md");
|
|
18519
|
+
if (fs25.pathExistsSync(filePath)) {
|
|
18633
18520
|
setMessages((prev) => {
|
|
18634
18521
|
setCompletedIndex(prev.length + 1);
|
|
18635
18522
|
return [...prev, { id: "init-err-" + Date.now(), role: "system", text: "ERROR: FluxFlow.md already exists in this directory.", isMeta: true }];
|
|
18636
18523
|
});
|
|
18637
18524
|
} else {
|
|
18638
18525
|
try {
|
|
18639
|
-
|
|
18526
|
+
fs25.writeFileSync(filePath, template);
|
|
18640
18527
|
setMessages((prev) => {
|
|
18641
18528
|
setCompletedIndex(prev.length + 1);
|
|
18642
18529
|
return [...prev, { id: "init-ok-" + Date.now(), role: "system", text: "[SUCCESS] FluxFlow.md has been initialized. You can now customize it for this project.", isMeta: true }];
|
|
@@ -19532,7 +19419,17 @@ Selection: ${val}`,
|
|
|
19532
19419
|
return [];
|
|
19533
19420
|
}, [input, isFilePickerDismissed]);
|
|
19534
19421
|
useEffect12(() => {
|
|
19535
|
-
|
|
19422
|
+
let startIdx = 0;
|
|
19423
|
+
while (startIdx < suggestions.length) {
|
|
19424
|
+
const sug = suggestions[startIdx];
|
|
19425
|
+
const cmdName = sug?.cmd || sug || "";
|
|
19426
|
+
if (typeof cmdName === "string" && cmdName.trimStart().startsWith("---")) {
|
|
19427
|
+
startIdx++;
|
|
19428
|
+
} else {
|
|
19429
|
+
break;
|
|
19430
|
+
}
|
|
19431
|
+
}
|
|
19432
|
+
setSelectedIndex(startIdx < suggestions.length ? startIdx : 0);
|
|
19536
19433
|
}, [suggestions]);
|
|
19537
19434
|
const [suggestionVisibleCount, setSuggestionVisibleCount] = useState15(0);
|
|
19538
19435
|
const prevSuggestionsLenRef = useRef4(0);
|
|
@@ -19708,16 +19605,9 @@ Selection: ${val}`,
|
|
|
19708
19605
|
setAiProvider(selectedProvider);
|
|
19709
19606
|
setApiKey(key);
|
|
19710
19607
|
initAI(key, { aiProvider: selectedProvider, onIDEApproval: resetPendingApproval });
|
|
19711
|
-
let defaultModel = "gemma-4-31b-it";
|
|
19712
|
-
if (selectedProvider === "OpenRouter") {
|
|
19713
|
-
defaultModel = "google/gemma-4-31b-it:free";
|
|
19714
|
-
} else if (selectedProvider === "DeepSeek") {
|
|
19715
|
-
defaultModel = "deepseek-v4-flash";
|
|
19716
|
-
} else if (selectedProvider === "NVIDIA") {
|
|
19717
|
-
defaultModel = "deepseek-ai/deepseek-v4-flash";
|
|
19718
|
-
}
|
|
19719
|
-
setActiveModel(defaultModel);
|
|
19720
19608
|
const targetTier = (quotas.providerTiers || {})[selectedProvider] || "Free";
|
|
19609
|
+
const defaultModel = getDefaultModel(selectedProvider, targetTier);
|
|
19610
|
+
setActiveModel(defaultModel);
|
|
19721
19611
|
setApiTier(targetTier);
|
|
19722
19612
|
saveSettings({ aiProvider: selectedProvider, activeModel: defaultModel, apiTier: targetTier, quotas });
|
|
19723
19613
|
setMessages((prev) => [
|
|
@@ -20036,16 +19926,9 @@ Selection: ${val}`,
|
|
|
20036
19926
|
setAiProvider(prov);
|
|
20037
19927
|
setApiKey(keyInput);
|
|
20038
19928
|
initAI(keyInput, { aiProvider: prov, onIDEApproval: resetPendingApproval });
|
|
20039
|
-
let defaultModel = "gemma-4-31b-it";
|
|
20040
|
-
if (prov === "OpenRouter") {
|
|
20041
|
-
defaultModel = "google/gemma-4-31b-it:free";
|
|
20042
|
-
} else if (prov === "DeepSeek") {
|
|
20043
|
-
defaultModel = "deepseek-v4-flash";
|
|
20044
|
-
} else if (prov === "NVIDIA") {
|
|
20045
|
-
defaultModel = "moonshotai/kimi-k2.6";
|
|
20046
|
-
}
|
|
20047
|
-
setActiveModel(defaultModel);
|
|
20048
19929
|
const targetTier = (quotas.providerTiers || {})[prov] || "Free";
|
|
19930
|
+
const defaultModel = getDefaultModel(prov, targetTier);
|
|
19931
|
+
setActiveModel(defaultModel);
|
|
20049
19932
|
setApiTier(targetTier);
|
|
20050
19933
|
newSettings.aiProvider = prov;
|
|
20051
19934
|
newSettings.activeModel = defaultModel;
|
|
@@ -20607,7 +20490,19 @@ Selection: ${val}`,
|
|
|
20607
20490
|
)), /* @__PURE__ */ React16.createElement(Box14, { marginTop: 1 }, /* @__PURE__ */ React16.createElement(Text16, { color: "gray", italic: true }, "(Press ESC to go back to provider selection)")))), /* @__PURE__ */ React16.createElement(Box14, { paddingX: 1, marginTop: 1 }, /* @__PURE__ */ React16.createElement(Text16, { color: "gray", italic: true }, setupStep === 0 ? "(Use arrows to select and Enter to confirm)" : "(Press Enter to confirm and initialize)"))) : renderActiveView(), confirmExit && /* @__PURE__ */ React16.createElement(Box14, { borderStyle: "round", borderColor: "white", paddingX: 2, marginY: 0, width: "100%" }, /* @__PURE__ */ React16.createElement(Text16, { color: "white", bold: true }, "\u{1F534} EXIT CONFIRMATION: "), /* @__PURE__ */ React16.createElement(Text16, { color: "white" }, "Press "), /* @__PURE__ */ React16.createElement(Text16, { color: "white", bold: true }, "CTRL + C"), /* @__PURE__ */ React16.createElement(Text16, { color: "white" }, " again to exit (", exitCountdown, "s). Press "), /* @__PURE__ */ React16.createElement(Text16, { color: "gray", bold: true }, "ESC"), /* @__PURE__ */ React16.createElement(Text16, { color: "white" }, " to cancel.")), suggestions.length > 0 && (() => {
|
|
20608
20491
|
const windowSize = 5;
|
|
20609
20492
|
let startIdx = suggestionOffsetRef.current;
|
|
20610
|
-
|
|
20493
|
+
let firstSelectableIndex = 0;
|
|
20494
|
+
while (firstSelectableIndex < suggestions.length) {
|
|
20495
|
+
const sug = suggestions[firstSelectableIndex];
|
|
20496
|
+
const cmdName = sug?.cmd || sug || "";
|
|
20497
|
+
if (typeof cmdName === "string" && cmdName.trimStart().startsWith("---")) {
|
|
20498
|
+
firstSelectableIndex++;
|
|
20499
|
+
} else {
|
|
20500
|
+
break;
|
|
20501
|
+
}
|
|
20502
|
+
}
|
|
20503
|
+
if (selectedIndex <= firstSelectableIndex) {
|
|
20504
|
+
startIdx = 0;
|
|
20505
|
+
} else if (selectedIndex < startIdx) {
|
|
20611
20506
|
startIdx = selectedIndex;
|
|
20612
20507
|
} else if (selectedIndex >= startIdx + windowSize) {
|
|
20613
20508
|
startIdx = selectedIndex - windowSize + 1;
|
|
@@ -20623,7 +20518,7 @@ Selection: ${val}`,
|
|
|
20623
20518
|
width: "100%",
|
|
20624
20519
|
marginBottom: 1
|
|
20625
20520
|
},
|
|
20626
|
-
/* @__PURE__ */ React16.createElement(Box14, { paddingX: 1, marginBottom: 0, justifyContent: "space-between", width: "100%" }, /* @__PURE__ */ React16.createElement(Text16, { color: "white", bold: true }, suggestions[0]?.cmd?.startsWith("@") ? "FILE SUGGESTIONS" : "COMMAND SUGGESTIONS"), suggestions[0]?.cmd?.startsWith("@") ? /* @__PURE__ */ React16.createElement(Text16, { color: "gray", italic: true }, "(Use '#Lstart-Lend' to specify line numbers)") : input.startsWith("/model") && apiTier === "Free" ? (() => {
|
|
20521
|
+
/* @__PURE__ */ React16.createElement(Box14, { paddingX: 1, marginBottom: 0, justifyContent: "space-between", width: "100%" }, /* @__PURE__ */ React16.createElement(Text16, { color: "white", bold: true }, suggestions[0]?.cmd?.startsWith("@") ? "FILE SUGGESTIONS" : "COMMAND SUGGESTIONS"), suggestions[0]?.cmd?.startsWith("@") ? /* @__PURE__ */ React16.createElement(Text16, { color: "gray", italic: true }, "(Use \\'#Lstart-Lend\\' to specify line numbers)") : input.startsWith("/model") && apiTier === "Free" ? (() => {
|
|
20627
20522
|
let url = "https://aistudio.google.com/billing";
|
|
20628
20523
|
let label = "billing";
|
|
20629
20524
|
if (aiProvider === "DeepSeek") {
|
|
@@ -20641,7 +20536,8 @@ Selection: ${val}`,
|
|
|
20641
20536
|
visible.slice(0, suggestionVisibleCount).map((s, i) => {
|
|
20642
20537
|
const actualIdx = startIdx + i;
|
|
20643
20538
|
const isActive = actualIdx === selectedIndex;
|
|
20644
|
-
const
|
|
20539
|
+
const isDivider = typeof s.cmd === "string" && s.cmd.trimStart().startsWith("---");
|
|
20540
|
+
const isGemmaDisabled = s.cmd === getDefaultModel("Google", "Free") && apiTier !== "Free";
|
|
20645
20541
|
return /* @__PURE__ */ React16.createElement(
|
|
20646
20542
|
Box14,
|
|
20647
20543
|
{
|
|
@@ -20650,18 +20546,18 @@ Selection: ${val}`,
|
|
|
20650
20546
|
backgroundColor: isActive ? "#2a2a2a" : void 0,
|
|
20651
20547
|
paddingX: 1
|
|
20652
20548
|
},
|
|
20653
|
-
/* @__PURE__ */ React16.createElement(Box14, { width: 3 }, /* @__PURE__ */ React16.createElement(Text16, { color: isActive ? "
|
|
20549
|
+
/* @__PURE__ */ React16.createElement(Box14, { width: 3 }, /* @__PURE__ */ React16.createElement(Text16, { color: isActive ? "#B8BDC9" : "gray", bold: isActive }, isActive ? " \u276F" : " ")),
|
|
20654
20550
|
/* @__PURE__ */ React16.createElement(Box14, { width: 55 }, /* @__PURE__ */ React16.createElement(
|
|
20655
20551
|
Text16,
|
|
20656
20552
|
{
|
|
20657
|
-
color: isGemmaDisabled ? "gray" : isActive ? "white" : "grey",
|
|
20658
|
-
bold:
|
|
20553
|
+
color: isDivider ? "#D0CCD8" : isGemmaDisabled ? "gray" : isActive ? "white" : "grey",
|
|
20554
|
+
bold: false
|
|
20659
20555
|
},
|
|
20660
20556
|
s.cmd?.startsWith("@[") && s.cmd?.endsWith("]") ? (() => {
|
|
20661
20557
|
const pathPart = s.cmd.slice(2, -1);
|
|
20662
20558
|
const parts = pathPart.split(/[/\\]/);
|
|
20663
20559
|
return parts[parts.length - 1];
|
|
20664
|
-
})() : s.cmd
|
|
20560
|
+
})() : s.cmd && s.cmd.includes("/") ? s.cmd.split("/").pop() : s.cmd
|
|
20665
20561
|
)),
|
|
20666
20562
|
/* @__PURE__ */ React16.createElement(Box14, { flexGrow: 1 }, /* @__PURE__ */ React16.createElement(Text16, { color: `${!isActive ? "gray" : "white"}`, italic: true }, s.desc))
|
|
20667
20563
|
);
|
|
@@ -20718,6 +20614,7 @@ var init_app = __esm({
|
|
|
20718
20614
|
init_witty_phrases();
|
|
20719
20615
|
init_RevertModal();
|
|
20720
20616
|
init_usage();
|
|
20617
|
+
init_model_config();
|
|
20721
20618
|
init_TerminalBox();
|
|
20722
20619
|
init_arg_parser();
|
|
20723
20620
|
init_paths();
|
|
@@ -20777,11 +20674,11 @@ var init_app = __esm({
|
|
|
20777
20674
|
if (process.platform === "win32") {
|
|
20778
20675
|
const appData = process.env.APPDATA;
|
|
20779
20676
|
if (!appData) return null;
|
|
20780
|
-
return
|
|
20677
|
+
return path23.join(appData, dirName, "User", "keybindings.json");
|
|
20781
20678
|
} else if (process.platform === "darwin") {
|
|
20782
|
-
return
|
|
20679
|
+
return path23.join(home, "Library", "Application Support", dirName, "User", "keybindings.json");
|
|
20783
20680
|
} else {
|
|
20784
|
-
return
|
|
20681
|
+
return path23.join(home, ".config", dirName, "User", "keybindings.json");
|
|
20785
20682
|
}
|
|
20786
20683
|
};
|
|
20787
20684
|
parseJsonc = (content) => {
|
|
@@ -20825,8 +20722,8 @@ var init_app = __esm({
|
|
|
20825
20722
|
SESSION_START_TIME = Date.now();
|
|
20826
20723
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog";
|
|
20827
20724
|
DOCS_URL = "https://fluxflow-cli.onrender.com/";
|
|
20828
|
-
packageJsonPath =
|
|
20829
|
-
packageJson = JSON.parse(
|
|
20725
|
+
packageJsonPath = path23.join(path23.dirname(fileURLToPath3(import.meta.url)), "../package.json");
|
|
20726
|
+
packageJson = JSON.parse(fs25.readFileSync(packageJsonPath, "utf8"));
|
|
20830
20727
|
versionFluxflow = packageJson.version;
|
|
20831
20728
|
updatedOn = packageJson.date || "2026-05-20";
|
|
20832
20729
|
ResolutionModal = ({ data, onResolve, onEdit }) => /* @__PURE__ */ React16.createElement(Box14, { flexDirection: "column", borderStyle: "round", borderColor: "grey", padding: 0, width: "100%" }, /* @__PURE__ */ React16.createElement(Box14, { paddingX: 1 }, /* @__PURE__ */ React16.createElement(Text16, { color: "white", bold: true, underline: true }, data.startsWith("/btw") ? "QUESTION" : "STEERING HINT", " RESOLUTION")), /* @__PURE__ */ React16.createElement(Box14, { paddingX: 1, marginTop: 1 }, /* @__PURE__ */ React16.createElement(Text16, null, "The agent already finished the task before your ", data.startsWith("/btw") ? "question" : "hint", " was consumed.")), /* @__PURE__ */ React16.createElement(Box14, { marginTop: 1, backgroundColor: "#222", paddingX: 2, width: "100%" }, /* @__PURE__ */ React16.createElement(Text16, { italic: true, color: "gray" }, '"', data.replace("/btw", "").trim(), '"')), /* @__PURE__ */ React16.createElement(Box14, { paddingX: 1, marginTop: 1 }, /* @__PURE__ */ React16.createElement(Text16, { color: "grey" }, "How would you like to proceed?")), /* @__PURE__ */ React16.createElement(Box14, { marginTop: 0 }, /* @__PURE__ */ React16.createElement(
|
|
@@ -20923,20 +20820,20 @@ var init_app = __esm({
|
|
|
20923
20820
|
const scan = (currentDir) => {
|
|
20924
20821
|
if (fileList.length >= 2e3) return;
|
|
20925
20822
|
try {
|
|
20926
|
-
const files =
|
|
20823
|
+
const files = fs25.readdirSync(currentDir);
|
|
20927
20824
|
for (const file of files) {
|
|
20928
20825
|
if (fileList.length >= 2e3) return;
|
|
20929
20826
|
if (["node_modules", ".git", ".gemini", "dist", "build", ".next", ".cache", "out"].includes(file)) {
|
|
20930
20827
|
continue;
|
|
20931
20828
|
}
|
|
20932
|
-
const filePath =
|
|
20933
|
-
const stat =
|
|
20829
|
+
const filePath = path23.join(currentDir, file);
|
|
20830
|
+
const stat = fs25.statSync(filePath);
|
|
20934
20831
|
if (stat.isDirectory()) {
|
|
20935
20832
|
scan(filePath);
|
|
20936
20833
|
} else {
|
|
20937
20834
|
fileList.push({
|
|
20938
20835
|
name: flattenString(file),
|
|
20939
|
-
relativePath: flattenString(
|
|
20836
|
+
relativePath: flattenString(path23.relative(process.cwd(), filePath))
|
|
20940
20837
|
});
|
|
20941
20838
|
}
|
|
20942
20839
|
}
|
|
@@ -21040,7 +20937,7 @@ var init_app = __esm({
|
|
|
21040
20937
|
|
|
21041
20938
|
// src/cli.jsx
|
|
21042
20939
|
import { spawn as spawn3 } from "child_process";
|
|
21043
|
-
import { fileURLToPath as
|
|
20940
|
+
import { fileURLToPath as fileURLToPath4 } from "url";
|
|
21044
20941
|
import os6 from "os";
|
|
21045
20942
|
var totalSystemRamBytes = os6.totalmem();
|
|
21046
20943
|
var totalSystemRamMB = totalSystemRamBytes / (1024 * 1024);
|
|
@@ -21057,7 +20954,7 @@ if (!isNaN(_allocValue) && _allocValue < 64) {
|
|
|
21057
20954
|
}
|
|
21058
20955
|
var _maxAllowed = Math.floor(totalSystemRamMB * 0.75);
|
|
21059
20956
|
var HEAP_LIMIT = !isNaN(_allocValue) && _allocValue > 0 ? Math.min(_allocValue, _maxAllowed) : Math.max(1536, Math.min(32768, calculatedLimit));
|
|
21060
|
-
var isBundled =
|
|
20957
|
+
var isBundled = fileURLToPath4(import.meta.url).endsWith(".js");
|
|
21061
20958
|
if (isBundled && !process.execArgv.some((arg) => arg.includes("max-old-space-size"))) {
|
|
21062
20959
|
if (!Number.isNaN(_allocValue)) {
|
|
21063
20960
|
console.log(`
|
|
@@ -21068,7 +20965,7 @@ if (isBundled && !process.execArgv.some((arg) => arg.includes("max-old-space-siz
|
|
|
21068
20965
|
`--max-old-space-size=${HEAP_LIMIT}`,
|
|
21069
20966
|
`--expose-gc`,
|
|
21070
20967
|
`--max-semi-space-size=1`,
|
|
21071
|
-
|
|
20968
|
+
fileURLToPath4(import.meta.url),
|
|
21072
20969
|
...process.argv.slice(2)
|
|
21073
20970
|
], { stdio: "inherit" });
|
|
21074
20971
|
cp.on("exit", (code) => process.exit(code || 0));
|
|
@@ -21079,11 +20976,11 @@ if (isBundled && !process.execArgv.some((arg) => arg.includes("max-old-space-siz
|
|
|
21079
20976
|
const isVersion = args.includes("--version") || args.includes("-v");
|
|
21080
20977
|
const isUpdate = args[0] === "--update";
|
|
21081
20978
|
if (isVersion || isHelp || isHelpCommands || isUpdate) {
|
|
21082
|
-
const
|
|
21083
|
-
const
|
|
21084
|
-
const { fileURLToPath:
|
|
21085
|
-
const packageJsonPath2 =
|
|
21086
|
-
const packageJson2 = JSON.parse(
|
|
20979
|
+
const fs26 = await import("fs");
|
|
20980
|
+
const path24 = await import("path");
|
|
20981
|
+
const { fileURLToPath: fileURLToPath5 } = await import("url");
|
|
20982
|
+
const packageJsonPath2 = path24.join(path24.dirname(fileURLToPath5(import.meta.url)), "../package.json");
|
|
20983
|
+
const packageJson2 = JSON.parse(fs26.readFileSync(packageJsonPath2, "utf8"));
|
|
21087
20984
|
const versionFluxflow2 = packageJson2.version;
|
|
21088
20985
|
if (isVersion) {
|
|
21089
20986
|
console.log(`v${versionFluxflow2}`);
|