fluxflow-cli 1.7.6 → 1.7.7
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
|
@@ -1663,7 +1663,7 @@ ${lines.map((l, i) => `${i + 1} | ${l}`).join("\n")}
|
|
|
1663
1663
|
const verifiedLineCount = verifiedLines.length;
|
|
1664
1664
|
if (verifiedSize === 0 && originalSize > 0) {
|
|
1665
1665
|
verifiedContent = null;
|
|
1666
|
-
return `CRITICAL FAILURE: Verification failed. File [${targetPath}] is empty on disk despite success report!`;
|
|
1666
|
+
return `ERROR: CRITICAL FAILURE: Verification failed. File [${targetPath}] is empty on disk despite success report!`;
|
|
1667
1667
|
}
|
|
1668
1668
|
let snippet = "";
|
|
1669
1669
|
if (verifiedLineCount <= 200) {
|
|
@@ -1865,7 +1865,7 @@ ${stderr}`);
|
|
|
1865
1865
|
if (code !== 0) result.push(`EXIT CODE: ${code}`);
|
|
1866
1866
|
const finalOutput = result.join("\n\n") || "Command executed with no output.";
|
|
1867
1867
|
if (code !== 0) {
|
|
1868
|
-
resolve(`
|
|
1868
|
+
resolve(`ERROR: Command [${command}] failed with exit code [${code}].
|
|
1869
1869
|
|
|
1870
1870
|
${finalOutput}`);
|
|
1871
1871
|
} else {
|
|
@@ -4659,7 +4659,7 @@ var init_app = __esm({
|
|
|
4659
4659
|
init_setup();
|
|
4660
4660
|
SESSION_START_TIME = Date.now();
|
|
4661
4661
|
CHANGELOG_URL = "https://fluxflow-cli.onrender.com/changelog.html";
|
|
4662
|
-
versionFluxflow = "1.7.
|
|
4662
|
+
versionFluxflow = "1.7.7";
|
|
4663
4663
|
updatedOn = "2026-05-03";
|
|
4664
4664
|
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(
|
|
4665
4665
|
CommandMenu,
|