A cancelled agent previously discarded its own ledger and reported a bare "(task interrupted by user)" — fabricating the *outcome* (read downstream as "nothing happened"), which invites a double-send as readily as a dropped record causes an orphan. Make the fold-back honest, and propagate an owner's cancel down the coordinator subtree. - task_agent (single + parallel): on cancel, fold back a deterministic disposition built from the agent's in-memory ledger — actions completed, the in-flight action flagged outcome-UNKNOWN, and not-started calls — instead of the opaque interrupted string. - coordinator cancel now auto-propagates to its direct children via a post_cancel hook on the shared cancel handler (cooperative fan-out; no blocking drain). - synthesized cancelled tool results now read outcome-UNKNOWN rather than implying the call never ran. - remove the now-redundant stop_cascade operator endpoint (handler, route, OpenAPI spec + schema, tests, docs); a coordinator cancel supersedes it.
9.1 KiB
Bulk endpoint shape contract
Turnstone exposes several endpoints and tool calls that take multiple ids and return a per-id outcome. Over the last few phases two distinct response shapes have settled, one per semantic category. This doc codifies both so a future endpoint author can pick the right shape by semantics instead of by coin-flip.
Existing bulk endpoints at time of writing:
| Endpoint / tool | Category | Response shape |
|---|---|---|
GET /v1/api/cluster/ws/live?ids=a,b,c |
bulk read | {results, denied, truncated} |
model tool spawn_batch |
bulk create (per-item) | {results, denied} |
POST /v1/api/workstreams/{ws_id}/close_all_children |
cascade mutation | {closed, failed, skipped} |
Why two shapes
The ask-to-outcome mapping is fundamentally different between the two categories, and a one-size-fits-all envelope ends up papering over distinctions the caller genuinely needs to branch on.
Bulk read / bulk create-with-payload. Each input id (or batch index) carries a request-side concept — "give me the live block for this ws_id" or "spawn a child with this spec" — and each successful output carries a payload — the live block, or the new workstream's identifying triple. The interesting distinction on failure is ownership / validation (caller can't see that id, spec was malformed) — independent of the storage state.
Cascade mutation. The action is uniform across every id (cancel this subtree, close this child). The interesting distinctions on outcome are did it reach the terminal state? (succeeded / already was there / the dispatch itself failed) — driven by the storage state plus transport reliability, not by the caller's input.
Trying to unify these forces either:
- a stateless
deniedbucket that has to carry "already gone" and "you don't have permission" and "transport failed" with a separate reason string — reviewers end up string-matching to branch. - or a per-item-payload map for cascade mutations where every successful value is the same sentinel — carrier with no payload.
So: two shapes, one per category. The rest of this doc spells out each.
Shape A — bulk read / bulk create-with-payload
{
"results": { "<key>": <value-or-null>, ... },
"denied": [ "<key>", ... ],
"truncated": false
}
results is a key-indexed map of the positive-path payload.
The key is the input id for read endpoints (cluster/ws/live uses
the ws_id), or the input-array index (stringified) for create
endpoints that want ordering preserved (spawn_batch uses "0",
"1", ...). The value is whatever the endpoint produces per
success — a live block, a {ws_id, name, node_id, status} triple,
etc. A null value (read endpoints only) means "the id existed and
you own it, but the live block wasn't available" — distinct from
"denied".
denied is the negative-path list. For read endpoints it's a
flat list of ids (preserves input order so callers can re-zip
against their input). For create endpoints with per-item payloads
it's a list of {idx, reason} objects (spawn_batch's validation
and spawn-error rows; also the operator-reject surface when per-item
selective-deny ships). Include every reason that's not the
positive path — authz, ownership, validation, already-consumed,
spawn failure — so callers don't branch on status codes.
truncated is a boolean set to true when the server's
per-endpoint input cap was exceeded and the tail was dropped. The
endpoint docs each spell out the cap (50 for cluster/ws/live).
spawn_batch hard-errors on overflow instead of silently
truncating — it omits the field entirely rather than carry a
permanently-false flag.
Example — cluster/ws/live
GET /v1/api/cluster/ws/live?ids=a1b2,c3d4,nonexistent,foreign HTTP/1.1
{
"results": {
"a1b2": {"state": "running", "tokens": 12843, "activity": "..."},
"c3d4": null
},
"denied": ["nonexistent", "foreign"],
"truncated": false
}
Callers that need ordered output zip their original id list against
this map; ids in denied drop out of the zip cleanly. A live-block
null doesn't route to denied — the row exists and the caller
owns it; the node is just currently unreachable.
Example — spawn_batch
This is the coordinator-tool result shape (the JSON the LLM receives),
not an HTTP API response — the table above keys it under "model tool"
to distinguish it from the /v1/api/... endpoints in the same table.
The underlying HTTP spawn endpoint still returns ws_id; the tool
result re-keys it to child_ws_id to defuse a coordinator-LLM recency
bias (see docs/coordinator-skills.md).
{
"results": {
"0": {"child_ws_id": "d4e5f6...", "name": "csrf-audit", "node_id": "gpu-3"},
"2": {"child_ws_id": "f1a2b3...", "name": "xss-audit", "node_id": "gpu-1"}
},
"denied": [
{"idx": 1, "reason": "skill not found: nonexistent-skill"}
]
}
Indexes are stringified to keep the envelope JSON-safe and consistently-typed across the read and create cases.
Shape B — cascade mutation
{
"status": "ok",
"<bucket>": [ "<ws_id>", ... ],
"failed": [ "<ws_id>", ... ],
"skipped": [ "<ws_id>", ... ]
}
Where <bucket> is the endpoint-specific name for "succeeded" —
closed for close_all_children.
The three buckets partition the input set exactly once:
| Bucket | Meaning |
|---|---|
<bucket> |
Action dispatch accepted; target reached the intended terminal state. |
failed |
Dispatch returned a non-404 error (transport issue, upstream 5xx, exception). |
skipped |
Upstream 404 — stale registry entry, row already deleted, or peer gone. |
The split between failed and skipped is load-bearing. failed
is actionable — the operator may want to retry, or the cascade may
be partial. skipped is pre-resolved — the target is already in
the terminal state the cascade was aiming at, so it's neither a
win to report nor a fault to fix.
Example — close_all_children
{
"status": "ok",
"closed": ["child-1", "child-3"],
"failed": ["child-2"],
"skipped": []
}
Here the success bucket is closed. A subsequent retry would
target only failed ids, not skipped ones — the latter are
already done. When coord_client is unavailable (session loaded
but no HTTP client attached — a construction bug) every id goes to
failed so the operator notices rather than getting a silent
all-skipped response.
Guidance for future bulk endpoints
-
Pick by semantics, not by "what shape is nearby."
- Mutation that's uniform across ids + terminal-state outcome? → Shape B (cascade mutation).
- Read or create where the input id carries payload, or where the denial axis is independent of storage state? → Shape A (bulk read / bulk create-with-payload).
-
Cap the input. Both shapes assume a bounded input — the server rejects or silently truncates past the cap. Document the cap in the endpoint's OpenAPI description. Shape A uses
truncated: trueon quiet truncation; Shape B hard-errors on overflow. -
Match existing bucket names for the same semantic. Use
failedandskippedverbatim in Shape B — the per-endpoint success bucket is the only slot that varies. Useresultsanddeniedverbatim in Shape A; the per-endpoint<key>/<value>types vary. -
Audit the verbose shape. Both endpoints emit a corresponding audit event with the full before/after bucket lists — the SSE stream and the in-process response give live feedback, but a postmortem operator will read the audit row. Use
_emit_coord_audit(coordinator-scoped) orrecord_auditdirectly; don't inline. -
Don't mix shapes within one endpoint. If a bulk endpoint wants both partial-success creation AND per-item failure reasons (like
spawn_batchwith its{idx, reason}denial rows), that's Shape A with a richer denial element — not a blend with Shape B.
History
- Phase 6 shipped
cluster/ws/liveas the first Shape A endpoint ({results, denied, truncated}). - Phase 7 introduced the Shape B cascade-mutation envelope
(
{<bucket>, failed, skipped}) for the coordinator's cancel-cascade path. - Phase 8 PR A shipped
spawn_batch(Shape A, keyed by idx) andclose_all_children(Shape B), which crystallised the two-shape-per-semantic-category policy codified here.
Before adding a third shape, read this doc and argue for why the new surface doesn't fit either A or B. Two idioms in the cluster API is a finite operator tax; three is one too many.