get_person_schedule
Retrieve a team member's GitHub project schedule and upcoming work assignments for the specified number of days ahead.
Instructions
Get the schedule and upcoming work for a specific team member
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Number of days to look ahead (default: 7) | |
login | Yes | GitHub username of the team member |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"default": 7,
"description": "Number of days to look ahead (default: 7)",
"type": "number"
},
"login": {
"description": "GitHub username of the team member",
"type": "string"
}
},
"required": [
"login"
],
"type": "object"
}