-
-
Notifications
You must be signed in to change notification settings - Fork 262
chore(release): Version skill installer URLs #199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
e903c96
68b2725
b92e4b8
2198d98
b280c14
94738fb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -156,14 +156,19 @@ When configuring a client manually, ensure the command includes the `mcp` subcom | |||||
| - Xcode 16.x or later | ||||||
| - Node.js 18.x or later | ||||||
|
|
||||||
| ## Skill | ||||||
| ## Skills | ||||||
|
|
||||||
| XcodeBuildMCP now includes an optional agent skill. Some clients (e.g., Cursor, Claude Code) hide MCP tool schemas behind search/progressive disclosure, which can reduce tool discovery and usage. The skill provides a concise overview of available tools to counter that. If your client already exposes tools up front, you likely don’t need it; only use it if your agent isn’t reaching for XcodeBuildMCP tools. | ||||||
| XcodeBuildMCP now includes two optional agent skills: | ||||||
|
|
||||||
| - **MCP Skill**: Primes the agent with instructions on how to use the MCP server's tools (optional when using the MCP server). | ||||||
|
|
||||||
| - **CLI Skill**: Primes the agent with instructions on how to navigate the CLI (recommended when using the CLI). | ||||||
|
|
||||||
|
|
||||||
| To install, copy and past the below command into a terminal and follow the on-screen instructions. | ||||||
|
|
||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix the grammar in the install instruction “copy and past” should be “copy and paste”, and “the command below” reads more naturally. Proposed change-To install, copy and past the below command into a terminal and follow the on-screen instructions.
+To install, copy and paste the command below into a terminal and follow the on-screen instructions.📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @cursor fix
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||||
| To install, download and run the installer in a terminal, then choose your client when prompted: | ||||||
| ```bash | ||||||
| curl -fsSL https://raw.githubusercontent.com/cameroncooke/XcodeBuildMCP/main/scripts/install-skill.sh -o install-skill.sh | ||||||
| bash install-skill.sh | ||||||
| curl -fsSL https://raw.githubusercontent.com/cameroncooke/XcodeBuildMCP/main/scripts/install-skill.sh -o install-skill.sh && bash install-skill.sh | ||||||
| ``` | ||||||
|
|
||||||
| For further information on how to install the skill, see: [docs/SKILLS.md](docs/SKILLS.md) | ||||||
|
|
||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -318,6 +318,14 @@ if [[ "$SKIP_VERSION_UPDATE" == "false" ]]; then | |
| README_SKILL_INSTALL_URL_REGEX='https://raw.githubusercontent.com/cameroncooke/XcodeBuildMCP/[^/]+/scripts/install-skill.sh' | ||
| run sed_inplace "s#${README_SKILL_INSTALL_URL_REGEX}#https://raw.githubusercontent.com/cameroncooke/XcodeBuildMCP/v${VERSION}/scripts/install-skill.sh#g" README.md | ||
|
|
||
| # Update skill installer URL in docs/SKILLS.md | ||
| if [[ -f docs/SKILLS.md ]]; then | ||
| echo "📝 Updating skill installer URL in docs/SKILLS.md..." | ||
| run sed_inplace "s#${README_SKILL_INSTALL_URL_REGEX}#https://raw.githubusercontent.com/cameroncooke/XcodeBuildMCP/v${VERSION}/scripts/install-skill.sh#g" docs/SKILLS.md | ||
| else | ||
| echo "⚠️ docs/SKILLS.md not found; skipping update" | ||
| fi | ||
|
|
||
|
cursor[bot] marked this conversation as resolved.
|
||
| # server.json update | ||
| echo "" | ||
| if [[ -f server.json ]]; then | ||
|
|
@@ -331,9 +339,9 @@ if [[ "$SKIP_VERSION_UPDATE" == "false" ]]; then | |
| echo "" | ||
| echo "📦 Committing version changes..." | ||
| if [[ -f server.json ]]; then | ||
| run git add package.json package-lock.json README.md server.json | ||
| run git add package.json package-lock.json README.md docs/SKILLS.md server.json | ||
| else | ||
| run git add package.json package-lock.json README.md | ||
| run git add package.json package-lock.json README.md docs/SKILLS.md | ||
|
cameroncooke marked this conversation as resolved.
Comment on lines
+342
to
+344
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: The release script will crash if Suggested FixMake the Prompt for AI AgentDid we get this right? 👍 / 👎 to inform future reviews. |
||
| fi | ||
| run git commit -m "Release v$VERSION" | ||
| else | ||
|
|
||


Uh oh!
There was an error while loading. Please reload this page.