$npx skillfedfor your agent

xcode-build

xcode-build equips your agent with direct access to Xcode's command-line utilities for iOS and macOS development. Control app builds, simulator management, and project workflows without intermediary servers—leveraging xcodebuild and xcrun simctl for native platform integration.

xcode-build provides direct access to xcodebuild for iOS app compilation. Use `xcodebuild -scheme YourScheme -configuration Release` to build your project. For workspace projects, add `-workspace YourWorkspace.xcworkspace`. xcode-build lets you specify derived data paths, build settings, and destination platforms directly via native CLI commands without intermediary servers.

AI-generated summary based on this skill's SKILL.md

135 7 MITupdated by pzep1

Decision gist · record as of 2026-02-04

xcode-build provides direct access to xcodebuild for iOS app compilation. Use `xcodebuild -scheme YourScheme -configuration Release` to build your project. For workspace projects, add `-workspace YourWorkspace.xcworkspace`. xcode-build lets you specify derived data paths, build settings, and destination platforms directly via native CLI commands without intermediary servers.

manual: git clone https://github.com/pzep1/xcode-build-skill → cp -r xcode-build-skill/skills/xcode-build ~/.claude/skills/xcode-build
skills/xcode-build/SKILL.md · version 2b16843f

Use it when

  • xcode-build enables simulator control through xcrun simctl.
  • xcode-build supports common xcodebuild patterns: `xcodebuild -scheme MyScheme -configuration Debug` for debug builds.

Verify before relying

Read SKILL.md below before installing (3 files). Open directory: indexed for reading, not audited.

Same gist for agents: .md · .json

Install

pzep1/xcode-build-skill/xcode-build

Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

How to build iOS app with xcodebuild?

xcode-build provides direct access to xcodebuild for iOS app compilation. Use `xcodebuild -scheme YourScheme -configuration Release` to build your project. For workspace projects, add `-workspace YourWorkspace.xcworkspace`. xcode-build lets you specify derived data paths, build settings, and destination platforms directly via native CLI commands without intermediary servers.

How do I run an app on iPhone simulator?

xcode-build enables simulator control through xcrun simctl. First list available devices with `xcrun simctl list devices`, then boot a simulator by UDID: `xcrun simctl boot <UDID>`. Build your app targeting that simulator, then install and launch it using `xcrun simctl install <UDID> <app.app>` and `xcrun simctl launch <UDID> com.bundle.identifier`. xcode-build automates this entire workflow.

What are xcodebuild command line examples?

xcode-build supports common xcodebuild patterns: `xcodebuild -scheme MyScheme -configuration Debug` for debug builds, `xcodebuild test -scheme MyScheme -destination 'platform=iOS Simulator,name=iPhone 15'` for unit tests, and `xcodebuild -workspace App.xcworkspace -scheme App -derivedDataPath ./build` for custom output paths. Each command runs natively without proxy layers.

Can xcode-build automate iOS simulator management and testing?

Yes. xcode-build automates simulator lifecycle and testing through native xcrun and xcodebuild commands. Boot/shutdown simulators, run XCUITest automation frameworks, execute unit tests with `xcodebuild test`, capture screenshots via `xcrun simctl io <UDID> screenshot`, and retrieve logs from simulator instances. All operations use direct CLI tools for reliable platform integration.

How do I capture logs and screenshots from iOS simulator?

xcode-build lets you capture simulator diagnostics natively. Take screenshots with `xcrun simctl io <UDID> screenshot output.png`. Access app logs via `xcrun simctl spawn <UDID> log stream --predicate 'process == "YourApp"'`. xcode-build handles UDID resolution and log filtering, enabling automated diagnostics collection during test runs and debugging sessions.

Does xcode-build replace XcodeBuildMCP with direct tools?

xcode-build is designed to replace XcodeBuildMCP by providing direct xcodebuild and xcrun simctl command execution. It eliminates intermediary server dependencies, giving your agent native access to Xcode's CLI utilities for builds, simulator management, testing, and log capture. MIT-licensed, it integrates seamlessly into macOS development workflows.

SKILL.md

Rendered from the published skill. Quoted content, verbatim.

Xcode Build Direct

Build and manage iOS/macOS projects using native Xcode CLI tools instead of MCP servers.

When to Use This Skill

Use this skill when: - Building iOS or macOS apps with Xcode - Running apps in iOS simulators - Managing simulator instances (boot, shutdown, list) - Taking screenshots of simulators - Capturing app logs - Running tests (unit or UI) - Automating UI interactions (tap, type, swipe)

Preference: Always use direct CLI commands (xcodebuild, xcrun simctl) instead of XcodeBuildMCP tools.

Quick Start

1. Discover Project Structure

```bash

List schemes in a workspace

xcodebuild -workspace /path/to/App.xcworkspace -list

List schemes in a project

xcodebuild -project /path/to/App.xcodeproj -list

Show build settings

xcodebuild -workspace /path/to/App.xcworkspace -scheme AppScheme

(truncated - see the full file via the links below)

File tree — 3 files
skills/xcode-build/CLI_REFERENCE.md
skills/xcode-build/SKILL.md
skills/xcode-build/XCUITEST_GUIDE.md

Let your AI agent find skills like this

Example. Real query, live index.

You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.

wish › “Build and run iOS/macOS apps using native Xcode CLI tools”

Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →

Related skills

qa-testing-ios
by vasilyu1983 · vasilyu1983/AI-Agents-public

This skill streamlines iOS quality assurance by automating test runs through xcodebuild and simulator environments. It handles both unit and UI testing scenarios, enabling developers to validate app behavior consistently across test suites. Integrate it into your CI/CD pipeline for repeatable, reliable test execution.

MITupdated Jul 2026
★ 69repo stars
Ios Simulator
by tristanmanchester · tristanmanchester/agent-skills

This skill enables developers to launch and validate iOS applications within a simulated environment, eliminating the need for physical hardware during early-stage testing. Streamline your debugging workflow by catching issues before deployment to real devices.

no license declared → metadata onlyupdated Jun 2026
★ 2repo stars
Ios Simulator
by dpearson2699 · dpearson2699/swift-ios-skills

This skill enables developers to launch and evaluate iOS applications within a simulated runtime environment. Test app interactions, workflows, and UI responsiveness directly from your development setup, eliminating the need for hardware during early-stage validation cycles.

no license declared → metadata onlyupdated Jul 2026
★ 932repo stars
axiom-run-tests
by CharlesWiltgen · CharlesWiltgen/Axiom

axiom-run-tests equips AI coding assistants with specialized capabilities for executing and debugging Apple platform tests. It surfaces actionable diagnostics when XCUITests fail, helping you identify root causes and fix issues faster without manual investigation overhead.

MITupdated Jul 2026
★ 1,095repo stars
axiom-test-simulator
by CharlesWiltgen · CharlesWiltgen/Axiom

This skill automates visual testing on iOS simulators by capturing screenshots and video during app execution. It integrates with Axiom's Apple development toolkit to help you verify UI behavior, document issues, and validate layouts without manual inspection. Perfect for CI/CD pipelines and rapid iteration cycles.

MITupdated Jul 2026
★ 1,095repo stars
simulator-utils
by Prisma-Labs-Dev · Prisma-Labs-Dev/apple-skills

simulator-utils streamlines iOS development by automating screenshot capture and resizing within the simulator environment. Perfect for testing UI consistency across different device configurations and verifying API compatibility without manual image processing. Works seamlessly with Claude Code and other coding agents to accelerate your iOS workflow.

MITupdated Jul 2026
★ 291repo stars

More skills sim-preview (MIT) · xcuitest-skill (MIT) · bootstrap-ios (Apache-2.0) · simulator-workflows (MIT) · ios-simulator-skill (MIT) · ce-test-xcode (MIT) · axiom-xcode-mcp (MIT) · ios-testing-patterns (MIT)

Tags
simulator-managementnative-cli-toolsios-automationxcode-workflowsui-testing-frameworkapp-deploymentbuild-orchestrationxcuitest-integration