dsh-apple-mode
Manifest validXcode AI integration for DSH: 26 Xcode MCP tools (mcpbridge) + Apple platform skills + Xcode Intelligence-style persona (agent preset or global bundle).
dsh-apple-mode
Xcode AI integration mode for DeepSeek Harness (dsh) — an agent preset + installer that gives your DSH sessions the full Xcode AI stack:
- 26 Xcode MCP tools (
mcp__xcode__*) via Apple's officialmcpbridge - Xcode Intelligence–style persona (Swift-first, tool-assisted, explain-vs-change classification) adapted from the
IDEIntelligenceChatprompt templates - 10 Apple platform skills (SwiftUI, App Intents, security hardening, bounds safety, …) generated locally from your own Xcode
📌
dsh-plugintopic repo. DeepSeek Harness is in developer preview — pin an exactdshversion for your automation.
Why a preset (mode) instead of a global MCP wiring?
The three capabilities map onto three different DSH mechanisms:
| Layer | Capability | DSH mechanism |
|---|---|---|
| Execute | 26 mcp__xcode__* tools | dsh-mcp-client (mounted inside the preset) |
| Knowledge | 10 Apple skills | dsh-skill-filesystem (global, lazy-loaded) |
| Behavior | Xcode Intelligence persona | agent preset (this repo) |
Wiring the MCP server globally would put ~26 large tool schemas (~6k+ tokens/request) into every session. Mounting it inside a preset keeps the cost only in sessions that opt in — pick Apple Mode when creating a session, and you get the whole stack; other sessions stay lean.
Requirements
- macOS
- DeepSeek Harness:
npx @deepseek-ai/dsh web - Xcode 26+ (contains
mcpbridgeandxcrun agent skills export). To use the MCP tools, Xcode must be running with the target project open, and you must click Allow on the MCP access dialog Xcode shows (see Usage).
Install
git clone https://github.com/jihongboo/dsh-apple-mode.git
cd dsh-apple-mode
./install.sh
install.sh does three things:
- Detects your Xcode installs and lets you choose which one provides
mcpbridge(see below). - Installs the
appleagent preset →~/.dsh/.agent-presets/apple/(existing copy is backed up). - Generates the 10 Xcode AI skills on your machine via
xcrun agent skills exportand merges them into~/.agents/skills/(the DSH skill root, hot-reloaded by the filesystem watcher).
Why no vendored skills? The skills are Apple-authored guidance. Generating them from your own Xcode at install time avoids redistributing Apple content — the repo ships only our own code, config, and docs.
Choosing an Xcode (multiple installs)
If you have several Xcode versions (e.g. Xcode.app, Xcode-beta.app, Xcode-26.2.app), mcpbridge lives in each one's Contents/Developer/usr/bin — and only in Xcode 26+. install.sh scans /Applications for every install that provides it and prompts you to pick:
Found Xcode installs providing mcpbridge:
1) /Applications/Xcode-beta.app/Contents/Developer (xcode-select default)
2) /Applications/Xcode.app/Contents/Developer
Choose (1-2, default 1):
- Default = the Xcode selected by
xcode-select→ the preset usescommand: xcrun mcpbridge(portable; follows futurexcode-selectchanges). - Pick another → the chosen
…/Contents/Developer/usr/bin/mcpbridgeis baked into the installed preset as an absolute path. - Non-interactive:
./install.sh --xcode /Applications/Xcode.app(or--xcode …/Contents/Developer);./install.sh --list-xcodesprints the candidates. - Switch at runtime without reinstalling:
./install.sh --runtime-selectableinstallsbin/mcpbridgeas the command; setDSH_XCODE_DEVELOPER_DIR=/Applications/…/Contents/Developerwhen launchingdshto switch. (Resolution:DSH_XCODE_DEVELOPER_DIR→xcrun→ newest/Applications/Xcode*.app.) - Drive a specific running Xcode instance: add
env: { MCP_XCODE_PID: '<pid>' }to themcp-xcoderow of the installed preset.
To change the choice later: re-run ./install.sh, edit the mcp-xcode row in ~/.dsh/.agent-presets/apple/agent.cordis.yml, or use the runtime env var above.
Alternative: global bundle (MCP in every session)
dsh plugin --profile web add "github:jihongboo/dsh-apple-mode"
Installs the cordis.patch.yml bundle, which wires the Xcode MCP server into every session of the profile — no preset selection needed, at the cost of the tool-schema tokens in all sessions. Use one install path, not both: each registers serverName: xcode, and a duplicate server name fails the later instance at load. See docs/global-mcp.md.
Usage
- Restart
dsh(or just open a new session — the preset can only be selected on a blank session). - Pick Apple Mode as the agent preset when creating the session.
- The session now has:
mcp__xcode__*tools — operate the open Xcode workspace:XcodeRead/Write/Update/MV/RM,XcodeGlob/Grep/LS,UpdateTargetBuildSetting/UpdateFileCompilerFlags,XcodeListNavigatorIssues, scheme/run-destination/test-plan switching,XcodeNewTarget,StringCatalogRead/Edit, …- All Apple platform skills (lazy-loaded on demand).
- An Apple-first, tool-assisted working style.
Before using the
mcp__xcode__*tools:
- Xcode must be running with the project/workspace you want to work on opened in it.
- On first connection, Xcode shows an MCP access dialog — click Allow (允许). Until you do, tool calls will be rejected.
Build/run/test still happen from the terminal (xcodebuild, pipe through xcsift for structured output); the MCP toolset covers project surgery, build settings, diagnostics, destinations, and localization.
What you get
MCP tools (26, namespaced mcp__xcode__*)
| Group | Tools |
|---|---|
| Project I/O | XcodeRead XcodeWrite XcodeUpdate XcodeMV XcodeRM XcodeMakeDir |
| Search | XcodeGlob XcodeGrep XcodeLS |
| Targets & settings | XcodeNewTarget XcodeListTemplates XcodeListTargets UpdateTargetBuildSetting UpdateFileCompilerFlags |
| Scheme / destination / tests | XcodeListSchemes XcodeSwitchScheme XcodeListRunDestinations XcodeSwitchRunDestination XcodeListTestPlans XcodeSwitchTestPlan |
| Diagnostics | XcodeListNavigatorIssues XcodeRefreshCodeIssuesInFile |
| Localization | StringCatalogRead StringCatalogEdit |
| Windows | XcodeListWindows XcodeGetCurrentFile |
Skills (10, generated at install time)
swiftui-specialist · swiftui-whats-new-27 · app-intents-specialist · app-intents-whats-new-27 · audit-xcode-security-settings · adopt-c-bounds-safety · uikit-app-modernization · modernize-tests · device-interaction · building-document-based-swiftui-applications
Repository layout
.
├── presets/apple/ # The agent preset: agent.cordis.yml + preset.yml
├── bin/mcpbridge # Runtime-selectable mcpbridge launcher (--runtime-selectable)
├── cordis.patch.yml # Global-MCP bundle patch (dsh plugin add)
├── package.json # Bundle manifest (dsh.bundle.patch)
├── docs/
│ ├── XCODE_AI_INTEGRATION.md # Full integration notes (Chinese)
│ └── global-mcp.md # Alternative: wire the MCP server into every session
├── install.sh # Xcode picker + preset install + local skills generation
├── uninstall.sh
└── LICENSE # MIT
Customization
- Different Xcode: re-run
./install.sh(picker),./install.sh --xcode <path>(non-interactive),--runtime-selectable+DSH_XCODE_DEVELOPER_DIR, or addenv: { MCP_XCODE_PID: '<pid>' }to themcp-xcoderow to drive a specific running instance. See Choosing an Xcode. - Persona: edit the
personarow text in the same file. - Sync skills after Xcode updates: re-run
./install.sh(skills are replaced, preset is backed up). - Keep in sync with upstream
standardpreset:diffagainstnode_modules/@deepseek-ai/dsh/config/agent-presets/standard/agent.cordis.yml.
Security notes
- MCP tool calls do not go through the DSH file sandbox — they go through the tool-approval flow.
XcodeUpdate/XcodeWritemodify real Xcode project files (includingproject.pbxproj). - The preset only activates when you select it; no global config is touched by
install.sh.
Contributing
PRs welcome. Open an issue for feature requests. If you publish your own DSH extension, add the dsh-plugin topic for discoverability and consider submitting it to awesome-dsh-plugin.
License
MIT. The Xcode AI skills are generated on your machine from your own Xcode installation and remain subject to Apple's license; the persona prompt style is adapted from Xcode Intelligence templates (behavioral guidance, not Apple source text).
Similar plugins
by xingtu1996
DeepSeek Harness (DSH) plugin: 26 production AI-agent skills (Caveman token compression, Ponytail minimalism, engineering practice) as a standard dsh-plugin bundle. 行途技能 DSH 插件包
★ 0
MIT
Python
Sep 12, 2026
dsh plugin --profile web add dsh-xingtu-skillsby JohnXu22786
Code knowledge graph plugin for agent harnesses (dsh): indexes symbols, call sites and imports into SQLite, answers call/dependency questions via CLI or stdio MCP tool server
★ 4
↓ 66/wk
MIT
Python
Sep 14, 2026
dsh plugin --profile web add dsh-codegraphby andyfan1094
DSH bundle that bridges the Codebase Memory MCP code knowledge graph into DSH via the official @deepseek-ai/dsh-mcp-client.
★ 3
JavaScript
Aug 26, 2026
dsh plugin --profile web add dsh-codebase-memoryby ouli-1242
一站式管理 DSH 的 MCP 服务与 Skills:工具级开关、密钥打码、技能回收站 | Unified MCP & skills manager for DeepSeek Harness: per-tool toggles, secret masking, skill trash
★ 3
MIT
JavaScript
Sep 14, 2026
dsh plugin --profile web add dsh-plugin-tool-managementby why913
DeepSeek Harness(dsh)的 MCP / Skill / 记忆管理工具:写入前先连接自检,连不上不写;从 Claude Code / Codex 一键迁移;可装成 dsh 插件,在 Web 里用 /mcp 命令和卡片操作。
★ 6
↓ 78/wk
MIT
JavaScript
Aug 17, 2026
dsh plugin --profile web add @why913/dshxby kuaiyukuaikuai
DSH plugin: scan other AI agents (Codex, Claude Code, cc-switch, Hermes, opencode, Gemini, Grok, Kimi, CodeBuddy, Trae, OpenClaw, Qoder, WorkBuddy, Cursor, ...) and one-click sync their MCP servers an
★ 4
MIT
JavaScript
Aug 20, 2026
dsh plugin --profile web add dsh-agent-sync