codex-toys 0.140.12 → 0.140.13
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 +8 -6
- package/dist/cli/actions.d.ts +1 -1
- package/dist/cli/actions.d.ts.map +1 -1
- package/dist/cli/actions.js +1 -0
- package/dist/cli/actions.js.map +1 -1
- package/dist/cli/args.d.ts +11 -7
- package/dist/cli/args.d.ts.map +1 -1
- package/dist/cli/args.js +17 -10
- package/dist/cli/args.js.map +1 -1
- package/dist/cli/help.d.ts.map +1 -1
- package/dist/cli/help.js +2 -1
- package/dist/cli/help.js.map +1 -1
- package/dist/cli/index.js +28 -18
- package/dist/cli/index.js.map +1 -1
- package/dist/internal/feed/index.d.ts +26 -1
- package/dist/internal/feed/index.d.ts.map +1 -1
- package/dist/internal/feed/index.js +102 -1
- package/dist/internal/feed/index.js.map +1 -1
- package/dist/internal/package.json +5 -0
- package/dist/internal/workbench/fetch.js +1 -1
- package/dist/internal/workbench/fetch.js.map +1 -1
- package/dist/internal/workbench/workbench-runtime.d.ts +6 -53
- package/dist/internal/workbench/workbench-runtime.d.ts.map +1 -1
- package/dist/internal/workbench/workbench-runtime.js +65 -379
- package/dist/internal/workbench/workbench-runtime.js.map +1 -1
- package/dist/internal/workbench/workflow.d.ts.map +1 -1
- package/dist/internal/workbench/workflow.js +106 -11
- package/dist/internal/workbench/workflow.js.map +1 -1
- package/docs/pages/components/cli.md +1 -1
- package/docs/pages/guides/feed-to-workflow.md +14 -24
- package/docs/pages/guides/local-scheduled-workbench.md +50 -25
- package/docs/pages/guides/repository-autonomy.md +22 -14
- package/docs/pages/index.md +5 -5
- package/docs/pages/primitives/feed.md +16 -7
- package/docs/pages/primitives/workbench.md +15 -17
- package/docs/pages/primitives/workflow.md +6 -5
- package/docs/pages/reference/packages.md +3 -1
- package/package.json +1 -1
|
@@ -165,7 +165,8 @@ method, not a direct app-server method.
|
|
|
165
165
|
|
|
166
166
|
## Workbench Tasks
|
|
167
167
|
|
|
168
|
-
Workbench tasks can run named workflows
|
|
168
|
+
Workbench tasks can run named workflows from `workbench run`, dispatch targets,
|
|
169
|
+
or feed dispatch:
|
|
169
170
|
|
|
170
171
|
```toml
|
|
171
172
|
[workbench]
|
|
@@ -176,9 +177,9 @@ id = "release-check"
|
|
|
176
177
|
enabled = true
|
|
177
178
|
kind = "workflow"
|
|
178
179
|
workflow = "release-check"
|
|
179
|
-
schedule = "0 14 * * *"
|
|
180
180
|
```
|
|
181
181
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
182
|
+
Use systemd timers or Actions schedules to call explicit commands when a
|
|
183
|
+
workflow should run on a clock. Durable dispatch and feed dispatch can also
|
|
184
|
+
target the workflow-backed task so queued work shares the same attempt, output,
|
|
185
|
+
retry, and collection path.
|
|
@@ -37,6 +37,7 @@ Feed intake helpers:
|
|
|
37
37
|
|
|
38
38
|
- `.codex/feed.toml` config
|
|
39
39
|
- RSS/Atom polling and normalization
|
|
40
|
+
- manual/local feed item append
|
|
40
41
|
- source checkpoints
|
|
41
42
|
- durable feed item storage
|
|
42
43
|
- collection cursors
|
|
@@ -45,6 +46,7 @@ Feed intake helpers:
|
|
|
45
46
|
|
|
46
47
|
```ts
|
|
47
48
|
import {
|
|
49
|
+
appendFeedItem,
|
|
48
50
|
createFeedContext,
|
|
49
51
|
loadFeedConfig,
|
|
50
52
|
pollFeedSources,
|
|
@@ -58,7 +60,7 @@ Workbench runtime and policy helpers:
|
|
|
58
60
|
|
|
59
61
|
- workflow script execution and workflow host helpers
|
|
60
62
|
- remote workflow toybox methods
|
|
61
|
-
- workbench doctor,
|
|
63
|
+
- workbench doctor, task execution, dispatch drains, and Actions scaffolding
|
|
62
64
|
- dispatch runs, prompt queue, and local handoff queue
|
|
63
65
|
- delegation methods and state
|
|
64
66
|
- workbench functions
|
package/package.json
CHANGED