Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

apple-developer-toolkitApple 开发者 toolkit

Agent Skill

apple-developer-toolkit 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

42,696

周安装

1,779

GitHub Stars

1

下载量

14,232
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:apple-developer-toolkit(Apple 开发者 toolkit)
来源仓库:https://github.com/abdullah4ai/apple-developer-toolkit
安装命令:
openclaw skills install apple-developer-toolkit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install apple-developer-toolkit

简介

apple-developer-toolkit 整合框架文档、符号索引和 API 搜索三大功能于一体。

  • 适用于 Xcode 插件开发、Swift/Objective-C 代码导航或学习参考场景。
  • 在 OpenClaw 中输入符号名或框架名即可快速定位相关文档片段。
  • 依赖本地二进制文件运行,需定期更新以保持与最新 SDK 同步。
  • 搜索结果来自官方文档缓存,不包含私有 API 或未公开接口信息。

SKILL.md

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

Apple Developer Toolkit

Three tools in one binary. Each part works independently with different credential requirements.

Architecture

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.

Credential Requirements by Feature

FeatureCredentials NeededWorks Without Setup
Documentation Search (Part 1)NoneYes
App Store Connect (Part 2)App Store Connect API key (.p8)No
iOS App Builder (Part 3)LLM API key + XcodeNo

Setup

Part 1: Documentation Search (no setup needed)

Works immediately with Node.js:

node cli.js search "NavigationStack"

Part 2: App Store Connect CLI

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

Part 3: iOS App Builder

Prerequisites: Xcode (with iOS Simulator), XcodeGen, and an LLM API key for code generation.

appledev build setup    # Checks and installs prerequisites

Build from source

bash scripts/setup.sh

Part 1: Documentation Search

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"

Part 2: App Store Connect

Full reference: references/app-store-connect.md

TaskCommand
List appsappledev store apps
Upload buildappledev store builds upload --app "APP_ID" --ipa "app.ipa" --wait
Find build by numberappledev store builds find --app "APP_ID" --build-number "42"
Wait for build processingappledev store builds wait --build "BUILD_ID"
Publish TestFlightappledev store publish testflight --app "APP_ID" --ipa "app.ipa" --group "Beta" --wait
Submit App Storeappledev store publish appstore --app "APP_ID" --ipa "app.ipa" --submit --confirm --wait
Pre-submission validationappledev store validate --app "APP_ID" --version-id "VERSION_ID"
List certificatesappledev store certificates list
Reviewsappledev store reviews --app "APP_ID" --output table
Update localizationsappledev store localizations update --app "APP_ID" --locale "en-US" --name "My App"
Sales reportappledev store analytics sales --vendor "VENDOR" --type SALES --subtype SUMMARY --frequency DAILY --date "2024-01-20"
Xcode Cloudappledev store xcode-cloud run --app "APP_ID" --workflow "CI" --branch "main" --wait
Notarizeappledev store notarization submit --file ./MyApp.zip --wait
Status dashboardappledev store status --app "APP_ID" --output table
Weekly insightsappledev store insights weekly --app "APP_ID" --source analytics
Metadata pullappledev store metadata pull --app "APP_ID" --version "1.2.3" --dir ./metadata
Release notesappledev store release-notes generate --since-tag "v1.2.2"
Diff localizationsappledev store diff localizations --app "APP_ID" --path ./metadata
Nominationsappledev store nominations create --app "APP_ID" --name "Launch"
Price point filterappledev 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

Environment Variables

All environment variables are optional. They override flags when set.

VariableDescription
APPSTORE_KEY_IDAPI Key ID
APPSTORE_ISSUER_IDAPI Issuer ID
APPSTORE_PRIVATE_KEY_PATHPath to .p8 key file
APPSTORE_PRIVATE_KEYRaw private key string
APPSTORE_PRIVATE_KEY_B64Base64-encoded private key
APPSTORE_APP_IDDefault app ID
APPSTORE_PROFILEDefault auth profile
APPSTORE_DEBUGEnable debug output
APPSTORE_TIMEOUTRequest timeout
APPSTORE_BYPASS_KEYCHAINSkip system keychain

Part 3: Multi-Platform App Builder

Supports iOS, watchOS, tvOS, and iPad. Generates complete Swift/SwiftUI apps from natural language with AI-powered code generation.

appledev build                     # Interactive mode
appledev build setup               # Install prerequisites (Xcode, XcodeGen, AI backend)
appledev build fix                 # Auto-fix build errors
appledev build run                 # Build and launch in simulator
appledev build open                # Open project in Xcode
appledev build chat                # Interactive chat mode (edit/ask questions)
appledev build info                # Show project status
appledev build usage               # Token usage and cost

Supported Platforms

PlatformStatus
iOSFull support
iPadFull support
macOSSupported
watchOSSupported
tvOSSupported
visionOSSupported

How it works

describe > analyze > plan > build > fix > run
  1. Analyze - Extracts app name, features, core flow, target platform from description
  2. Plan - Produces file-level build plan: data models, navigation, design
  3. Build - Generates Swift source files, project.yml, asset catalog
  4. Fix - Compiles and auto-repairs until build succeeds
  5. Run - Boots Simulator and launches the app

Interactive commands

CommandDescription
/runBuild and launch in simulator
/fixAuto-fix compilation errors
/openOpen project in Xcode
/ask [question]Ask a question about the project
/model [name]Switch model (sonnet, opus, haiku)
/infoShow project info
/usageToken usage and cost

References

ReferenceContent
references/app-store-connect.mdComplete App Store Connect CLI commands
references/ios-rules/38 iOS development rules
references/swiftui-guides/12 SwiftUI best practice guides
references/ios-app-builder-prompts.mdSystem prompts for app building

iOS Rules (38 files)

accessibility, app_clips, app_review, apple_translation, biometrics, camera, charts, color_contrast, components, dark_mode, design-system, feedback_states, file-structure, forbidden-patterns, foundation_models, gestures, haptics, healthkit, live_activities, localization, maps, mvvm-architecture, navigation-patterns, notification_service, notifications, safari_extension, share_extension, siri_intents, spacing_layout, speech, storage-patterns, swift-conventions, timers, typography, view-composition, view_complexity, website_links, widgets

SwiftUI Guides (12 files)

animations, forms-and-input, layout, liquid-glass, list-patterns, media, modern-apis, navigation, performance, scroll-patterns, state-management, text-formatting

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

86.93%
按下载量换算12,372

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills