fluxflow-cli 1.7.11 → 1.7.12
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 +2 -2
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -2488,7 +2488,7 @@ USER_PROMPT: ${agentText}`.trim();
|
|
|
2488
2488
|
const thinkBlocks = turnText.match(/<think>([\s\S]*?)(?:<\/think>|$)/gi) || [];
|
|
2489
2489
|
const thinkContent = thinkBlocks.join("");
|
|
2490
2490
|
const headingsCount = (thinkContent.match(/\*\*.*?\*\*/g) || []).length;
|
|
2491
|
-
if (headingsCount >
|
|
2491
|
+
if (headingsCount > 35) {
|
|
2492
2492
|
yield { type: "status", content: "Loop Detected. Restarting internal loop." };
|
|
2493
2493
|
await new Promise((resolve) => setTimeout(resolve, 3e3));
|
|
2494
2494
|
break;
|
|
@@ -4652,7 +4652,7 @@ var init_app = __esm({
|
|
|
4652
4652
|
init_setup();
|
|
4653
4653
|
SESSION_START_TIME = Date.now();
|
|
4654
4654
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog.html";
|
|
4655
|
-
versionFluxflow = "1.7.
|
|
4655
|
+
versionFluxflow = "1.7.12";
|
|
4656
4656
|
updatedOn = "2026-05-04";
|
|
4657
4657
|
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 (turn: finish) 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(
|
|
4658
4658
|
CommandMenu,
|