From che-apple-dev
Build and deploy Xcode projects to Mac or iOS devices in one step. Use when user says "build and deploy", "deploy to iPad", "rebuild server", "install on device", or wants to test changes on a physical device. Handles xcodegen → xcodebuild → install → launch automatically.
npx claudepluginhub psychquant/psychquant-claude-plugins --plugin che-apple-devThis skill is limited to using the following tools:
One-step build and deploy for Xcode projects.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
One-step build and deploy for Xcode projects.
# Find project.yml (xcodegen) or .xcodeproj
ls project.yml *.xcodeproj 2>/dev/null
If project.yml exists, run xcodegen generate first.
Ask if ambiguous:
# macOS
xcodebuild build -project <proj> -scheme <scheme> -configuration Release -destination 'platform=macOS' 2>&1 | grep -E '(error:|warning:|BUILD)'
# iOS device
xcodebuild build -project <proj> -scheme <scheme> -configuration Debug -destination 'generic/platform=iOS' 2>&1 | grep -E '(error:|warning:|BUILD)'
If build fails, show errors and stop.
pkill -9 -f <process_name> 2>/dev/null
sleep 1
cp -R "<built_products_dir>/<app>.app" /Applications/
nohup /Applications/<app>.app/Contents/MacOS/<binary> > /dev/null 2>&1 &
# Get device UDID
xcrun xctrace list devices 2>&1 | grep -E 'iPad|iPhone'
# Install + launch
xcrun devicectl device install app --device <udid> "<app_path>" 2>&1
xcrun devicectl device process launch --device <udid> --terminate-existing <bundle_id> 2>&1
Confirm process is running:
ps aux | grep <app_name> | grep -v grep
Report: build time, deploy target, status.