find_xcresults
Locate and retrieve all XCResult files for a specified Xcode project, including timestamps and file details, to streamline build analysis and debugging workflows.
Instructions
Find all XCResult files for a specific project with timestamps and file information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
xcodeproj | Yes | Path to the .xcodeproj file (or .xcworkspace if available) - supports both absolute (/path/to/project.xcodeproj) and relative (MyApp.xcodeproj) paths |
Input Schema (JSON Schema)
{
"properties": {
"xcodeproj": {
"description": "Path to the .xcodeproj file (or .xcworkspace if available) - supports both absolute (/path/to/project.xcodeproj) and relative (MyApp.xcodeproj) paths",
"type": "string"
}
},
"required": [
"xcodeproj"
],
"type": "object"
}