@riddledc/riddle-proof 0.8.65 → 0.8.66
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/README.md +3 -0
- package/dist/{chunk-JPRKO2DH.js → chunk-VSP4K5LR.js} +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/cli.cjs +1 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -208,6 +208,9 @@ riddle-proof-loop run-profile \
|
|
|
208
208
|
Hosted profile runs emit Riddle poll progress to stderr while waiting. Use
|
|
209
209
|
`--quiet` to suppress progress lines, or `--progress-every-ms` to tune the
|
|
210
210
|
heartbeat cadence for long route-inventory or workflow profiles.
|
|
211
|
+
When a hosted worker fleet is scaled to zero, `run-profile` waits up to five
|
|
212
|
+
minutes for an unsubmitted job before retrying by default; use
|
|
213
|
+
`--unsubmitted-timeout-ms` for shorter warm-worker tripwires.
|
|
211
214
|
By default, `run-profile` writes the full JSON result to stdout for automation.
|
|
212
215
|
For agent loops where the saved artifacts are the source of truth, use
|
|
213
216
|
`--result-format summary` to print the same compact Markdown summary that is
|
|
@@ -246,7 +246,7 @@ function runProfileViewportNamesOption(options) {
|
|
|
246
246
|
if (!raw) return [];
|
|
247
247
|
return raw.split(",").map((part) => part.trim()).filter(Boolean);
|
|
248
248
|
}
|
|
249
|
-
var DEFAULT_PROFILE_UNSUBMITTED_RETRY_TIMEOUT_MS =
|
|
249
|
+
var DEFAULT_PROFILE_UNSUBMITTED_RETRY_TIMEOUT_MS = 3e5;
|
|
250
250
|
var DEFAULT_PROFILE_UNSUBMITTED_RETRIES = 2;
|
|
251
251
|
function cliPackageRoot() {
|
|
252
252
|
const entryPath = process.argv[1] ? (() => {
|
package/dist/cli/index.js
CHANGED
package/dist/cli.cjs
CHANGED
|
@@ -18658,7 +18658,7 @@ function runProfileViewportNamesOption(options) {
|
|
|
18658
18658
|
if (!raw) return [];
|
|
18659
18659
|
return raw.split(",").map((part) => part.trim()).filter(Boolean);
|
|
18660
18660
|
}
|
|
18661
|
-
var DEFAULT_PROFILE_UNSUBMITTED_RETRY_TIMEOUT_MS =
|
|
18661
|
+
var DEFAULT_PROFILE_UNSUBMITTED_RETRY_TIMEOUT_MS = 3e5;
|
|
18662
18662
|
var DEFAULT_PROFILE_UNSUBMITTED_RETRIES = 2;
|
|
18663
18663
|
function cliPackageRoot() {
|
|
18664
18664
|
const entryPath = process.argv[1] ? (() => {
|
package/dist/cli.js
CHANGED