create-module
Create a new sprint module within a project to organize work with name, dates, status, and team assignments for structured project management.
Instructions
Create a new module (sprint) in a project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Description of the module (optional) | |
| lead | No | User ID of the module lead (optional) | |
| members | No | Array of user IDs to assign as module members (optional) | |
| name | Yes | Name of the module | |
| project_id | Yes | ID of the project where the module should be created | |
| start_date | No | Start date of the module (YYYY-MM-DD format, optional) | |
| status | No | Status of the module | |
| target_date | No | Target end date of the module (YYYY-MM-DD format, optional) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the module (optional)",
"type": "string"
},
"lead": {
"description": "User ID of the module lead (optional)",
"type": "string"
},
"members": {
"description": "Array of user IDs to assign as module members (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "Name of the module",
"type": "string"
},
"project_id": {
"description": "ID of the project where the module should be created",
"type": "string"
},
"start_date": {
"description": "Start date of the module (YYYY-MM-DD format, optional)",
"type": "string"
},
"status": {
"description": "Status of the module",
"enum": [
"planned",
"in-progress",
"paused",
"completed",
"cancelled"
],
"type": "string"
},
"target_date": {
"description": "Target end date of the module (YYYY-MM-DD format, optional)",
"type": "string"
}
},
"required": [
"project_id",
"name"
],
"type": "object"
}