xcode_create_project
Generate a new Xcode project with a basic structure by specifying the project path, name, bundle ID, and target platform (iOS/macOS).
Instructions
Create a new Xcode project with basic structure
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bundle_id | Yes | Bundle identifier (e.g., com.company.app) | |
platform | No | Target platform (ios/macos) | ios |
project_name | Yes | Name of the project | |
project_path | Yes | Path where the project should be created |
Input Schema (JSON Schema)
{
"properties": {
"bundle_id": {
"description": "Bundle identifier (e.g., com.company.app)",
"type": "string"
},
"platform": {
"default": "ios",
"description": "Target platform (ios/macos)",
"type": "string"
},
"project_name": {
"description": "Name of the project",
"type": "string"
},
"project_path": {
"description": "Path where the project should be created",
"type": "string"
}
},
"required": [
"project_path",
"project_name",
"bundle_id"
],
"type": "object"
}