Skip to content
Open
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
4 changes: 2 additions & 2 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/anthropics/claude-code/refs/heads/main/marketplace/marketplace.schema.json",
"name": "xcode-build-skills",
"version": "1.0.1",
"version": "1.1.0",
"owner": {
"name": "Antoine van der Lee",
"email": "contact@avanderlee.com"
Expand All @@ -14,7 +14,7 @@
"name": "xcode-build-skills",
"description": "Six Xcode build optimization skills in one plugin: benchmark, compilation analysis, project analysis, SPM build analysis, a recommend-first orchestrator, and a fixer for applying approved changes.",
"repository": "https://github.com/AvdLee/Xcode-Build-Optimization-Agent-Skill",
"version": "1.0.1",
"version": "1.1.0",
"author": {
"name": "Antoine van der Lee",
"email": "contact@avanderlee.com"
Expand Down
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xcode-build-skills",
"version": "1.0.1",
"version": "1.1.0",
"description": "A multi-skill plugin for benchmarking and optimizing Xcode builds, compile hotspots, project settings, and Swift Package Manager dependency overhead.",
"author": {
"name": "Antoine van der Lee",
Expand Down
5 changes: 3 additions & 2 deletions .cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xcode-build-skills",
"version": "1.0.0",
"version": "1.1.0",
"description": "A multi-skill plugin for benchmarking and optimizing Xcode builds, compile hotspots, project settings, and Swift Package Manager dependency overhead.",
"author": {
"name": "Antoine van der Lee",
Expand Down Expand Up @@ -30,5 +30,6 @@
"skills/spm-build-analysis",
"skills/xcode-build-orchestrator",
"skills/xcode-build-fixer"
]
],
"homepage": "https://github.com/AvdLee/Xcode-Build-Optimization-Agent-Skill"
}
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ jobs:
- name: Bump plugin manifest version
run: |
set -euo pipefail
for manifest in plugin.json .cursor-plugin/plugin.json; do
jq --arg version "$VERSION" '.version = $version' "$manifest" > "$manifest.tmp"
mv "$manifest.tmp" "$manifest"
done
sed -i -E "s/^version: \".*\"$/version: \"$VERSION\"/" agents/openai.yaml

jq --arg version "$VERSION" '.version = $version' .claude-plugin/plugin.json > .claude-plugin/plugin.json.tmp
mv .claude-plugin/plugin.json.tmp .claude-plugin/plugin.json

Expand All @@ -78,7 +84,7 @@ jobs:
fi
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .claude-plugin/plugin.json .claude-plugin/marketplace.json
git add plugin.json .cursor-plugin/plugin.json agents/openai.yaml .claude-plugin/plugin.json .claude-plugin/marketplace.json
git commit -m "Bump version to $VERSION"
git push

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

Open-source Agent Skills for benchmarking and optimizing Xcode build performance across clean builds, incremental builds, compile hotspots, project settings, and Swift Package Manager overhead.

This repository is packaged as a portable [Agent Plugin](https://agent-plugins.org) (spec 1.0.0): compatible clients discover all six skills automatically from the root `plugin.json` manifest and the `skills/` directory. Client-specific manifests for Claude Code, Cursor, Codex, and pi are included as well.

## Quick Start

Install all six skills (the orchestrator needs the specialist skills to work):
Expand Down Expand Up @@ -162,11 +164,9 @@ To enable for everyone in a repository, add to your project configuration:
}
```

### Option C: Cursor Plugin (coming soon)

This repository is packaged for Cursor plugin submission, but the marketplace listing is not live yet.
### Option C: Cursor Plugin

Once approved, you'll be able to install it from the Cursor Marketplace.
Load the plugin from a local clone by placing it in `~/.cursor/plugins/local`, or install it from the Cursor Marketplace once listed. Cursor supports both the portable Agent Plugins manifest (`plugin.json`) and the Cursor Plugin manifest (`.cursor-plugin/plugin.json`) included in this repository.

### Option D: Codex / OpenAI-compatible tools

Expand Down
2 changes: 1 addition & 1 deletion agents/openai.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: xcode-build-skills
version: "1.0.0"
version: "1.1.0"
description: >-
A multi-skill plugin for benchmarking and optimizing Xcode builds,
compile hotspots, project settings, and Swift Package Manager
Expand Down
28 changes: 28 additions & 0 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "xcode-build-skills",
"version": "1.1.0",
"description": "A multi-skill plugin for benchmarking and optimizing Xcode builds, compile hotspots, project settings, and Swift Package Manager dependency overhead.",
"author": {
"name": "Antoine van der Lee",
"email": "contact@avanderlee.com",
"url": "https://www.avanderlee.com"
},
"homepage": "https://github.com/AvdLee/Xcode-Build-Optimization-Agent-Skill",
"repository": "https://github.com/AvdLee/Xcode-Build-Optimization-Agent-Skill",
"license": "MIT",
"keywords": [
"xcode",
"builds",
"incremental-builds",
"clean-builds",
"swift",
"ios",
"macos",
"spm",
"benchmarking",
"compilation",
"project-settings",
"explicit-modules"
]
}
4 changes: 4 additions & 0 deletions skills/spm-build-analysis/agents/openai.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
interface:
display_name: "SPM Build Analysis"
short_description: "Analyze Swift Package Manager dependencies and plugin overhead that slow builds."
brand_color: "#0071E3"
4 changes: 4 additions & 0 deletions skills/xcode-build-benchmark/agents/openai.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
interface:
display_name: "Xcode Build Benchmark"
short_description: "Repeatable clean and incremental build baselines with timing summaries."
brand_color: "#0071E3"
4 changes: 4 additions & 0 deletions skills/xcode-build-fixer/agents/openai.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
interface:
display_name: "Xcode Build Fixer"
short_description: "Apply approved build optimizations and re-benchmark to verify improvement."
brand_color: "#0071E3"
4 changes: 4 additions & 0 deletions skills/xcode-build-orchestrator/agents/openai.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
interface:
display_name: "Xcode Build Orchestrator"
short_description: "Coordinate benchmarking, analysis, and prioritized build optimizations."
brand_color: "#0071E3"
4 changes: 4 additions & 0 deletions skills/xcode-compilation-analyzer/agents/openai.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
interface:
display_name: "Xcode Compilation Analyzer"
short_description: "Find Swift and mixed-language compile hotspots from build timing data."
brand_color: "#0071E3"
4 changes: 4 additions & 0 deletions skills/xcode-project-analyzer/agents/openai.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
interface:
display_name: "Xcode Project Analyzer"
short_description: "Audit project configuration, build settings, and script phases for build-time wins."
brand_color: "#0071E3"
Loading