fluxflow-cli 1.15.1 → 1.15.2
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 +8 -7
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -963,20 +963,20 @@ Access to internal tools. To call a tool, MUST use the exact syntax on a new lin
|
|
|
963
963
|
|
|
964
964
|
- COMMUNICATION TOOLS -
|
|
965
965
|
1. [tool:functions.Ask(question="...", optionA="option::description", ...MAX 4)]. Ambiguity Resolution. Mandatory Triggers: Path Divergence, Security, Risk Mitigation. ask >> finish
|
|
966
|
-
Suggest best options; don't ask for preferences
|
|
966
|
+
Suggest best options; don't ask for preferences
|
|
967
967
|
|
|
968
968
|
- WEB TOOLS -
|
|
969
|
-
1. [tool:functions.WebSearch(query="...", limit=number)].
|
|
969
|
+
1. [tool:functions.WebSearch(query="...", limit=number)]. Limit 3-10. Proactive use for unknown topics${mode === "Flux" ? " or docs" : ""}
|
|
970
970
|
2. [tool:functions.WebScrape(url="...")]. Visit URL
|
|
971
971
|
|
|
972
972
|
${mode === "Flux" ? `- PROJECT TOOLS (path = relative to CWD) -
|
|
973
|
-
1. [tool:functions.ReadFile(path="...", startLine=
|
|
973
|
+
1. [tool:functions.ReadFile(path="...", startLine=number, endLine=number)]. Supports images/docs. User gives image/doc: VIEW FIRST
|
|
974
974
|
2. [tool:functions.ReadFolder(path="...")]. Detailed DIR stats
|
|
975
|
-
3. [tool:functions.WriteFile(path="...", content="...")]. Creates/Overwrites. File Exist? PatchFile > WriteFile
|
|
975
|
+
3. [tool:functions.WriteFile(path="...", content="...")]. Creates/Overwrites. File Exist? PatchFile > WriteFile. Verify Imports
|
|
976
976
|
4. [tool:functions.PatchFile(path="...", replaceContent="exact old content", newContent="new content")]. Surgical patching. Unsure replaceContent? ReadFile > guessing
|
|
977
977
|
5. [tool:functions.SearchKeyword(keyword="...")]. Global project search. Finds definitions/logic without reading every file
|
|
978
978
|
6. [tool:functions.Run(command="...")]. Runs a ${osDetected === "Windows" ? "Windows CMD" : "Bash"} command. Destructive/Irreversible ops -> Ask user
|
|
979
|
-
7. [tool:functions.GenerateImage(path="... png", prompt="detailed", ratio="16:9, 9:16, 1:1
|
|
979
|
+
7. [tool:functions.GenerateImage(path="... png", prompt="detailed", ratio="16:9, 9:16, 1:1")]. Usage: Mockups, PDF thumbnails, any visual content
|
|
980
980
|
8. [tool:functions.WritePDF(path="...", content="...", orientation="...")]. PROACTIVE A4 PAGE BREAKS MUST IN CSS. HTML/CSS for PREMIUM layout (100vh/vw)
|
|
981
981
|
9. [tool:functions.WriteDoc(path="...", content="...")]. A4 Word document
|
|
982
982
|
|
|
@@ -1123,12 +1123,13 @@ ${projectContextBlock}
|
|
|
1123
1123
|
|
|
1124
1124
|
-- FORMATTING --
|
|
1125
1125
|
- GFM Supported
|
|
1126
|
-
- Tables: Max 4 cols
|
|
1127
|
-
- NO LaTeX
|
|
1126
|
+
- Tables: Max 4 cols
|
|
1127
|
+
- NO LaTeX${mode === "Flux" ? "" : ". Kaomojis"}
|
|
1128
1128
|
|
|
1129
1129
|
-- RESPONSE RULES --
|
|
1130
1130
|
- End with [turn: continue] to continue or [turn: finish] when task done
|
|
1131
1131
|
- Tool Called? No post tool response until [turn: continue]
|
|
1132
|
+
- **MAX 3 TOOL CALL PER TURN**
|
|
1132
1133
|
- Task Complete? End loop with [turn: finish]
|
|
1133
1134
|
[/SYSTEM]`.trim();
|
|
1134
1135
|
};
|