discover_projs
Scan directories to locate Xcode project (.xcodeproj) and workspace (.xcworkspace) files, specifying workspace root, scan path, and depth for efficient discovery.
Instructions
Scans a directory (defaults to workspace root) to find Xcode project (.xcodeproj) and workspace (.xcworkspace) files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxDepth | No | Optional: Maximum directory depth to scan. Defaults to 5. | |
scanPath | No | Optional: Path relative to workspace root to scan. Defaults to workspace root. | |
workspaceRoot | Yes | The absolute path of the workspace root to scan within. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"maxDepth": {
"description": "Optional: Maximum directory depth to scan. Defaults to 5.",
"minimum": 0,
"type": "integer"
},
"scanPath": {
"description": "Optional: Path relative to workspace root to scan. Defaults to workspace root.",
"type": "string"
},
"workspaceRoot": {
"description": "The absolute path of the workspace root to scan within.",
"type": "string"
}
},
"required": [
"workspaceRoot"
],
"type": "object"
}