@cleocode/skills 2026.6.18 → 2026.7.1
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/package.json
CHANGED
|
@@ -183,6 +183,26 @@ cleo orchestrate start --epic T1575 # Full state: session, pipeline, next task
|
|
|
183
183
|
7. Final validation with Lead across the full epic
|
|
184
184
|
```
|
|
185
185
|
|
|
186
|
+
#### Never-OOM admission (T11992 · T12000)
|
|
187
|
+
|
|
188
|
+
`cleo orchestrate ready` / `waves` now carry an additive `admission` block:
|
|
189
|
+
|
|
190
|
+
```
|
|
191
|
+
"admission": { "agentBudget": 2, "admitted": ["T1","T2"], "deferred": ["T3"] }
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
- Spawn **only** `admission.admitted` this pass — that is the fan-out the host can
|
|
195
|
+
take without OOM. Do **not** spawn `admission.deferred`.
|
|
196
|
+
- After a worker completes (a slot frees), **re-query** `orchestrate ready` — the
|
|
197
|
+
previously-deferred tasks promote into `admitted`. This is pull-based; never
|
|
198
|
+
fail or skip a deferred task, just retry it on the next pull.
|
|
199
|
+
- If a `cleo orchestrate spawn` returns `E_RESOURCE_DEFERRED` (the hard gate
|
|
200
|
+
denied an `agent-session` slot under pressure), treat it like a lifecycle gate:
|
|
201
|
+
wait `details.retryAfterMs` and re-spawn. No worktree/process was provisioned,
|
|
202
|
+
so there is nothing to clean up.
|
|
203
|
+
|
|
204
|
+
On an idle host every ready task is `admitted` and behaviour is unchanged.
|
|
205
|
+
|
|
186
206
|
### 4. Report to Human
|
|
187
207
|
|
|
188
208
|
After each wave or on request: what completed, blockers needing HITL, next actions.
|