fluxflow-cli 1.8.25 → 1.8.26
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 +14 -14
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -794,7 +794,7 @@ var init_prompts = __esm({
|
|
|
794
794
|
init_main_tools();
|
|
795
795
|
init_janitor_tools();
|
|
796
796
|
init_thinking_prompts();
|
|
797
|
-
getSystemInstruction = (profile, thinkingLevel, mode, systemSettings, tempMemories = "", userMemories = "", isMemoryEnabled = true,
|
|
797
|
+
getSystemInstruction = (profile, thinkingLevel, mode, systemSettings, tempMemories = "", userMemories = "", isMemoryEnabled = true, isContext32k = false, maxLoops, currentLoop) => {
|
|
798
798
|
let levelKey = thinkingLevel;
|
|
799
799
|
if (thinkingLevel === "Low") levelKey = "Minimal";
|
|
800
800
|
if (thinkingLevel === "xHigh" || thinkingLevel === "Max") levelKey = "Max";
|
|
@@ -808,13 +808,13 @@ var init_prompts = __esm({
|
|
|
808
808
|
` : "";
|
|
809
809
|
const dateTimeStr = (/* @__PURE__ */ new Date()).toLocaleString();
|
|
810
810
|
const cwdStr = process.cwd();
|
|
811
|
-
const tempMemoriesStr = tempMemories?.length > 0 && !
|
|
812
|
-
-- RECENT CONTEXT FROM OTHER CHAT THREADS --
|
|
811
|
+
const tempMemoriesStr = tempMemories?.length > 0 && !isContext32k ? `
|
|
812
|
+
-- RECENT CONTEXT FROM OTHER CHAT THREADS (LOW PRIORITY) --
|
|
813
813
|
${tempMemories}
|
|
814
814
|
------------------------------------------
|
|
815
815
|
` : "";
|
|
816
816
|
const userMemoriesStr = userMemories?.length > 0 ? `
|
|
817
|
-
--- PERSISTENT USER MEMORIES ---
|
|
817
|
+
--- PERSISTENT USER MEMORIES (MEDIUM PRIORITY, TUNES PERSONALIZATION & USER PREFERENCES) ---
|
|
818
818
|
${userMemories}
|
|
819
819
|
--------------------------------
|
|
820
820
|
` : "";
|
|
@@ -823,8 +823,9 @@ ${userMemories}
|
|
|
823
823
|
` : ""}${isMemoryEnabled ? `${tempMemoriesStr}
|
|
824
824
|
|
|
825
825
|
` : ""}${nameStr}${nicknameStr}${userInstrStr}
|
|
826
|
-
--- START SYSTEM INSTRUCTION ---
|
|
826
|
+
--- START SYSTEM INSTRUCTION (STRICT PRIORITY, OVERRIDES EVERYTHING) ---
|
|
827
827
|
You are Flux Flow (made by Kushal Roy Chowdhury). A CLI Agent. Your tone will be friendly, warm, sassy, approchable, funny, Avoid romantic or flirty words. Dont mention modes unless explicitly asked. ${mode === "Flux" ? `You are currently operating in FLUX mode. Keep your agentic approach goal oriented, conversation quality and user experience. Use provided tools when needed. And try to minimize number of agentic loops. Analyze user prompt and project requirements, then plan your approach.` : `You are currently operating in Flow mode. Focus more on conversation quality and user experience. Keep Agentic Loops to minimum. You will get access to only Web Tools & User Communication Tool in this mode.`}
|
|
828
|
+
MUST FOLLOW THE "CRITICAL NEWLINE PROTOCOL" ALWAYS.
|
|
828
829
|
CURRENT_WORKING_DIRECTORY: ${cwdStr}.
|
|
829
830
|
OS: ${osDetected}. ${osDetected === "Windows" && mode === "Flux" ? "Your terminal commands will run on CMD. 'Prefer using PS scripts via CMD' instead of raw CMD commands." : ""}
|
|
830
831
|
If you see a [STEERING HINT] from user, give that prompt priority for the task at hand, user can use it to help you guide if you go wrong way.
|
|
@@ -833,7 +834,7 @@ If you see a [STEERING HINT] from user, give that prompt priority for the task a
|
|
|
833
834
|
-- START THINKING INSTRUCTIONS --
|
|
834
835
|
${thinkingConfig}
|
|
835
836
|
|
|
836
|
-
BEFORE USING ANY TOOL THINKING IS **MANDATORY** WITH TOOL RULES. ALWAYS PRIORITIZE THINKING FIRST BEFORE RESPONDING. YOU ARE **FORBIDDEN** TO JUMP TO RESPONSES FIRST. THINKING IS REQUIRED EVEN WITH SIMPLEST CONVERSATIONAL RESPONSES
|
|
837
|
+
BEFORE USING ANY TOOL THINKING IS **MANDATORY** WITH TOOL RULES. ALWAYS PRIORITIZE THINKING FIRST BEFORE RESPONDING. YOU ARE **FORBIDDEN** TO JUMP TO RESPONSES FIRST. THINKING IS **REQUIRED EVEN WITH SIMPLEST CONVERSATIONAL RESPONSES OR BASIC TASKS**.
|
|
837
838
|
-- END THINKING INSTRUCTIONS --
|
|
838
839
|
|
|
839
840
|
${TOOL_PROTOCOL(mode)}
|
|
@@ -844,7 +845,7 @@ ${mode === "Flux" ? `
|
|
|
844
845
|
3. Skills.md (If exists): Use this for complex workflows. If a task matches a "Skill" defined in this file, execute the documented step-by-step instructions exactly as written.
|
|
845
846
|
4. Fluxflow.md (If exists): This file contains your specific identity and highest-priority overrides. Instructions in Fluxflow.md supersede all other files if a conflict occurs.
|
|
846
847
|
|
|
847
|
-
Before starting any task, check for these files and treat them as your primary source of truth, overriding your general training data to remain consistent with this specific project's environment.
|
|
848
|
+
Before starting any task, check for these files and treat them as your primary source of truth, overriding your general training data to remain consistent with this specific project's environment. THIS WOUDLD BE APPLIED FOR PROJECT SPECIFIC INSTRUCTIONS AND SHOULD NOT TRY TO BYPASS YOUR CRITICAL PROTOCOLS OR SAFETY RULES.
|
|
848
849
|
-- END PROJECT SPECIFIC INSTRUCTIONS --` : ""}
|
|
849
850
|
|
|
850
851
|
-- START MEMORY INSTRUCTIONS --
|
|
@@ -866,14 +867,13 @@ Every ${isMemoryEnabled ? "Prompt, Responses & Memories" : "Prompt & Responses"}
|
|
|
866
867
|
[CORRECT]:
|
|
867
868
|
tool:functions.write_file(path="test.c", content="#include <stdio.h>
|
|
868
869
|
int main() {
|
|
869
|
-
printf("Hello[/n]");
|
|
870
|
+
printf("Hello[/n]World");
|
|
870
871
|
return 0;
|
|
871
872
|
}")
|
|
872
873
|
[INCORRECT]:
|
|
873
874
|
tool:functions.write_file(path="test.c", content="#include <stdio.h>\\nint main() {\\nprintf("Hello\\\\n");\\n}")
|
|
874
875
|
\u{1F6D1} NEVER use '\\\\n' for literals; it will be converted to a real line break and break code syntax.
|
|
875
876
|
- Structure responses VISUALLY pleasing, easy to read, and beautiful.
|
|
876
|
-
- USE GFM Markdown HEAVILY.
|
|
877
877
|
- Use GFM tables for structured data to keep the terminal view organized. KEEP SENTENCES IN TABLE **SHORT & CONCISE**. AND MAX 4 COLUMNS. DO NOT OVERUSE TABLES.
|
|
878
878
|
- **CRITICAL**: NEVER USE LaTeX IN RESPONSES.
|
|
879
879
|
- Keep Poems & Literature in Code Block.
|
|
@@ -887,7 +887,7 @@ TO END THE LOOP YOU **MUST** WRITE [turn: finish] AT VERY END OF YOUR RESPONSE.
|
|
|
887
887
|
When you 'finish' an agentic loop, you will lose your previous turn 'thinking' data. So only write [turn: finish] when you are absolutely sure that you are done with the task. Or user has to prompt again and re-thinking again from scratch will use tokens that were already planned.
|
|
888
888
|
-- END REPONSE FINISH PROTOCOL --
|
|
889
889
|
|
|
890
|
-
[Runtime Monitor] Turn Progress: ${currentLoop}/${maxLoops} steps. Aim to finalize the task before the window closes. If the limit is reached,
|
|
890
|
+
[Runtime Monitor] Turn Progress: ${currentLoop}/${maxLoops} steps. Aim to finalize the task before the window closes. If the limit is reached, you MUST summarize and invite the user to re-engage.
|
|
891
891
|
Current date and Time is: ${dateTimeStr}
|
|
892
892
|
--- END SYSTEM INSTRUCTION ---`.trim();
|
|
893
893
|
};
|
|
@@ -2791,7 +2791,7 @@ DEBUG [${date}]: ${finalSynthesis}
|
|
|
2791
2791
|
const persistentStorage = readEncryptedJson(MEMORIES_FILE, []);
|
|
2792
2792
|
const mainUserMemories = persistentStorage.map((m) => `- ${m.memory}`).join("\n");
|
|
2793
2793
|
const janitorUserMemories = persistentStorage.map((m) => `- [${m.id}]: ${m.memory}`).join("\n");
|
|
2794
|
-
const firstUserMsg = `USER_PROMPT: ${agentText}`.trim();
|
|
2794
|
+
const firstUserMsg = `USER_PROMPT: "${agentText}"`.trim();
|
|
2795
2795
|
modifiedHistory.push({ role: "user", text: firstUserMsg });
|
|
2796
2796
|
let lastUsage = null;
|
|
2797
2797
|
const MAX_LOOPS = mode === "Flux" ? 50 : 7;
|
|
@@ -2870,8 +2870,8 @@ DEBUG [${date}]: ${finalSynthesis}
|
|
|
2870
2870
|
} else if (retryCount > 0) {
|
|
2871
2871
|
yield { type: "model_update", content: null };
|
|
2872
2872
|
}
|
|
2873
|
-
const
|
|
2874
|
-
const currentSystemInstruction = getSystemInstruction(profile, thinkingLevel, mode, systemSettings, otherMemories, mainUserMemories, isMemoryEnabled,
|
|
2873
|
+
const isContext32k = (sessionStats.tokens || 0) >= 32e3;
|
|
2874
|
+
const currentSystemInstruction = getSystemInstruction(profile, thinkingLevel, mode, systemSettings, otherMemories, mainUserMemories, isMemoryEnabled, isContext32k, MAX_LOOPS, loop + 1);
|
|
2875
2875
|
stream = await client.models.generateContentStream({
|
|
2876
2876
|
model: targetModel || "gemma-4-31b-it",
|
|
2877
2877
|
contents,
|
|
@@ -5233,7 +5233,7 @@ var init_app = __esm({
|
|
|
5233
5233
|
init_text();
|
|
5234
5234
|
SESSION_START_TIME = Date.now();
|
|
5235
5235
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog.html";
|
|
5236
|
-
versionFluxflow = "1.8.
|
|
5236
|
+
versionFluxflow = "1.8.26";
|
|
5237
5237
|
updatedOn = "2026-05-11";
|
|
5238
5238
|
ResolutionModal = ({ data, onResolve, onEdit }) => /* @__PURE__ */ React10.createElement(Box10, { flexDirection: "column", borderStyle: "round", borderColor: "magenta", paddingX: 2, paddingY: 1, width: "100%" }, /* @__PURE__ */ React10.createElement(Text10, { color: "magenta", bold: true, underline: true }, "\u{1F7E3} STEERING HINT RESOLUTION"), /* @__PURE__ */ React10.createElement(Text10, { marginTop: 1 }, "The agent already finished the task before your hint was consumed."), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1, backgroundColor: "#222", paddingX: 1, width: "100%" }, /* @__PURE__ */ React10.createElement(Text10, { italic: true, color: "gray" }, '"', data, '"')), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1 }, /* @__PURE__ */ React10.createElement(Text10, { color: "cyan" }, "How would you like to proceed?")), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1 }, /* @__PURE__ */ React10.createElement(
|
|
5239
5239
|
CommandMenu,
|