Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill xcode-cli명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | xcode-cli |
| description | >- Use when this capability is needed. |
Interact with Xcode through the xcode-cli CLI backed by the Xcode MCP bridge.
xcode-cli is installed: npm install -g xcode-clixcode-cli-ctl install (background) or xcode-cli-ctl run (foreground)All commands: xcode-cli <cmd> [args]. When run from a project directory the matching Xcode tab is auto-selected. Use --tab <tabIdentifier> to override, or run xcode-cli windows to list available tabs. Add --json for JSON output.
| Command | Usage | Notes |
|---|---|---|
windows | windows | List tabs/workspaces; get tabIdentifier |
status | status | Quick project status (windows + issues) |
build | build | Build project |
build-log | build-log --severity error | View build errors |
run | run | Build first, then run if build succeeds; returns JSON with build errors on failure |
run-without-build | run-without-build | Run without building (like Ctrl+Cmd+R) |
issues | issues --severity error | Navigator issues |
file-issues | file-issues "MyApp/Sources/MyFile.swift" | Single-file diagnostics, no full build |
test | test all / test list [--json] / test some "Target::Class/method()" | Run/list tests |
preview | preview "MyApp/Sources/MyView.swift" --out ./out | SwiftUI preview (requires #Preview macro) |
snippet | snippet "MyApp/Sources/File.swift" "print(expr)" --purpose "Inspect value" | Execute code snippet in file context; --purpose describes why |
doc | doc "SwiftUI NavigationStack" --frameworks SwiftUI | Search Apple documentation |
read | read "path/to/file" | Read file |
ls | ls [-r] / | List directory |
grep | grep "TODO|FIXME" | Search files |
glob | glob "**/*.swift" | Find files by pattern |
write | write "path/to/file" "content" | Write file |
update | update "path/to/file" "old" "new" [--replace-all] | Edit file |
mv | mv "Old.swift" "New.swift" | Move/rename file |
mkdir | mkdir "MyApp/Sources/Feature" | Create directory |
rm | rm "MyApp/Sources/Unused.swift" | Delete file |
xcode-cli-ctl status then xcode-cli-ctl uninstall && xcode-cli-ctl install.xcode-cli call <toolName> --args '{"key":"value"}' to invoke any MCP tool directly.run builds via MCP first; if the build fails, it returns the build error JSON and exits with code 1. On success it triggers run-without-build via AppleScript and returns { buildResult, runTriggered }.run-without-build uses AppleScript to send a keyboard shortcut to Xcode; ensure Accessibility access is granted to Terminal/iTerm in System Settings → Privacy & Security → Accessibility.targetName + identifier from test list --json for exact test targeting. test some only runs tests from the active scheme's active test plan — switch scheme in Xcode if a target is missing.Source: dazuiba/xcode-cli-skill — distributed by TomeVault.