Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Then open your Xcode project in your AI coding tool and say:

The agent will benchmark your clean and incremental builds, audit build settings, find compile hotspots, and produce an optimization plan at `.build-benchmark/optimization-plan.md`. No project files are modified until you explicitly approve changes.

[See results of projects that used this skill →](#community-results)

For long-term monitoring across days, machines, Xcode versions, and teams, use [RocketSim Build Insights](https://www.rocketsim.app/docs/features/build-insights/build-insights/) and [Team Build Insights](https://www.rocketsim.app/docs/features/build-insights/team-build-insights/).

## See Also My Other Skills
Expand Down Expand Up @@ -212,12 +214,13 @@ If you want to catch regressions earlier and see whether your build times are im

## Community Results

Real-world improvements reported by developers who used these skills. Add your own results by opening a pull request.
Real-world improvements reported by developers who used these skills. Add your own by opening a pull request.

The `xcode-build-orchestrator` generates your table row at the end of every optimization run, so contributing is a single copy-paste.

| App | Incremental Before | Incremental After | Clean Before | Clean After | Cached Clean Before | Cached Clean After |
|-----|-------------------:|------------------:|-------------:|------------:|--------------------:|-------------------:|
| App | Clean Build | Incremental Build |
|-----|------------|-------------------|
| StockAnalyzer | 41.5s → 33.2s (-8.3s / 20% faster) | 5.3s → 3.6s (-1.7s / 32% faster) |

## Contributing

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Compare the new wall-clock medians against the baseline. Report results as:
Add your improvement to the community results table by opening a pull request.
Copy the row below and append it to the table in README.md:

| <project-name> | <baseline-incremental> | <post-change-incremental> | <baseline-clean> | <post-change-clean> | <baseline-cached-clean> | <post-change-cached-clean> |
| <project-name> | X.Xs → X.Xs (-X.Xs / X% faster) | X.Xs → X.Xs (-X.Xs / X% faster) |

Open a PR: https://github.com/AvdLee/Xcode-Build-Optimization-Agent-Skill/edit/main/README.md
```
Expand Down
Loading