Create Work Item
workitem_createCreate a work item in Meegle by specifying type and fields. Use it to add stories, issues, or other items after looking up valid field keys.
Instructions
Create a work item in Meegle. Use workitem_meta_fields first to discover valid field_key values. Complex array or object field values are automatically JSON-stringified to match meegle CLI expectations. This tool defaults to dry_run=true for safety.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fields | Yes | List of fields to create on the work item. | |
| dry_run | No | Leave true to preview the normalized request without executing creation. Set false to really create. | |
| project_key | No | Project key. Always pass explicitly in multi-project usage; resolve it with project_search first when missing. | |
| work_item_id | No | Optional resource template instance ID. | |
| work_item_type | Yes | Type key such as story or issue. | |
| ignore_required | No | Set true only when intentionally bypassing backend required-field validation. | |
| ignore_role_calculate | No | Set true only when intentionally bypassing backend role calculation. |