xcode-build-benchmark

GitHub

用于自动化基准测试 Xcode 清理和增量构建性能,收集输入参数并执行多轮构建以生成包含中位数和分布的 JSON 报告。适用于需要建立构建基线、对比代码变更前后构建速度或诊断构建耗时问题的场景。

skills/xcode-build-benchmark/SKILL.md AvdLee/Xcode-Build-Optimization-Agent-Skill

Trigger Scenarios

开发者想要建立构建性能的基线 询问构建时间或构建是否变快/变慢 需要对比修改前后的构建性能差异

Install

npx skills add AvdLee/Xcode-Build-Optimization-Agent-Skill --skill xcode-build-benchmark -g -y
More Options

Use without installing

npx skills use AvdLee/Xcode-Build-Optimization-Agent-Skill@xcode-build-benchmark

指定 Agent (Claude Code)

npx skills add AvdLee/Xcode-Build-Optimization-Agent-Skill --skill xcode-build-benchmark -a claude-code -g -y

安装 repo 全部 skill

npx skills add AvdLee/Xcode-Build-Optimization-Agent-Skill --all -g -y

预览 repo 内 skill

npx skills add AvdLee/Xcode-Build-Optimization-Agent-Skill --list

SKILL.md

Frontmatter
{
    "name": "xcode-build-benchmark",
    "description": "Benchmark Xcode clean and incremental builds with repeatable inputs, timing summaries, and timestamped `.build-benchmark\/` artifacts. Use when a developer wants a baseline, wants to compare before and after changes, asks to measure build performance, mentions build times, build duration, how long builds take, or wants to know if builds got faster or slower."
}

Xcode Build Benchmark

Use this skill to produce a repeatable Xcode build baseline before anyone tries to optimize build times.

Core Rules

  • Measure before recommending changes.
  • Capture clean and incremental builds separately.
  • Keep the command, destination, configuration, scheme, and warm-up rules consistent across runs.
  • Write a timestamped JSON artifact to .build-benchmark/.
  • Do not change project files as part of benchmarking.

Inputs To Collect

Confirm or infer:

  • workspace or project path
  • scheme
  • configuration
  • destination
  • whether the user wants simulator or device numbers
  • whether a custom DerivedData path is needed

If the project has both clean-build and incremental-build pain, benchmark both. That is the default.

Worktree Considerations

When benchmarking inside a git worktree, SPM packages with exclude: paths that reference gitignored directories (e.g., __Snapshots__) will cause xcodebuild -resolvePackageDependencies to crash. Create those missing directories before running any builds.

Default Workflow

  1. Normalize the build command and note every flag that affects caching or module reuse.
  2. Run one warm-up build if needed to validate that the command succeeds.
  3. Run 3 clean builds.
  4. If COMPILATION_CACHE_ENABLE_CACHING = YES is detected, run 3 cached clean builds. These measure clean build time with a warm compilation cache -- the realistic scenario for branch switching, pulling changes, or Clean Build Folder. The script handles this automatically by building once to warm the cache, then deleting DerivedData (but not the compilation cache) before each measured run. Pass --no-cached-clean to skip.
  5. Run 3 zero-change builds (build immediately after a successful build with no edits). This measures the fixed overhead floor: dependency computation, project description transfer, build description creation, script phases, codesigning, and validation. A zero-change build that takes more than a few seconds indicates avoidable per-build overhead. Use the default benchmark_builds.py invocation (no --touch-file flag).
  6. Optionally run 3 incremental builds with a file touch to measure a real edit-rebuild loop. Use --touch-file path/to/SomeFile.swift to touch a representative source file before each build.
  7. Save the raw results and summary into .build-benchmark/.
  8. Report medians and spread, not just the single fastest run.

Preferred Command Path

Use the shared helper when possible:

python3 scripts/benchmark_builds.py \
  --workspace App.xcworkspace \
  --scheme MyApp \
  --configuration Debug \
  --destination "platform=iOS Simulator,name=iPhone 16" \
  --output-dir .build-benchmark

If you cannot use the helper script, run equivalent xcodebuild commands with -showBuildTimingSummary and preserve the raw output.

Required Output

Return:

  • clean build median, min, max
  • cached clean build median, min, max (when COMPILATION_CACHE_ENABLE_CACHING is enabled)
  • zero-change build median, min, max (fixed overhead floor)
  • incremental build median, min, max (if --touch-file was used)
  • biggest timing-summary categories
  • environment details that could affect comparisons
  • path to the saved artifact

If results are noisy, say so and recommend rerunning under calmer conditions.

When To Stop

Stop after measurement if the user only asked for benchmarking. If they want optimization guidance, hand off the artifact to the relevant specialist by reading its SKILL.md and applying its workflow to the same project context:

Additional Resources

Version History

  • 1.0.1 Current 2026-07-24 21:11

Same Skill Collection

skills/spm-build-analysis/SKILL.md
skills/xcode-build-fixer/SKILL.md
skills/xcode-build-orchestrator/SKILL.md
skills/xcode-compilation-analyzer/SKILL.md
skills/xcode-project-analyzer/SKILL.md

Metadata

Files
0
Version
1.0.1
Hash
91b85f1b
Indexed
2026-07-24 21:11

Главная - Вики-сайт
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-21 05:20
浙ICP备14020137号-1 $Гость$