Skip to content
SHAMPOO

Tool catalogue

quorum_cancel

Write · Conductor only · Quorum

quorum_cancel

  • Category: quorum
  • Access: write
  • Audience: administrative (ordinary users do not normally call this directly)

Purpose

Cancels one open coordination quorum. A Quorum is what was agreed in Mind Quorum layering (Debate holds why, Quorum holds what was agreed). Call it when the agreement is abandoned rather than resolved.

Arguments

Required: quorum_id.

  • quorum_id.

Result

JSON object with quorum_id and status (always cancelled on success).

Boundaries

Requires the conductor role. Unlike resolve, no additional participation gate is applied beyond the conductor check. Stored within the selected profile boundary only.

Lifecycle / side effects

Marks an open quorum cancelled with a resolution stamp and records an audit/history event. Cancelled is terminal; lanes beneath keep their own standing.

Errors

Missing conductor role is denied with requires-conductor vocabulary. Missing or malformed identity reads as unknown_quorum with no oracle. Non-open quorums are rejected as quorum not open. Unknown arguments are rejected.

Example

{
  "quorum_id": "<uuid>"
}

Result shape:

{
  "quorum_id": "<uuid>",
  "status": "cancelled"
}

See also

quorum_create, quorum_resolve, quorum_list, lane_list, debate_close_topic.

On this page