create-issue-worklog
Log time spent on specific project issues to track work hours and maintain accurate project time records within the Plane project management system.
Instructions
Create a new time log entry for an issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | No | Description of the work done (optional) | |
| duration | Yes | Time logged in hours (e.g., 2.5 for 2 hours 30 minutes) | |
| issue_id | Yes | ID of the issue to log time for | |
| project_id | Yes | ID of the project containing the issue |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Description of the work done (optional)",
"type": "string"
},
"duration": {
"description": "Time logged in hours (e.g., 2.5 for 2 hours 30 minutes)",
"type": "number"
},
"issue_id": {
"description": "ID of the issue to log time for",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id",
"duration"
],
"type": "object"
}