{"id":51521358,"url":"https://github.com/4rays/xbridge-skill","last_synced_at":"2026-07-08T16:01:22.173Z","repository":{"id":349134884,"uuid":"1199928024","full_name":"4rays/xbridge-skill","owner":"4rays","description":"Use the Xcode MCP bridge to build, test, and edit your Xcode project.","archived":false,"fork":false,"pushed_at":"2026-05-21T15:31:19.000Z","size":35,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-21T15:50:11.434Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/4rays.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-02T21:21:25.000Z","updated_at":"2026-05-21T15:44:27.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/4rays/xbridge-skill","commit_stats":null,"previous_names":["4rays/xcode-mcpbridge","4rays/xhammer-skill","4rays/xbridge-skill"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/4rays/xbridge-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/4rays%2Fxbridge-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/4rays%2Fxbridge-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/4rays%2Fxbridge-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/4rays%2Fxbridge-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/4rays","download_url":"https://codeload.github.com/4rays/xbridge-skill/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/4rays%2Fxbridge-skill/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35270196,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-08T02:00:06.796Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-07-08T16:01:21.279Z","updated_at":"2026-07-08T16:01:22.136Z","avatar_url":"https://github.com/4rays.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# xbridge-skill\n\nAgent skill for interacting with Xcode projects.\n\nThe preferred integration is the **xbridge CLI** — a standalone tool that communicates with Xcode without triggering a permission dialog on every new session. The Xcode MCP bridge (`xcrun mcpbridge`) is supported as a manual fallback.\n\n## Installation\n\n### Option 1: CLI Install (Recommended)\n\n```bash\n# Install all skills\nnpx skills add 4rays/xbridge-skill\n\n# Install specific skills\nnpx skills add 4rays/xbridge-skill --skill xbridge\n\n# List available skills\nnpx skills add 4rays/xbridge-skill --list\n```\n\nThis automatically installs to your `.agents/skills/` directory (and symlinks into `.claude/skills/` for Claude Code compatibility).\n\n### Option 2: Claude Code Plugin\n\n```bash\n# Add the marketplace\n/plugin marketplace add 4rays/xbridge-skill\n\n# Install the plugin\n/plugin install xbridge-skill\n```\n\nOr load directly from a local path:\n\n```bash\nclaude --plugin-dir /path/to/xbridge-skill\n```\n\n\u003e Claude Code specific. For other agents, use Option 1 or Option 3.\n\n### Option 3: Clone and Copy\n\n```bash\ngit clone https://github.com/4rays/xbridge-skill.git\ncp -r xbridge-skill/skills/* .agents/skills/\n```\n\n### Option 4: Git Submodule\n\n```bash\ngit submodule add https://github.com/4rays/xbridge-skill.git .agents/xbridge-skill\n```\n\n### Option 5: Fork and Customize\n\n1. Fork this repository\n2. Customize skills for your needs\n3. Clone your fork into your projects\n\n### Option 6: SkillKit (Multi-Agent)\n\n```bash\nnpx skillkit install 4rays/xbridge-skill\n```\n\n## Quick Start\n\n### 1. Install xbridge\n\n```bash\nbrew tap 4rays/tap\nbrew install xbridge\n```\n\n### 2. Enable Xcode MCP\n\nOpen **Xcode \u003e Settings** (⌘,) → **Intelligence** → Enable **Xcode Tools** under Model Context Protocol.\n\n### 3. Open Your Project\n\n```bash\nopen MyApp.xcodeproj\n# or\nopen MyApp.xcworkspace\n```\n\n### 4. Start Your Agent\n\nYour agent will automatically detect xbridge and use it for all Xcode tasks.\n\n## Using xbridge\n\nThe skill uses the xbridge CLI via the Bash tool. The typical workflow:\n\n```bash\n# Get a tab ID first\nxbridge list-windows\n\n# Then use it in commands\nxbridge build windowtab1\nxbridge test windowtab1\nxbridge build-log windowtab1\n```\n\n## Available Commands\n\n| Category        | Commands                                                                           |\n| --------------- | ---------------------------------------------------------------------------------- |\n| **Status**      | `status`, `stop`, `restart`                                                        |\n| **Discovery**   | `list-windows`, `tools`, `tool-schema`, `call`                                     |\n| **Files**       | `read`, `write`, `update`, `ls`, `glob`, `grep`, `mkdir`, `rm`, `mv`               |\n| **Build \u0026 Test**| `build`, `build-log`, `test`, `test-list`, `test-run`, `issues`, `refresh-issues`  |\n| **Advanced**    | `exec`, `preview`, `docs`                                                          |\n\nFull reference: [skills/xbridge/SKILL.md](skills/xbridge/SKILL.md)\n\n## Xcode MCP Bridge (Alternative)\n\nIf you prefer the MCP bridge over xbridge, add it to your agent manually. For Claude Code:\n\n```bash\nclaude mcp add --transport stdio xcode -- xcrun mcpbridge\n```\n\nNote: this requires approving a permission dialog in Xcode at the start of every new session.\n\n## Troubleshooting\n\n- **xbridge not found**: Install with `brew tap 4rays/tap \u0026\u0026 brew install xbridge`\n- **No tab IDs**: Ensure Xcode is running with a project open\n- **Xcode MCP not enabled**: Go to **Xcode \u003e Settings \u003e Intelligence \u003e Model Context Protocol**\n- **MCP permission denied**: Revoke the process in Xcode Settings and reconnect to retrigger the dialog\n\n## Resources\n\n- [Apple MCP Documentation](https://developer.apple.com/documentation/xcode/giving-external-agents-access-to-xcode)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F4rays%2Fxbridge-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F4rays%2Fxbridge-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F4rays%2Fxbridge-skill/lists"}