Modern Bun/Node.js CLI wrapper for Apple's xcodebuild command-line tool that improves context for Claude Code.
npm install xcodebuildxcodebuild that doesn't blow up your context window.
A modern CLI wrapper for Apple's xcodebuild that formats verbose build output into clean, colored, human-readable messages using my custom xcpretty library.
- ✨ Pretty output: Clean, colored formatting for build operations
- 🎯 Smart filtering: Suppresses noise from node_modules and Pods
- 📊 Build summary: Shows error and warning counts
- 📝 Log files: Automatic logging to .xcodebuild/xcodebuild.log
- 🚀 Zero config: Works as a drop-in replacement for xcodebuild
- ⚡ Fast: Informational commands bypass formatting for instant results
``sh`Use with npx (recommended)
npx xcodebuild
`shBuild a project (formatted output)
npx xcodebuild -project MyApp.xcodeproj -scheme MyApp -configuration Debug build
Development
`sh
Install dependencies
bun installBuild the wrapper
bun run buildRun tests
bun run test
``