manage_dependencies
Streamline Swift Package Manager dependency tasks—list, resolve, update, add, or remove packages—directly within Xcode projects for efficient development workflows.
Instructions
Manage Swift Package Manager dependencies
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ||
| packageName | No | ||
| packageURL | No | ||
| projectPath | Yes | ||
| version | No |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"enum": [
"list",
"resolve",
"update",
"add",
"remove"
],
"type": "string"
},
"packageName": {
"type": "string"
},
"packageURL": {
"type": "string"
},
"projectPath": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"projectPath",
"action"
],
"type": "object"
}