61s faster Xcode builds with Agent Skill
A developer thread reports shaving 61 seconds off Xcode build times by applying six open‑source 'Agent Skill' optimizations — practical, free tweaks that can speed local iteration loops. Faster builds like this compound productivity across teams. (x.com)
The open-source Xcode Build Optimization Agent Skills repository bundles six skills (an orchestrator plus five specialist analyzers) and exposes a quick-start install via npx (github.com)). The orchestrator runs both clean and incremental benchmarks, invokes compilation/project/SPM analyzers, and emits a prioritized optimization plan at.build-benchmark/optimization-plan.md for inspection. (github.com) No project files are changed automatically—the fixer only applies items explicitly approved in the optimization plan and then re-benchmarks to verify improvements. (github.com) The README quantifies payoff: a 1‑second speedup on a 30‑second incremental build at 50 builds per day equals roughly 3.5 hours saved per developer per year (35 hours across ten developers). (github.com) The skills target Swift Package Manager overhead, compile hotspots, build‑phase scripts, module variants and Swift type‑checking bottlenecks; a marketplace/Claude skill description highlights systematic Swift type‑checking analysis and Xcode configuration tuning as core checks. (github.com) These skills run inside the new agentic tooling flow introduced in Xcode 26.3, which adds native support for agentic coding and makes in‑IDE installation and invocation of Agent Skills practical. (apple.com)