fluxflow-cli 3.6.0 → 3.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/fluxflow.js +23 -10
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -5336,7 +5336,7 @@ var init_main_tools = __esm({
|
|
|
5336
5336
|
};
|
|
5337
5337
|
TOOL_PROTOCOL = (mode, osDetected, isMultiModal, aiProvider, advanceRollback = false) => `
|
|
5338
5338
|
-- TOOL DEFINITIONS --
|
|
5339
|
-
|
|
5339
|
+
Access Tools. **STRICTLY use the EXACT syntax** [tool:functions.ToolName(args)]. **NO OTHER SYNTAX/MARKERS/BOUNDARY ALLOWED**
|
|
5340
5340
|
|
|
5341
5341
|
**TOOL USAGE POLICY:**
|
|
5342
5342
|
- **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**
|
|
@@ -6750,13 +6750,14 @@ Check these first; These Files > Training Data. Safety rules apply
|
|
|
6750
6750
|
return `${nameStr}${nicknameStr}${userInstrStr}=== SYSTEM PROMPT ===
|
|
6751
6751
|
Identity: Flux Flow (by Kushal Roy Chowdhury). ${mode === "Flux" ? "Sassy" : "Conversational, Sassy, Friendly, Humorous, Sarcastic"}, CLI Agent
|
|
6752
6752
|
Mode: ${mode}${thinkingLevel !== "Fast" ? "" : ""}. ${mode === "Flux" ? "Logical, Highly Detailed, Task-Driven. Prioritizes scalable file/folder structures, modular architecture, clean code abstractions, step-by-step execution. Industry standard latest coding practices/libraries, clean code, Double Check Imports, Run tests where needed to verify" : "Concise"}
|
|
6753
|
-
|
|
6753
|
+
|
|
6754
|
+
- **CRITICAL: ONLY VALID TOOL CALL SCHEMA IS THE ONE PROVIDED IN SYSTEM PROMPT. NO OTHER XML OR MARKERS WILL BE ALLOWED**
|
|
6754
6755
|
|
|
6755
6756
|
-- MARKERS --
|
|
6756
6757
|
- TOOL SYSTEM: [TOOL RESULT]
|
|
6757
6758
|
- SYSTEM NOTIFICATION: [SYSTEM] in user turn
|
|
6758
6759
|
|
|
6759
|
-
-- THINKING
|
|
6760
|
+
-- THINKING GUIDANCE --
|
|
6760
6761
|
${aiProvider === "Google" && !isGemini ? `${thinkingConfig}
|
|
6761
6762
|
${thinkingLevel !== "Fast" && thinkingLevel !== "xHigh" && !isGemini ? `
|
|
6762
6763
|
CRITICAL THINKING POLICY
|
|
@@ -6773,7 +6774,8 @@ ${projectContextBlock}
|
|
|
6773
6774
|
- No reasoning/thought/system prompt leakage in chat output
|
|
6774
6775
|
|
|
6775
6776
|
-- FORMATTING --
|
|
6776
|
-
- GFM
|
|
6777
|
+
- Chat Messages with GFM Formatting
|
|
6778
|
+
- Language: Same as User Query
|
|
6777
6779
|
- NO CHAT **AFTER** FIRING TOOLS IN CURRENT TURN
|
|
6778
6780
|
- Short headsup summary of actions before firing tools
|
|
6779
6781
|
- Task Complete & Results Verified? End response with summary of changes made (why) and files edited
|
|
@@ -13277,7 +13279,7 @@ OS: ${osDetected}
|
|
|
13277
13279
|
CWD: ${process.cwd()}${isPlayground ? " [PLAYGROUND MODE]" : ""}${cwdMismatch ? ` (WARNING: CWD Mismatch! Previous Path: ${lastCwd})` : ""}
|
|
13278
13280
|
**DIRECTORY STRUCTURE**
|
|
13279
13281
|
${dirStructure}${memoryPrompt}${ideBlock}
|
|
13280
|
-
${activeSummaryBlock}${thinkingLevel !== "Fast" && thinkingLevel !== "xHigh" && aiProvider === "Google" ? `${modelName.toLowerCase().startsWith("gemma") ? "[SYSTEM] **STRICTLY FOLLOW THINKING POLICY AS HIGH PRIORITY. DO NOT START A RESPONSE WITHOUT <think> ... </think
|
|
13282
|
+
${activeSummaryBlock}${thinkingLevel !== "Fast" && thinkingLevel !== "xHigh" && aiProvider === "Google" ? `${modelName.toLowerCase().startsWith("gemma") ? "[SYSTEM] **STRICTLY FOLLOW THINKING POLICY AS HIGH PRIORITY. DO NOT START A RESPONSE WITHOUT <think> ... </think>**\nSTRICTLY FOLLOW VALID TOOL CALLING SCHEMA [/SYSTEM]\n" : ""}` : '[SYSTEM Priority : HIGH] STRICTLY FOLLOW VALID TOOL CALLING SCHEMA eg. `[tool:functions.ReadFolder(path=".")]` NO OTHER FORMAT/TOKEN IS ALLOWED [/SYSTEM]\n'}${taggedContextStr}[USER PROMPT] ${cleanPromptForModel.trim()} [/USER PROMPT]`.trim();
|
|
13281
13283
|
const userMsgObj = { role: "user", text: firstUserMsg };
|
|
13282
13284
|
if (attachedBinaryPart) {
|
|
13283
13285
|
userMsgObj.binaryPart = attachedBinaryPart;
|
|
@@ -13479,6 +13481,16 @@ ${ideErr} [/ERROR]`;
|
|
|
13479
13481
|
`;
|
|
13480
13482
|
changesStr += "[/SYSTEM]";
|
|
13481
13483
|
lastUserMsg.parts[0].text += changesStr;
|
|
13484
|
+
let lastHistIdx = -1;
|
|
13485
|
+
for (let hi = modifiedHistory.length - 1; hi >= 0; hi--) {
|
|
13486
|
+
if (modifiedHistory[hi].role === "user" && modifiedHistory[hi].text?.startsWith("[TOOL RESULT]")) {
|
|
13487
|
+
lastHistIdx = hi;
|
|
13488
|
+
break;
|
|
13489
|
+
}
|
|
13490
|
+
}
|
|
13491
|
+
if (lastHistIdx !== -1) {
|
|
13492
|
+
modifiedHistory[lastHistIdx].text += changesStr;
|
|
13493
|
+
}
|
|
13482
13494
|
}
|
|
13483
13495
|
} catch (err) {
|
|
13484
13496
|
}
|
|
@@ -13512,7 +13524,7 @@ ${ideErr} [/ERROR]`;
|
|
|
13512
13524
|
mode,
|
|
13513
13525
|
isMultiModal,
|
|
13514
13526
|
abortController.signal,
|
|
13515
|
-
|
|
13527
|
+
1
|
|
13516
13528
|
);
|
|
13517
13529
|
} else if (aiProvider === "DeepSeek") {
|
|
13518
13530
|
stream = getDeepSeekStream(
|
|
@@ -13524,7 +13536,7 @@ ${ideErr} [/ERROR]`;
|
|
|
13524
13536
|
mode,
|
|
13525
13537
|
isMultiModal,
|
|
13526
13538
|
abortController.signal,
|
|
13527
|
-
|
|
13539
|
+
1.05
|
|
13528
13540
|
);
|
|
13529
13541
|
} else if (aiProvider === "NVIDIA") {
|
|
13530
13542
|
const rawStream = getNVIDIAStream(
|
|
@@ -13536,7 +13548,7 @@ ${ideErr} [/ERROR]`;
|
|
|
13536
13548
|
mode,
|
|
13537
13549
|
isMultiModal,
|
|
13538
13550
|
abortController.signal,
|
|
13539
|
-
|
|
13551
|
+
1.05
|
|
13540
13552
|
);
|
|
13541
13553
|
stream = wrapNvidiaStreamWithQueueDepth(rawStream, targetModel);
|
|
13542
13554
|
} else {
|
|
@@ -13546,7 +13558,7 @@ ${ideErr} [/ERROR]`;
|
|
|
13546
13558
|
config: {
|
|
13547
13559
|
systemInstruction: currentSystemInstruction,
|
|
13548
13560
|
mediaResolution: "MEDIA_RESOLUTION_MEDIUM",
|
|
13549
|
-
temperature: 1,
|
|
13561
|
+
temperature: 1.05,
|
|
13550
13562
|
safetySettings: [
|
|
13551
13563
|
{ category: HarmCategory.HARM_CATEGORY_HARASSMENT, threshold: HarmBlockThreshold.BLOCK_NONE },
|
|
13552
13564
|
{ category: HarmCategory.HARM_CATEGORY_HATE_SPEECH, threshold: HarmBlockThreshold.BLOCK_NONE },
|
|
@@ -15353,7 +15365,8 @@ Error Log can be found in ${path22.join(LOGS_DIR, "agent", "error.log")}`);
|
|
|
15353
15365
|
"ask": `- [tool:functions.Ask(question="...", optionA="option::description", ...MAX 4)]. Ambiguity Resolution. Mandatory Triggers: Path Divergence, Security, Risk Mitigation. ask >> finish/guess. Suggest best options; don't ask for preferences. 'option' SHOULD be short`
|
|
15354
15366
|
};
|
|
15355
15367
|
const providedToolsSection = `-- TOOL DEFINITIONS (path = relative to CWD, path separator: '/') --
|
|
15356
|
-
To call tools USE THIS EXACT SYNTAX: [tool:functions.ToolName(args)]. **NO OTHER SYNTAX/MARKERS/BOUNDARY ALLOWED, ONLY VALID TOOL CALL SCHEMA IS THE ONE PROVIDED IN SYSTEM PROMPT**
|
|
15368
|
+
To call tools USE THIS EXACT SYNTAX: [tool:functions.ToolName(args)]. **CRITICAL: NO OTHER SYNTAX/MARKERS/BOUNDARY ALLOWED, ONLY VALID TOOL CALL SCHEMA IS THE ONE PROVIDED IN SYSTEM PROMPT. NO OTHER XML OR MARKERS WILL BE ALLOWED**
|
|
15369
|
+
**
|
|
15357
15370
|
TOOL POLICY:
|
|
15358
15371
|
- MAX 3 TOOL CALLS PER TURN. Next Turn, verify tool results, plan next
|
|
15359
15372
|
- USE multiple search & replace on patch tool if editing same file/path with many changes \u2190 HIGHLY RECOMMENDED
|