fluxflow-cli 3.0.5 → 3.0.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 +7 -4
- package/package.json +1 -1
package/dist/fluxflow.js
CHANGED
|
@@ -5128,10 +5128,13 @@ ${mode === "Flux" ? `- WORKSPACE TOOLS (path = relative to CWD & WILL BE FIRST A
|
|
|
5128
5128
|
9. [tool:functions.await(time="seconds")]. For waiting without exiting agent loop, 15s - 180s
|
|
5129
5129
|
|
|
5130
5130
|
-- SUB AGENTS DEFINITIONS --
|
|
5131
|
-
USE PROACTIVELY TO PARALLELIZE TASK
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5131
|
+
USE PROACTIVELY TO PARALLELIZE TASK QUICKLY **USE OF SUB AGENTS HIGHLY RECOMENDED**
|
|
5132
|
+
Invocation Types:
|
|
5133
|
+
- invoke (async, usage: background worker for parallel tasks, upto 7 parallel agents (3+ calls allowed), can take long time, if invoked DO NOT do the task yourself unless explicit ERROR)
|
|
5134
|
+
- invokeSync (sync, usage: blocking main agent loop, task delegation, repeatetive work, sequential tasks, can save tokens)
|
|
5135
|
+
|
|
5136
|
+
1. [agent:generalist.invokeSync/invoke(title="...", task="...")]. Task must me detailed, with exact file paths, imports/exports, dependency, folder structure
|
|
5137
|
+
2. [agent:generalist.getProgress(id="...")]. Usage: Check progress of async subagent task, taking time? do your own task OR await (exponentially longer after 1st check, eg. 15s, 30s, 45s ...) >>> spamming getProgress`.trim() : `- CREATIVE TOOLS (path = relative to CWD & WILL BE FIRST ARGUMENT, path separator: '/') -
|
|
5135
5138
|
1. [tool:functions.WritePDF(path="...", content="...", orientation="...")]. PROACTIVE A4 PAGE BREAKS MUST IN CSS. HTML/CSS for PREMIUM layout
|
|
5136
5139
|
2. [tool:functions.WriteDoc(path="...", content="...")]. A4 Word document
|
|
5137
5140
|
- WORKSPACE TOOLS ARE NOT AVAILABLE IN FLOW`.trim()}
|