Capture batch
captureApply multiple claim operations in a single batch, using the reconciler to skip duplicates, archive superseded claims, and park contradictions for human review.
Instructions
Apply a BATCH of claim operations in one call, through the reconciler. Prefer this over several record_* calls when a turn produced more than one thing. The reconciler enforces what you should not be trusted to enforce yourself: a near-identical claim is skipped rather than duplicated, superseding archives the old claim with the reason instead of deleting it, and anything that would contradict a FROZEN claim is parked as needs_review for a human rather than applied. Append-only: nothing is removed, so the worst case is a claim you later supersede. Call resume_context first so you know existing ids and which claims are frozen.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ops | Yes | The batch. Ops are applied in order against state that is re-read between each, so a supersede can target something added earlier in the same batch. | |
| project | No | Named project in the central store. Omit inside a repo that has .continuity/, where state is found by walking up from the working directory. |