list_schems_ws
Lists available schemes in a specified .xcworkspace file. Requires the workspacePath as input to retrieve the scheme details.
Instructions
Lists available schemes in the workspace. IMPORTANT: Requires workspacePath. Example: list_schems_ws({ workspacePath: '/path/to/MyProject.xcworkspace' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
workspacePath | Yes | Path to the .xcworkspace file (Required) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"workspacePath": {
"description": "Path to the .xcworkspace file (Required)",
"type": "string"
}
},
"required": [
"workspacePath"
],
"type": "object"
}