xcode_open_file
Open a specific file in Xcode from a given path, optionally navigating to a designated line number, facilitating quick access and code review.
Instructions
Open a file in Xcode
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Path to the file to open - supports both absolute (/path/to/file.swift) and relative (src/file.swift) paths | |
line_number | No | Optional line number to navigate to |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"description": "Path to the file to open - supports both absolute (/path/to/file.swift) and relative (src/file.swift) paths",
"type": "string"
},
"line_number": {
"description": "Optional line number to navigate to",
"type": "number"
}
},
"required": [
"file_path"
],
"type": "object"
}