From b9311fcae4d342d53fc65c75b757a82564788998 Mon Sep 17 00:00:00 2001 From: Antoine van der Lee <4329185+AvdLee@users.noreply.github.com> Date: Mon, 23 Mar 2026 15:19:34 +0100 Subject: [PATCH] Simplify community results table and add StockAnalyzer entry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace the 7-column table with a compact 3-column format: App, Clean Build, Incremental Build. Each cell uses arrow notation with absolute and percentage deltas for clarity: "41.5s → 33.2s (-8.3s / 20% faster)". Add an anchor link early in the README so readers can jump straight to the results. Add StockAnalyzer as the first community entry. Update the orchestration report template to generate matching copy-paste rows. --- README.md | 9 ++++++--- .../references/orchestration-report-template.md | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a3f917c..16ffa15 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 diff --git a/skills/xcode-build-orchestrator/references/orchestration-report-template.md b/skills/xcode-build-orchestrator/references/orchestration-report-template.md index fceee2b..ec63cf4 100644 --- a/skills/xcode-build-orchestrator/references/orchestration-report-template.md +++ b/skills/xcode-build-orchestrator/references/orchestration-report-template.md @@ -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: -| | | | | | | | +| | 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 ```