{
"name_for_model": "xcode_diagnostics",
"functions": [
{
"name": "get_xcode_projects",
"description": "Lists all Xcode projects that have build logs in the DerivedData directory. Returns project names, directory paths, and last modified timestamps.",
"parameters": {}
},
{
"name": "get_project_diagnostics",
"description": "Gets diagnostic information (errors and warnings) from the latest build log of a specific project.",
"parameters": {
"properties": {
"project_dir_name": {
"type": "string",
"description": "Directory name of the project in DerivedData (e.g. 'ProjectName-hash')"
},
"include_warnings": {
"type": "boolean",
"description": "Whether to include warnings in addition to errors",
"default": true
}
},
"required": ["project_dir_name"]
}
}
]
}