fluxflow-cli 1.9.14 → 1.9.15
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 +21 -32
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -875,17 +875,16 @@ Have access to internal tools. To call a tool, MUST use the following exact synt
|
|
|
875
875
|
[tool:functions.tool_name(arguments)]
|
|
876
876
|
|
|
877
877
|
- COMMUNICATION TOOLS -
|
|
878
|
-
1. Ask User: [tool:functions.ask(question="...", optionA="...", ...)]. Ambiguity Resolution. Mandatory Triggers: Path Divergence
|
|
879
|
-
|
|
878
|
+
1. Ask User: [tool:functions.ask(question="...", optionA="...", ...)]. Ambiguity Resolution. Mandatory Triggers: Path Divergence, Security, Risk Mitigation. ask >> finish
|
|
879
|
+
Suggest best options; don't ask for preferences. System handles the rest
|
|
880
880
|
|
|
881
881
|
- WEB TOOLS -
|
|
882
|
-
1. Web Search: [tool:functions.web_search(query="...", limit=number)]. Find info (limit 3-10
|
|
882
|
+
1. Web Search: [tool:functions.web_search(query="...", limit=number)]. Find info (limit 3-10). Proactive use for unknown topics${mode === "Flux" ? " or docs" : ""}
|
|
883
883
|
2. Web Scrape: [tool:functions.web_scrape(url="<url>")]. Provides detail from a URL
|
|
884
884
|
|
|
885
|
-
${mode === "Flux" ?
|
|
886
|
-
- DEV TOOLS (path will always be relative to CWD) -
|
|
885
|
+
${mode === "Flux" ? `- DEV TOOLS (path = relative to CWD) -
|
|
887
886
|
1. View File: [tool:functions.view_file(path="...", start_line=N, end_line=N)]. Reads contents. Supports images/docs. User gives image/doc: VIEW FIRST
|
|
888
|
-
2. Read Folder: [tool:functions.read_folder(path="...")]. Detailed stats
|
|
887
|
+
2. Read Folder: [tool:functions.read_folder(path="...")]. Detailed DIR stats
|
|
889
888
|
3. Write File: [tool:functions.write_file(path="...", content="content to write")]. Creates/Overwrites. File Exist? -> update_file > write_file
|
|
890
889
|
4. Update File: [tool:functions.update_file(path="...", content_to_replace="old conten as you see it", content_to_add="new content to be added")]. Surgical patching. Unsure content_to_replace? -> use view_file >> guessing.
|
|
891
890
|
5. Write PDF: [tool:functions.write_pdf(path="...", content="html", orientation="...")]. A4 PDF. Use CSS for layout (100vh/vw). Handle page breaks pro-actively; no manual footers
|
|
@@ -893,7 +892,7 @@ ${mode === "Flux" ? `
|
|
|
893
892
|
7. PPTX: [tool:functions.write_pptx(path="...", content="html")]. 4:3 PPTX. '---' for slides
|
|
894
893
|
Tags: a,b,br,del,font,h1-h6,i,ol,ul,li,p,pre,s,sub,sup,u
|
|
895
894
|
CSS: background-color,color,font-family,font-size(pt),font-style,font-weight,margin,text-align,text-shadow
|
|
896
|
-
8. Execution: [tool:functions.exec_command(command="command")]. Runs a shell command.
|
|
895
|
+
8. Execution: [tool:functions.exec_command(command="command")]. Runs a shell command. Destructive/Irreversible ops -> ask user
|
|
897
896
|
9. Search: [tool:functions.search_keyword(keyword="...")]. Global search. Finds definitions/logic without reading every file
|
|
898
897
|
|
|
899
898
|
- VERIFY SUCCESS CONTENTS. Fix errors. No hallucinations.
|
|
@@ -906,8 +905,7 @@ CSS: background-color,color,font-family,font-size(pt),font-style,font-weight,mar
|
|
|
906
905
|
|
|
907
906
|
- Results: Passed as [TOOL_RESULT] (SYSTEM), USER_PROMPT (USER)
|
|
908
907
|
- Tool calls: End with [turn: continue]. Only use [turn: finish] after verifying goals
|
|
909
|
-
- Multi-call: Stack 1-by-1. Upto
|
|
910
|
-
-- END TOOL DEFINITIONS --`.trim();
|
|
908
|
+
- Multi-call: Stack 1-by-1. Upto 3`.trim();
|
|
911
909
|
}
|
|
912
910
|
});
|
|
913
911
|
|
|
@@ -918,9 +916,7 @@ var init_janitor_tools = __esm({
|
|
|
918
916
|
JANITOR_TOOLS_PROTOCOL = (isMemoryEnabled = true, needTitle = true) => `
|
|
919
917
|
${needTitle ? `-- CHAT MANAGEMENT TOOLS --
|
|
920
918
|
1. YOU MUST UPDATE CHAT TITLE (URGENT PRIORITY):
|
|
921
|
-
[tool:functions.chat(title='<short creative title of FULL conversation in 3-5 words>')]. Consider full chat context to generate title NOT just latest message
|
|
922
|
-
-- END CHAT MANAGEMENT TOOLS --
|
|
923
|
-
`.trimEnd() : ""}
|
|
919
|
+
[tool:functions.chat(title='<short creative title of FULL conversation in 3-5 words>')]. Consider full chat context to generate title NOT just latest message.`.trimEnd() : ""}
|
|
924
920
|
-- MEMORY TOOLS (YOU SHOULD NOT OUTPUT ANYTHING OTHER THAN THESE SPECIFIC TOOLS) --
|
|
925
921
|
Your tool syntax is: '[tool:functions.function_name(args...)]'
|
|
926
922
|
You have access to the following memory functions to persist important information:
|
|
@@ -935,8 +931,7 @@ ${isMemoryEnabled ? `2. User-specific long-term memory (USE BASED ON CONVERSATIO
|
|
|
935
931
|
|
|
936
932
|
Usage Rules:
|
|
937
933
|
- Frequency for 'user' action: Only when explicit context from chat is found or explicitly requested by the user.
|
|
938
|
-
- IF YOU WANT TO SAVE SOMETHING, BUT SIMILAR MEMORY ALREADY EXISTS, USE THE UPDATE METHOD NOT THE ADD METHOD` : ""}
|
|
939
|
-
-- END MEMORY TOOLS --`.trim();
|
|
934
|
+
- IF YOU WANT TO SAVE SOMETHING, BUT SIMILAR MEMORY ALREADY EXISTS, USE THE UPDATE METHOD NOT THE ADD METHOD` : ""}`.trim();
|
|
940
935
|
}
|
|
941
936
|
});
|
|
942
937
|
|
|
@@ -975,13 +970,13 @@ var init_prompts = __esm({
|
|
|
975
970
|
if (!isMemoryEnabled) return "";
|
|
976
971
|
const tempMemoriesStr = tempMemories?.length > 0 && !isContext32k ? `-- RECENT CONTEXT FROM OTHER CHATS (PRIORITY: LOW, MAIN FOCUS: Chat Context > Recent) --
|
|
977
972
|
${tempMemories}
|
|
978
|
-
|
|
973
|
+
` : "";
|
|
979
974
|
const userMemoriesStr = userMemories?.length > 0 ? `--- SAVED MEMORIES (PRIORITY: MEDIUM, TUNES USER PREFERENCES) ---
|
|
980
975
|
${userMemories}
|
|
981
|
-
|
|
976
|
+
` : "";
|
|
982
977
|
const parts = [userMemoriesStr, tempMemoriesStr].filter((p) => p.length > 0);
|
|
983
|
-
return parts.length > 0 ? `[SYSTEM CONTEXT
|
|
984
|
-
|
|
978
|
+
return parts.length > 0 ? `[SYSTEM CONTEXT]
|
|
979
|
+
${parts.join("\n\n")}
|
|
985
980
|
` : "";
|
|
986
981
|
};
|
|
987
982
|
getSystemInstruction = (profile, thinkingLevel, mode, systemSettings, isMemoryEnabled = true, maxLoops, currentLoop) => {
|
|
@@ -1022,8 +1017,7 @@ ${userMemories}
|
|
|
1022
1017
|
const projectContextBlock = mode === "Flux" && foundFiles.length > 0 ? `
|
|
1023
1018
|
-- PROJECT CONTEXT (Source of Truth) --
|
|
1024
1019
|
${foundFiles.map((f) => `- ${f.name}: ${f.desc}`).join("\n")}
|
|
1025
|
-
Check these first; they override general training data for project consistency. Safety rules still apply
|
|
1026
|
-
-- END PROJECT CONTEXT --` : "";
|
|
1020
|
+
Check these first; they override general training data for project consistency. Safety rules still apply` : "";
|
|
1027
1021
|
return `${nameStr}${nicknameStr}${userInstrStr}
|
|
1028
1022
|
=== SYSTEM INSTRUCTION (STRICT PRIORITY, OVERRIDES EVERYTHING) ===
|
|
1029
1023
|
Identity: Flux Flow (by Kushal Roy Chowdhury). Sassy, Friendly CLI Agent. No flirting
|
|
@@ -1037,37 +1031,32 @@ ${thinkingConfig}
|
|
|
1037
1031
|
- Always use <think> ... </think> before answering or using any tool
|
|
1038
1032
|
- Never skip thinking, even for simple tasks, code, or greetings
|
|
1039
1033
|
- Never jump to responses directly, regardless of task complexity or speed
|
|
1040
|
-
-- END THINKING INSTRUCTIONS --
|
|
1041
1034
|
|
|
1042
1035
|
${TOOL_PROTOCOL(mode)}
|
|
1043
1036
|
${projectContextBlock}
|
|
1044
1037
|
|
|
1045
1038
|
-- MEMORY INSTRUCTIONS --
|
|
1046
|
-
- Memory: ${isMemoryEnabled ? "Use
|
|
1047
|
-
- Time:
|
|
1048
|
-
-- END MEMORY INSTRUCTIONS --
|
|
1039
|
+
- Memory: ${isMemoryEnabled ? "Use memories to subtly personalize" : "OFF (tell user to enable in /settings if needed)"}
|
|
1040
|
+
- Time: Logs are timestamped. Use **relative time** (e.g., few mins ago, few hours ago), never absolute
|
|
1049
1041
|
|
|
1050
1042
|
-- SECURITY BOUNDARY --
|
|
1051
|
-
-
|
|
1043
|
+
- EXTERNAL WORKSPACE ACCESS: ${systemSettings.allowExternalAccess ? "ENABLED" : "RESTRICTED (CWD only)"}
|
|
1052
1044
|
- Safety: Ask permission before reading sensitive files
|
|
1053
|
-
-- END SECURITY BOUNDARY --
|
|
1054
1045
|
|
|
1055
1046
|
-- TEMPORAL AWARENESS --
|
|
1056
1047
|
Every ${isMemoryEnabled ? "Prompt, Responses & Memories" : "Prompt & Responses"} are time stamped. You can use those times if temporal context is required. If recalled from ${isMemoryEnabled ? "Memories, Prompts, or Responses" : "Prompts, or Responses"}. NEVER use absolute time in your responses, ALWAYS use relative time from current time
|
|
1057
|
-
-- END TEMPORAL AWARENESS --
|
|
1058
1048
|
|
|
1059
1049
|
-- FORMATTING --
|
|
1060
1050
|
- Clean, concise responses. File updates > code text
|
|
1061
1051
|
- Tables: GFM (Max 4 cols, short rows). Use sparingly
|
|
1062
|
-
- NO LaTeX. Code blocks for literature
|
|
1052
|
+
- NO LaTeX. Code blocks for literature. Kaomojis > emojis
|
|
1063
1053
|
|
|
1064
1054
|
-- RESPONSE PROTOCOL --
|
|
1065
1055
|
- End with [turn: continue] for more steps or [turn: finish] when done
|
|
1066
1056
|
- Multi-tool: Stack tools if needed, but always end with [turn: continue] if called any tools
|
|
1067
1057
|
TO END THE LOOP YOU **MUST** WRITE [turn: finish] AT VERY END OF YOUR RESPONSE
|
|
1068
|
-
-- END RESPONSE PROTOCOL --
|
|
1069
1058
|
|
|
1070
|
-
[METADATA (PRIORITY: DYNAMIC)] Time: ${dateTimeStr} | v1.9.
|
|
1059
|
+
[METADATA (PRIORITY: DYNAMIC)] Time: ${dateTimeStr} | v1.9.15 | Turn Progress: ${currentLoop}/${maxLoops} steps (Prompt user if reached)
|
|
1071
1060
|
=== END SYSTEM INSTRUCTION ===`.trim();
|
|
1072
1061
|
};
|
|
1073
1062
|
getJanitorInstruction = (originalText, agentRaws, userMemories = "", isMemoryEnabled = true, needTitle = true) => {
|
|
@@ -5635,8 +5624,8 @@ var init_app = __esm({
|
|
|
5635
5624
|
init_text();
|
|
5636
5625
|
SESSION_START_TIME = Date.now();
|
|
5637
5626
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog.html";
|
|
5638
|
-
versionFluxflow = "1.9.
|
|
5639
|
-
updatedOn = "2026-05-
|
|
5627
|
+
versionFluxflow = "1.9.15";
|
|
5628
|
+
updatedOn = "2026-05-16";
|
|
5640
5629
|
ResolutionModal = ({ data, onResolve, onEdit }) => /* @__PURE__ */ React10.createElement(Box10, { flexDirection: "column", borderStyle: "round", borderColor: "gray", padding: 0, width: "100%" }, /* @__PURE__ */ React10.createElement(Box10, { paddingX: 1 }, /* @__PURE__ */ React10.createElement(Text10, { color: "magenta", bold: true, underline: true }, "\u{1F7E3} STEERING HINT RESOLUTION")), /* @__PURE__ */ React10.createElement(Box10, { paddingX: 1, marginTop: 1 }, /* @__PURE__ */ React10.createElement(Text10, null, "The agent already finished the task before your hint was consumed.")), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 1, backgroundColor: "#222", paddingX: 2, width: "100%" }, /* @__PURE__ */ React10.createElement(Text10, { italic: true, color: "gray" }, '"', data, '"')), /* @__PURE__ */ React10.createElement(Box10, { paddingX: 1, marginTop: 1 }, /* @__PURE__ */ React10.createElement(Text10, { color: "cyan" }, "How would you like to proceed?")), /* @__PURE__ */ React10.createElement(Box10, { marginTop: 0 }, /* @__PURE__ */ React10.createElement(
|
|
5641
5630
|
CommandMenu,
|
|
5642
5631
|
{
|