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