Command-line tool for manipulating Xcode project files
npm install @ainame/xcodeproj-cliA command-line tool for manipulating Xcode project files (.xcodeproj) using Swift. This tool provides comprehensive functionality to create, modify, and manage Xcode projects programmatically. This is especially handy when writing code with coding agent such as Claude Code, Gemini CLI, or Codex.
This project was inspired by a YouTube video that recommended using command-line tools instead of Model Context Protocol (MCP) servers for certain workflows. While MCP servers can take advantage of context and are excellent for interactive use, CLI tools offer distinct advantages:
- Speed and Efficiency: CLI tools start instantly without server overhead
- User-Friendly: Simple, straightforward command syntax
- Agent-Friendly: Perfect for use with AI coding agents that can quickly execute commands
- No Context Dependency: Each command is self-contained and explicit
- Automation-Ready: Easy to integrate into scripts, CI/CD pipelines, and development workflows
By converting the functionality from an MCP server to a standalone CLI, we get the best of both worlds: the comprehensive Xcode project manipulation capabilities with the speed and simplicity that developers expect from command-line tools.
Cross-platform installation for any environment:
``bash`
npm install -g @ainame/xcodeproj-cli
Supported platforms:
- macOS: Intel (x64) and Apple Silicon (arm64)
- Linux: x86_64 and aarch64 (ARM64)
Perfect for CI/CD pipelines, Docker containers, AI coding assistants, and development machines. The appropriate binary is automatically downloaded during installation.
`bash`
brew tap ainame/xcodeproj-cli https://github.com/ainame/xcodeproj-cli
brew install xcodeproj
`bash
git clone https://github.com/ainame/xcodeproj-cli.git
cd xcodeproj-cli
swift build -c release
Usage
$3
`bash
Create a new Xcode project
xcodeproj create MyApp --organization-name "My Company" --bundle-identifier "com.mycompany.myapp"List all targets in a project
xcodeproj list-targets MyApp.xcodeprojAdd a file to a target
xcodeproj add-file MyApp.xcodeproj MyApp Sources/NewFile.swiftCreate a new target
xcodeproj add-target MyApp.xcodeproj MyFramework framework com.mycompany.myframeworkAdd a dependency between targets
xcodeproj add-dependency MyApp.xcodeproj MyApp MyFrameworkAdd a framework dependency
xcodeproj add-framework MyApp.xcodeproj MyApp UIKitAdd a Swift Package dependency
xcodeproj add-swift-package MyApp.xcodeproj https://github.com/apple/swift-argument-parser "from: 1.0.0" --target-name MyAppSet build settings
xcodeproj set-build-setting MyApp.xcodeproj MyApp SWIFT_VERSION 5.9Add a run script build phase
xcodeproj add-build-phase run-script MyApp.xcodeproj MyApp "SwiftLint" "swiftlint"Duplicate a target
xcodeproj duplicate-target MyApp.xcodeproj MyApp MyApp-Staging --new-bundle-identifier com.mycompany.myapp.staging
`$3
#### Swift Package Version Requirements
The tool supports various Swift Package version requirement formats:
`bash
Exact version
xcodeproj add-swift-package MyApp.xcodeproj https://github.com/realm/realm-swift "10.45.0"From version (up to next major)
xcodeproj add-swift-package MyApp.xcodeproj https://github.com/realm/realm-swift "from: 10.0.0"Up to next minor version
xcodeproj add-swift-package MyApp.xcodeproj https://github.com/realm/realm-swift "upToNextMinor: 10.45.0"Branch reference
xcodeproj add-swift-package MyApp.xcodeproj https://github.com/realm/realm-swift "branch: main"Specific revision
xcodeproj add-swift-package MyApp.xcodeproj https://github.com/realm/realm-swift "revision: abc123"
`#### Build Phase Management
Add custom build phases with various types:
`bash
Run script build phase
xcodeproj add-build-phase run-script MyApp.xcodeproj MyApp "Code Generation" "scripts/generate_code.sh"Copy files build phase
xcodeproj add-build-phase copy-files MyApp.xcodeproj MyApp "Copy Resources" resources --files config.plist assets.bundle
`$3
`bash
General help
xcodeproj --helpCommand-specific help
xcodeproj create --help
xcodeproj add-swift-package --help
`Development
$3
Run test:
`bash
scripts/test.sh
``Contributions are welcome! Please feel free to submit issues, feature requests, or pull requests.
- Swift 6.1+ and Xcode 16.4+ (for building from source)
- Universal binary supports both Apple Silicon and Intel Macs
This project is available under the MIT License. See the LICENSE file for more details.
This project builds upon the excellent work of these open-source projects and their contributors:
- giginet/xcodeproj-mcp-server - Created by @giginet, this Model Context Protocol (MCP) server provided the initial inspiration and reference implementation for many of the commands in this CLI tool. The MCP server's comprehensive feature set and well-structured codebase served as an excellent foundation for porting functionality to a standalone command-line interface.
- tuist/XcodeProj - The foundational library that enables reading, updating, and writing Xcode project files. Created and maintained by the Tuist team, this library provides the core functionality that makes xcodeproj CLI possible.