fluxflow-cli 3.0.10 → 3.0.11
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 +7 -4
- package/package.json +2 -2
package/dist/fluxflow.js
CHANGED
|
@@ -5156,7 +5156,7 @@ Invocation Types:
|
|
|
5156
5156
|
2. [agent:generalist.getProgress(id="...")]. Usage: Check progress of async subagent task, taking time? continue your task, MUST await (exponentially longer after 1st check, eg. 15s, 30s, 45s ...) than spamming getProgress. NEVER FINISH WITHOUT 'AWAIT' WHILE SUBAGENT WORKING`.trim() : `- CREATIVE TOOLS (path = relative to CWD & WILL BE FIRST ARGUMENT, path separator: '/') -
|
|
5157
5157
|
1. [tool:functions.WritePDF(path="...", content="...", orientation="...")]. PROACTIVE A4 PAGE BREAKS MUST IN CSS. HTML/CSS for PREMIUM layout
|
|
5158
5158
|
2. [tool:functions.WriteDoc(path="...", content="...")]. A4 Word document
|
|
5159
|
-
- WORKSPACE TOOLS ARE NOT AVAILABLE IN FLOW`.trim()}
|
|
5159
|
+
- WORKSPACE & SUB AGENT TOOLS ARE NOT AVAILABLE IN FLOW`.trim()}
|
|
5160
5160
|
|
|
5161
5161
|
- VERIFY TOOL RESULT CONTENTS. Fix errors. No hallucinations
|
|
5162
5162
|
- Escape quotes: \\" for code strings
|
|
@@ -12040,7 +12040,8 @@ ${boxMid}`) };
|
|
|
12040
12040
|
const boxMid = boxLines.map((line) => `${line.padEnd(boxWidth - 2).substring(0, boxWidth - 2)}`).join("\n");
|
|
12041
12041
|
const boxBottom = `${" ".repeat(boxWidth)}`;
|
|
12042
12042
|
yield { type: "visual_feedback", content: colorMainWords(`${boxBottom}
|
|
12043
|
-
${boxMid}
|
|
12043
|
+
${boxMid}
|
|
12044
|
+
`) };
|
|
12044
12045
|
}
|
|
12045
12046
|
}
|
|
12046
12047
|
}
|
|
@@ -12899,9 +12900,11 @@ ${ideErr} [/ERROR]`;
|
|
|
12899
12900
|
const action = normToolName === "write_file" ? "Created" : "Edited";
|
|
12900
12901
|
label2 = `\u2714 ${action}: ${parseArgs(toolCall.args).path || "..."}`;
|
|
12901
12902
|
} else if (normToolName === "write_pdf") {
|
|
12902
|
-
label2 = `\u2714 Created: ${parseArgs(toolCall.args).path || "..."}
|
|
12903
|
+
label2 = `\u2714 Created: ${parseArgs(toolCall.args).path || "..."}
|
|
12904
|
+
`;
|
|
12903
12905
|
} else if (normToolName === "write_docx") {
|
|
12904
|
-
label2 = `\u2714 Created: ${parseArgs(toolCall.args).path || "..."}
|
|
12906
|
+
label2 = `\u2714 Created: ${parseArgs(toolCall.args).path || "..."}
|
|
12907
|
+
`;
|
|
12905
12908
|
} else if (normToolName === "file_map") {
|
|
12906
12909
|
label2 = `\u2714 Get Map: ${parseArgs(toolCall.args).path || "..."}`;
|
|
12907
12910
|
} else if (normToolName.toLowerCase() === "search_keyword" || normToolName.toLowerCase() === "todo") {
|