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.
Files changed (38) hide show
  1. package/README.md +8 -6
  2. package/dist/cli/actions.d.ts +1 -1
  3. package/dist/cli/actions.d.ts.map +1 -1
  4. package/dist/cli/actions.js +1 -0
  5. package/dist/cli/actions.js.map +1 -1
  6. package/dist/cli/args.d.ts +11 -7
  7. package/dist/cli/args.d.ts.map +1 -1
  8. package/dist/cli/args.js +17 -10
  9. package/dist/cli/args.js.map +1 -1
  10. package/dist/cli/help.d.ts.map +1 -1
  11. package/dist/cli/help.js +2 -1
  12. package/dist/cli/help.js.map +1 -1
  13. package/dist/cli/index.js +28 -18
  14. package/dist/cli/index.js.map +1 -1
  15. package/dist/internal/feed/index.d.ts +26 -1
  16. package/dist/internal/feed/index.d.ts.map +1 -1
  17. package/dist/internal/feed/index.js +102 -1
  18. package/dist/internal/feed/index.js.map +1 -1
  19. package/dist/internal/package.json +5 -0
  20. package/dist/internal/workbench/fetch.js +1 -1
  21. package/dist/internal/workbench/fetch.js.map +1 -1
  22. package/dist/internal/workbench/workbench-runtime.d.ts +6 -53
  23. package/dist/internal/workbench/workbench-runtime.d.ts.map +1 -1
  24. package/dist/internal/workbench/workbench-runtime.js +65 -379
  25. package/dist/internal/workbench/workbench-runtime.js.map +1 -1
  26. package/dist/internal/workbench/workflow.d.ts.map +1 -1
  27. package/dist/internal/workbench/workflow.js +106 -11
  28. package/dist/internal/workbench/workflow.js.map +1 -1
  29. package/docs/pages/components/cli.md +1 -1
  30. package/docs/pages/guides/feed-to-workflow.md +14 -24
  31. package/docs/pages/guides/local-scheduled-workbench.md +50 -25
  32. package/docs/pages/guides/repository-autonomy.md +22 -14
  33. package/docs/pages/index.md +5 -5
  34. package/docs/pages/primitives/feed.md +16 -7
  35. package/docs/pages/primitives/workbench.md +15 -17
  36. package/docs/pages/primitives/workflow.md +6 -5
  37. package/docs/pages/reference/packages.md +3 -1
  38. 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 on a schedule or from `workbench run`:
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
- Scheduled workflow tasks create dispatch run intents, so scheduled work and
183
- one-shot dispatch work share the same claiming, attempt, output, retry, and
184
- collection path.
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, tick, task execution, and Actions scaffolding
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-toys",
3
- "version": "0.140.12",
3
+ "version": "0.140.13",
4
4
  "description": "Codex CLI and umbrella runtime export for bridge, toybox, feed, remote, workbench, actions, proxy, and kits.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",