All-in-one Apple developer skill with three integrated tools shipped as a single unified binary. (1) Documentation search across Apple frameworks, symbols, a...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install apple-developer-toolkit或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install apple-developer-toolkit⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/apple-developer-toolkit/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: apple-developer-toolkit description: "All-in-one Apple developer skill with three integrated tools shipped as a single unified binary. (1) Documentation search across Apple frameworks, symbols, and 1,267 WWDC sessions from 2014-2025. No credentials needed. (2) App Store Connect CLI with 120+ commands covering builds (find/wait/upload), TestFlight, pre-submission validate, submissions, signing, subscriptions (family-sharable), IAP, analytics, Xcode Cloud, metadata workflows, release pipeline dashboard, insights, win-back offers, promoted purchases, product pages, nominations, accessibility declarations, pre-orders, pricing filters, localizations update, diff, webhooks with local receiver, workflow automation, and more. Requires App Store Connect API key. (3) Multi-platform app builder (iOS/watchOS/tvOS/iPad/macOS/visionOS) that generates complete Swift/SwiftUI apps from natural language with auto-fix, simulator launch, interactive chat mode, and open-in-Xcode. Requires an LLM API key and Xcode. Includes 38 iOS development rules and 12 SwiftUI best practice guides for Liquid Glass, navigation, state management, and modern APIs. All three tools ship as one binary (appledev). USE WHEN: Apple API docs, App Store Connect management, WWDC lookup, or building iOS/watchOS/tvOS/macOS/visionOS apps from scratch. DON'T USE WHEN: non-Apple platforms or general coding." metadata: { "openclaw": { "emoji": "🍎", "requires": { "bins": ["node"], "anyBins": ["appledev"], }, "install": [ { "id": "appledev", "kind": "brew", "tap": "Abdullah4AI/tap", "formula": "appledev", "bins": ["appledev"], "label": "Apple Developer Toolkit - unified binary (Homebrew)", }, ], "env": { "optional": [ { "name": "APPSTORE_KEY_ID", "description": "App Store Connect API Key ID. Required only for App Store Connect features. Get from https://appstoreconnect.apple.com/access/integrations/api", }, { "name": "APPSTORE_ISSUER_ID", "description": "App Store Connect API Issuer ID. Required only for App Store Connect features.", }, { "name": "APPSTORE_PRIVATE_KEY_PATH", "description": "Path to App Store Connect API .p8 private key file. Required only for App Store Connect features. Alternative: use APPSTORE_PRIVATE_KEY or APPSTORE_PRIVATE_KEY_B64.", }, { "name": "LLM_API_KEY", "description": "LLM API key for code generation. Required only for iOS App Builder. Supports multiple AI backends.", }, ], }, }, } ---
Three tools in one binary. Each part works independently with different credential requirements.
Ships as a single unified binary appledev with multi-call support:
appledev build ... # iOS app builder (SwiftShip)
appledev store ... # App Store Connect CLI
appledev b ... # Short alias
appledev s ... # Short alias
One binary, three tools, zero duplication.
| Feature | Credentials Needed | Works Without Setup | |---------|-------------------|-------------------| | Documentation Search (Part 1) | None | Yes | | App Store Connect (Part 2) | App Store Connect API key (.p8) | No | | iOS App Builder (Part 3) | LLM API key + Xcode | No |
Works immediately with Node.js:
node cli.js search "NavigationStack"
Install via Homebrew:
brew install Abdullah4AI/tap/appledev
Authenticate with your App Store Connect API key:
appledev store auth login --name "MyApp" --key-id "KEY_ID" --issuer-id "ISSUER_ID" --private-key /path/to/AuthKey.p8
Or set environment variables:
export APPSTORE_KEY_ID="your-key-id"
export APPSTORE_ISSUER_ID="your-issuer-id"
export APPSTORE_PRIVATE_KEY_PATH="/path/to/AuthKey.p8"
API keys are created at https://appstoreconnect.apple.com/access/integrations/api
Prerequisites: Xcode (with iOS Simulator), XcodeGen, and an LLM API key for code generation.
appledev build setup # Checks and installs prerequisites
bash scripts/setup.sh
node cli.js search "NavigationStack"
node cli.js symbols "UIView"
node cli.js doc "/documentation/swiftui/navigationstack"
node cli.js overview "SwiftUI"
node cli.js samples "SwiftUI"
node cli.js wwdc-search "concurrency"
node cli.js wwdc-year 2025
node cli.js wwdc-topic "swiftui-ui-frameworks"
Full reference: references/app-store-connect.md
| Task | Command | |------|---------| | List apps | appledev store apps | | Upload build | appledev store builds upload --app "APP_ID" --ipa "app.ipa" --wait | | Find build by number | appledev store builds find --app "APP_ID" --build-number "42" | | Wait for build processing | appledev store builds wait --build "BUILD_ID" | | Publish TestFlight | appledev store publish testflight --app "APP_ID" --ipa "app.ipa" --group "Beta" --wait | | Submit App Store | appledev store publish appstore --app "APP_ID" --ipa "app.ipa" --submit --confirm --wait | | Pre-submission validation | appledev store validate --app "APP_ID" --version-id "VERSION_ID" | | List certificates | appledev store certificates list | | Reviews | appledev store reviews --app "APP_ID" --output table | | Update localizations | appledev store localizations update --app "APP_ID" --locale "en-US" --name "My App" | | Sales report | appledev store analytics sales --vendor "VENDOR" --type SALES --subtype SUMMARY --frequency DAILY --date "2024-01-20" | | Xcode Cloud | appledev store xcode-cloud run --app "APP_ID" --workflow "CI" --branch "main" --wait | | Notarize | appledev store notarization submit --file ./MyApp.zip --wait | | Status dashboard | appledev store status --app "APP_ID" --output table | | Weekly insights | appledev store insights weekly --app "APP_ID" --source analytics | | Metadata pull | appledev store metadata pull --app "APP_ID" --version "1.2.3" --dir ./metadata | | Release notes | appledev store release-notes generate --since-tag "v1.2.2" | | Diff localizations | appledev store diff localizations --app "APP_ID" --path ./metadata | | Nominations | appledev store nominations create --app "APP_ID" --name "Launch" | | Price point filter | appledev store pricing price-points --app "APP_ID" --price 0.99 | | IAP (family sharable) | appledev store iap create --app "APP_ID" --family-sharable | | Subscription (family sharable) | appledev store subscriptions create --app "APP_ID" --family-sharable |
All environment variables are optional. They override flags when set.
| Variable | Description | |----------|-------------| | APPSTORE_KEY_ID | API Key ID | | APPSTORE_ISSUER_ID | API Issuer ID | | APPSTORE_PRIVATE_KEY_PATH | Path to .p8 key file | | APPSTORE_PRIVATE_KEY | Raw private key string | | APPSTORE_PRIVATE_KEY_B64 | Base64-encoded private key | | APPSTORE_APP_ID | Default app ID | | APPSTORE_PROFILE | Default auth profile | | APPSTORE_DEBUG | Enable debug output | | APPSTORE_TIMEOUT | Request timeout | | APPSTORE_BYPASS_KEYCHAIN | Skip system keychain |
Supports iOS, watchOS, tvOS, and iPad. Generates complete Swift/SwiftUI apps from natural language with AI-powered code generation.
...
安装 Apple Developer Toolkit 后,可以对 AI 说这些话来触发它
Help me get started with Apple Developer Toolkit
Explains what Apple Developer Toolkit does, walks through the setup, and runs a quick demo based on your current project
Use Apple Developer Toolkit to all-in-one Apple developer skill with three integrated tools shippe...
Invokes Apple Developer Toolkit with the right parameters and returns the result directly in the conversation
What can I do with Apple Developer Toolkit in my developer & devops workflow?
Lists the top use cases for Apple Developer Toolkit, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/apple-developer-toolkit/ 目录(个人级,所有项目可用),或 .claude/skills/apple-developer-toolkit/(项目级)。重启 AI 客户端后,用 /apple-developer-toolkit 主动调用,或让 AI 根据上下文自动发现并使用。
Apple Developer Toolkit 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Apple Developer Toolkit 可免费安装使用。请查阅仓库了解许可证信息。
All-in-one Apple developer skill with three integrated tools shipped as a single unified binary. (1) Documentation search across Apple frameworks, symbols, a...
Apple Developer Toolkit 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Apple Developer Toolkit
Identifies repetitive steps in your workflow and sets up Apple Developer Toolkit to handle them automatically