read_file
Access and retrieve the contents of a file within the active Xcode project using a specified file path, enabling efficient data handling and integration for development tasks.
Instructions
Reads the contents of a file within the active Xcode project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Relative or absolute path to the file within the active project. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "Relative or absolute path to the file within the active project.",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}