create_proposal
Create voting proposals for group decisions with configurable voting types (yes/no, single choice, ranked) and threshold requirements to facilitate consensus.
Instructions
Create a voting proposal for group decision-making. Supports different voting types (yes/no, single choice, ranked) and threshold requirements.
Args:
group: The group slug (e.g., "backend-team") or group ID
title: Proposal title
description: Proposal description (optional)
voting_type: Type of voting: yes_no (approve/reject), single (choose one option), ranked (preference order). Default: yes_no
threshold_type: Required threshold: majority (>50%), two_thirds (>=66%), unanimous (100%), quorum (>50% participation + majority). Default: majority
options: Options for single/ranked voting (required for those types, ignored for yes_no)
deadline_hours: Optional deadline in hours from now
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group | Yes | ||
| title | Yes | ||
| description | No | ||
| voting_type | No | ||
| threshold_type | No | ||
| options | No | ||
| deadline_hours | No |