xcode_read_file
Read contents of a specified file programmatically within Xcode projects. Enables AI assistants to access and process file data directly for iOS/macOS development tasks.
Instructions
Read contents of a file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Path to the file to read |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Path to the file to read",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}