fluxflow-cli 1.9.12 → 1.9.13
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 +3 -3
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -973,7 +973,7 @@ var init_prompts = __esm({
|
|
|
973
973
|
init_thinking_prompts();
|
|
974
974
|
getMemoryPrompt = (tempMemories = "", userMemories = "", isMemoryEnabled = true, isContext32k = false) => {
|
|
975
975
|
if (!isMemoryEnabled) return "";
|
|
976
|
-
const tempMemoriesStr = tempMemories?.length > 0 && !isContext32k ? `-- RECENT CONTEXT FROM OTHER CHATS (PRIORITY:
|
|
976
|
+
const tempMemoriesStr = tempMemories?.length > 0 && !isContext32k ? `-- RECENT CONTEXT FROM OTHER CHATS (PRIORITY: LOWEST, MAIN FOCUS: Chat Context > Recent) --
|
|
977
977
|
${tempMemories}
|
|
978
978
|
-- END RECENT CONTEXT --` : "";
|
|
979
979
|
const userMemoriesStr = userMemories?.length > 0 ? `--- SAVED MEMORIES (PRIORITY: MEDIUM, TUNES USER PREFERENCES) ---
|
|
@@ -1066,7 +1066,7 @@ Every ${isMemoryEnabled ? "Prompt, Responses & Memories" : "Prompt & Responses"}
|
|
|
1066
1066
|
TO END THE LOOP YOU **MUST** WRITE [turn: finish] AT VERY END OF YOUR RESPONSE.
|
|
1067
1067
|
-- END RESPONSE PROTOCOL --
|
|
1068
1068
|
|
|
1069
|
-
[METADATA (PRIORITY: DYNAMIC)] Time: ${dateTimeStr} | v1.9.
|
|
1069
|
+
[METADATA (PRIORITY: DYNAMIC)] Time: ${dateTimeStr} | v1.9.13 | Turn Progress: ${currentLoop}/${maxLoops} steps (Summarize & prompt user if limit is reached).
|
|
1070
1070
|
=== END SYSTEM INSTRUCTION ===`.trim();
|
|
1071
1071
|
};
|
|
1072
1072
|
getJanitorInstruction = (originalText, agentRaws, userMemories = "", isMemoryEnabled = true, needTitle = true) => {
|
|
@@ -5634,7 +5634,7 @@ var init_app = __esm({
|
|
|
5634
5634
|
init_text();
|
|
5635
5635
|
SESSION_START_TIME = Date.now();
|
|
5636
5636
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog.html";
|
|
5637
|
-
versionFluxflow = "1.9.
|
|
5637
|
+
versionFluxflow = "1.9.13";
|
|
5638
5638
|
updatedOn = "2026-05-15";
|
|
5639
5639
|
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(
|
|
5640
5640
|
CommandMenu,
|