@swmansion/argent 0.24.1-next.6 → 0.24.1-next.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/cli-cmds.mjs +3 -4
- package/dist/installer.mjs +1 -1
- package/dist/tool-server.cjs +1315 -957
- package/package.json +1 -1
- package/skills/argent-create-flow/SKILL.md +3 -2
- package/skills/argent-create-flow/references/flow-yaml.md +10 -25
- package/skills/argent-create-flow/references/live-authoring.md +5 -4
- package/skills/argent-qa-flows/SKILL.md +8 -3
package/dist/cli-cmds.mjs
CHANGED
|
@@ -21837,7 +21837,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
21837
21837
|
var SESSION_ID2 = randomUUID5();
|
|
21838
21838
|
function readCliVersion() {
|
|
21839
21839
|
if (true) {
|
|
21840
|
-
return "0.24.1-next.
|
|
21840
|
+
return "0.24.1-next.7";
|
|
21841
21841
|
}
|
|
21842
21842
|
return "0.0.0";
|
|
21843
21843
|
}
|
|
@@ -23164,9 +23164,8 @@ Run a YAML flow without an LLM in the loop. \`run\` takes any of these forms:
|
|
|
23164
23164
|
For a name and for a file path alike, the
|
|
23165
23165
|
filename (minus .yaml) names the run's report and artifacts, so it must
|
|
23166
23166
|
contain only letters, numbers, "_", or "-" \u2014 the same charset a name must
|
|
23167
|
-
match. A flow
|
|
23168
|
-
|
|
23169
|
-
authoring one. Exception: a fragment whose first step \`run:\`s a chromium e2e
|
|
23167
|
+
match. A flow is e2e when its first non-\`echo\`/\`script\` step is \`launch\`.
|
|
23168
|
+
Other flows are fragments and use the device's current state. Exception: a fragment whose first step \`run:\`s a chromium e2e
|
|
23170
23169
|
flow boots that flow's app before step 1 \u2014 when that launch is unambiguously
|
|
23171
23170
|
chromium (a lone \`{ chromium: ... }\` target, or --platform chromium); a
|
|
23172
23171
|
multi-platform launch auto-detects a device instead. Pass --device to attach to
|
package/dist/installer.mjs
CHANGED
|
@@ -16690,7 +16690,7 @@ var _CI_VENDOR_COUNT_FOR_TEST = vendors_default.length;
|
|
|
16690
16690
|
var SESSION_ID = randomUUID4();
|
|
16691
16691
|
function readCliVersion() {
|
|
16692
16692
|
if (true) {
|
|
16693
|
-
return "0.24.1-next.
|
|
16693
|
+
return "0.24.1-next.7";
|
|
16694
16694
|
}
|
|
16695
16695
|
return "0.0.0";
|
|
16696
16696
|
}
|