@automatalabs/workflows 0.27.1 → 0.28.0
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 +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -447,7 +447,7 @@ ships no runtime code).
|
|
|
447
447
|
| `loopUntilDry(options)` | Repeat a round, collecting deduped new items until it dries up. |
|
|
448
448
|
| `completenessCheck(args, results)` | Ask a critic what is still missing. |
|
|
449
449
|
| `retry(thunk, options?)` | Bounded retry until `until(result)` holds. |
|
|
450
|
-
| `gate(thunk, validator, options?)` | Validate-and-feed-back loop
|
|
450
|
+
| `gate(thunk, validator, options?)` | Validate-and-feed-back loop returning `{ ok, value, verdict, attempts }`; `verdict` is the raw last validator return on either pass or exhaustion. |
|
|
451
451
|
| `checkpoint(text, options?)` | Deterministic, journaled human gate: live confirm, headless default/abort, or opt-in durable `headless: "pause"`. |
|
|
452
452
|
| `phase(title, options?)` | Open a named phase (optional soft token sub-budget). |
|
|
453
453
|
| `log(message)` | Append a line to the run log. |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automatalabs/workflows",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22"
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@automatalabs/shared-types": "0.17.0",
|
|
34
|
-
"@automatalabs/
|
|
35
|
-
"@automatalabs/
|
|
34
|
+
"@automatalabs/acp-agents": "0.24.8",
|
|
35
|
+
"@automatalabs/workflow-engine": "0.18.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"typebox": "1.3.2"
|