ReadonlyexecutePerforms the actual side effect (a write, an API call, etc.), aborted via signal.
Optional ReadonlyoptimisticComputes an optimistic patch from CURRENT AUTHORITATIVE state (never the
visible/projected state -- a second concurrent optimistic transition
must never compute against a first transition's still-pending value).
Returning undefined means no optimistic transition for this call.
Optional ReadonlyparamsDefault/example params, deep-merged with a caller's partial at call time.
Optional ReadonlyprocessorDefaults to identity when omitted -- execute's raw result is then used directly as the patch.
Optional ReadonlywritesDeclares which fields this mutator may write -- omitting it defaults to the full capability tree.
A mutator operation: performs a side effect.
writesis optional -- omitting it defaults to full-capability-tree ownership, bounded to the declared schema (ADR 0011) -- the common "this mutator can touch anything the schema allows" case doesn't pay a declaration tax.