Apple Developer Toolkit
This skill has two execution surfaces plus a local Apple docs corpus. Each part works independently with different requirements.
Architecture
Use the right entry point for the job:
node cli.js search ... # Apple docs + WWDC lookup from this repo
appledev build ... # SwiftShip app builder
appledev store ... # App Store Connect CLI
appledev ios ... # Build iOS Apps plugin workflows in the CLI
appledev macos ... # Build macOS Apps plugin workflows in the CLI
Important: appledev --help exposes build, store, ios, and macos. Docs lookup is repo-local through node cli.js.
Codex Build iOS/macOS Plugin Features
The OpenAI Codex Build iOS Apps and Build macOS Apps plugin features are implemented directly in the CLI:
appledev ios features|doctor|mcp-config|simulators|build|screenshot|logs|mirror|memgraph|ettrace
appledev macos features|doctor|bootstrap|run|logs|codesign-inspect
Load references/codex-build-ios-macos-workflows.md for the detailed feature map and proof loops.
Agent Setup
Before asking the user for defaults, read config.json in this skill directory.
- Keep non-secret setup defaults in
config.json
- Keep durable agent-side notes or run logs in
${CLAUDE_PLUGIN_DATA}/apple-developer-toolkit/
- Keep secrets out of repo files. Use env vars or Keychain-backed flows instead
Agent Skills Installation
Use the current Agent Skills CLI syntax when installing this repository into coding agents:
# Install both skills
npx skills add Abdullah4AI/apple-developer-toolkit
# Install a specific skill
npx skills add Abdullah4AI/apple-developer-toolkit --skill ios-rules
npx skills add Abdullah4AI/apple-developer-toolkit --skill swiftui-guides
Supported agents include Claude Code, Codex, Cursor, Windsurf, Gemini CLI, and any agent that supports the Agent Skills format. For Codex or Cursor, install the same skills with npx skills add ... from the project where the agent should use the Apple rules, then let the agent load the generated skill instructions from that workspace.
Agent Safety, Permissions, and Observability
Use this skill with strict agent-operating rules so Apple workflows do not poison future context or create unintended side effects.
Memory Discipline
- Do not save task logs, raw Apple docs output, generated code snippets, App Store state, build errors, credentials, or temporary decisions to persistent memory
- Save only stable reusable facts: user preferences, environment conventions, tool quirks, or confirmed setup details that will matter in future sessions
- Prefer skill references, local artifacts, run summaries, and status files over memory for workflow state
Tool Permission Design
- Read-only by default:
node cli.js search, symbols, doc, overview, samples, wwdc-*, appledev store ... list/status/validate/diff/docs/doctor, and reading reference files
- Requires explicit user approval before side effects: App Store Connect creates/updates/deletes, TestFlight publish, App Store submit, metadata/localization updates, pricing/IAP/subscription changes, certificate/profile/device changes, webhooks, notarization, uploads, Xcode Cloud runs,
appledev build project writes, simulator launches, or hook installation
- Never use publishing or external-posting tools outside their stated surface. In particular, this skill must not post to X/Twitter or invoke any X publishing command
- If a command can mutate App Store Connect or a local project, state the target app/project, expected change, and whether credentials will be used before running it
- Prefer dry-run, diff, status, validate, or docs commands before mutating commands when available
Observability Requirements
For non-trivial runs, create or preserve enough artifacts to audit what happened:
- Logs: keep command output or tool output relevant to the decision
- Traces: note the command path used, for example
node cli.js vs appledev store vs appledev build
- Artifacts: write generated plans, diffs, reports, metadata exports, or build summaries to project-local files when appropriate
- Status files: for long app-builder or release workflows, keep a small status/summary file with current step, target app/project, next safe action, and blockers
- Run summaries: finish with what was checked, what changed, what did not change, and remaining risks
Workflow Orchestration
- Route tasks explicitly: docs lookup →
node cli.js; App Store Connect → appledev store; app scaffolding/fix loops → appledev build; platform/design rules → relevant references/ files
- Break multi-step release or build work into inspect → plan → dry-run/validate → execute with approval → verify → summarize
- Use specialized references progressively. Load only the relevant
references/apple-*.md, references/ios-rules/, or references/swiftui-guides/ material needed for the task
- Stop and ask when ambiguity changes side effects, such as which app ID, bundle ID, release version, TestFlight group, pricing, certificate, or project path to mutate
Credential Requirements by Feature
| 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 |
Setup
Check config.json first for local defaults and paths.
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
The setup script builds appledev, copies it to /opt/homebrew/bin/appledev, and symlinks swiftship plus appstore to the same binary.
Gotchas
- Apple docs and WWDC lookup are not exposed through
appledev --help right now. Use node cli.js ... from this repo for those tasks
- Help text inside
cli.js mentions apple-docs ..., but a separate apple-docs binary may not be installed. In this skill, node cli.js ... is the safe path
appledev store ... needs App Store Connect credentials. If they are missing, authenticate with appledev store auth login or env vars before trying release actions
appledev build ... is macOS-only in practice and depends on Xcode, Simulator support, and an LLM API key. Do not assume it will work in a generic sandbox
- Hook config lives outside the repo at
~/.appledev/hooks.yaml and optionally inside projects at .appledev/hooks.yaml. Use templates/hooks-*.yaml as starting points instead of writing YAML from scratch
- Do not write secrets into
config.json, templates, or repo files
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
| 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 |
Environment Variables
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 |
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
| Platform |
Status |
| iOS |
Full support |
| iPad |
Full support |
| macOS |
Supported |
| watchOS |
Supported |
| tvOS |
Supported |
| visionOS |
Supported |
How it works
describe > analyze > plan > build > fix > run
- Analyze - Extracts app name, features, core flow, target platform from description
- Plan - Produces file-level build plan: data models, navigation, design
- Build - Generates Swift source files, project.yml, asset catalog
- Fix - Compiles and auto-repairs until build succeeds
- Run - Boots Simulator and launches the app
Interactive commands
| Command |
Description |
/run |
Build and launch in simulator |
/fix |
Auto-fix compilation errors |
/open |
Open project in Xcode |
/ask [question] |
Ask a question about the project |
/model [name] |
Switch model (sonnet, opus, haiku) |
/info |
Show project info |
/usage |
Token usage and cost |
References
| Reference |
Content |
| references/app-store-connect.md |
Complete 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.md |
System 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
Consolidated Apple/Swiftship references
This umbrella absorbed the former one-feature/one-phase Apple skills. Load the targeted reference instead of relying on narrow active sibling skills:
references/apple-features-skills.md — App Store Connect, framework features, monetization, assets, and app services.
references/apple-ui-skills.md — accessibility, layout, typography, animations, glass, gestures, and view composition.
references/apple-extensions-skills.md — widgets, App Clips, Live Activities, Safari/share/notification extensions.
references/apple-phases-skills.md — Swiftship analyzer/planner/builder/editor/fixer/recovery routing.
references/apple-always-skills.md and platform variants — shared SwiftUI, design-system, layout, components, navigation, review guidance.
1---2name: apple-developer-toolkit3description: Apple platform skill for docs, WWDC lookup, App Store Connect work, SwiftUI app generation, and Codex Build iOS/macOS plugin workflows now exposed directly in the CLI. Use repo-local `node cli.js` for Apple docs/WWDC, `appledev store` for App Store Connect, `appledev build` for app scaffolding/fix loops, `appledev ios` for Simulator build-run-debug/UI/log/memgraph/ETTrace workflows, and `appledev macos` for shell-first macOS build/run/log/signing workflows. USE WHEN: Apple APIs, WWDC sessions, TestFlight/App Store tasks, or building/fixing Apple-platform apps. DON'T USE WHEN: non-Apple platforms or generic backend work.4---56# Apple Developer Toolkit78This skill has two execution surfaces plus a local Apple docs corpus. Each part works independently with different requirements.910## Architecture1112Use the right entry point for the job:13```14node cli.js search ... # Apple docs + WWDC lookup from this repo15appledev build ... # SwiftShip app builder16appledev store ... # App Store Connect CLI17appledev ios ... # Build iOS Apps plugin workflows in the CLI18appledev macos ... # Build macOS Apps plugin workflows in the CLI19```2021Important: `appledev --help` exposes `build`, `store`, `ios`, and `macos`. Docs lookup is repo-local through `node cli.js`.2223## Codex Build iOS/macOS Plugin Features2425The OpenAI Codex `Build iOS Apps` and `Build macOS Apps` plugin features are implemented directly in the CLI:2627- `appledev ios features|doctor|mcp-config|simulators|build|screenshot|logs|mirror|memgraph|ettrace`28- `appledev macos features|doctor|bootstrap|run|logs|codesign-inspect`2930Load `references/codex-build-ios-macos-workflows.md` for the detailed feature map and proof loops.3132## Agent Setup3334Before asking the user for defaults, read `config.json` in this skill directory.3536- Keep non-secret setup defaults in `config.json`37- Keep durable agent-side notes or run logs in `${CLAUDE_PLUGIN_DATA}/apple-developer-toolkit/`38- Keep secrets out of repo files. Use env vars or Keychain-backed flows instead3940## Agent Skills Installation4142Use the current Agent Skills CLI syntax when installing this repository into coding agents:4344```bash45# Install both skills46npx skills add Abdullah4AI/apple-developer-toolkit4748# Install a specific skill49npx skills add Abdullah4AI/apple-developer-toolkit --skill ios-rules50npx skills add Abdullah4AI/apple-developer-toolkit --skill swiftui-guides51```5253Supported agents include Claude Code, Codex, Cursor, Windsurf, Gemini CLI, and any agent that supports the Agent Skills format. For Codex or Cursor, install the same skills with `npx skills add ...` from the project where the agent should use the Apple rules, then let the agent load the generated skill instructions from that workspace.5455## Agent Safety, Permissions, and Observability5657Use this skill with strict agent-operating rules so Apple workflows do not poison future context or create unintended side effects.5859### Memory Discipline6061- Do not save task logs, raw Apple docs output, generated code snippets, App Store state, build errors, credentials, or temporary decisions to persistent memory62- Save only stable reusable facts: user preferences, environment conventions, tool quirks, or confirmed setup details that will matter in future sessions63- Prefer skill references, local artifacts, run summaries, and status files over memory for workflow state6465### Tool Permission Design6667- Read-only by default: `node cli.js search`, `symbols`, `doc`, `overview`, `samples`, `wwdc-*`, `appledev store ... list/status/validate/diff/docs/doctor`, and reading reference files68- Requires explicit user approval before side effects: App Store Connect creates/updates/deletes, TestFlight publish, App Store submit, metadata/localization updates, pricing/IAP/subscription changes, certificate/profile/device changes, webhooks, notarization, uploads, Xcode Cloud runs, `appledev build` project writes, simulator launches, or hook installation69- Never use publishing or external-posting tools outside their stated surface. In particular, this skill must not post to X/Twitter or invoke any X publishing command70- If a command can mutate App Store Connect or a local project, state the target app/project, expected change, and whether credentials will be used before running it71- Prefer dry-run, diff, status, validate, or docs commands before mutating commands when available7273### Observability Requirements7475For non-trivial runs, create or preserve enough artifacts to audit what happened:7677- Logs: keep command output or tool output relevant to the decision78- Traces: note the command path used, for example `node cli.js` vs `appledev store` vs `appledev build`79- Artifacts: write generated plans, diffs, reports, metadata exports, or build summaries to project-local files when appropriate80- Status files: for long app-builder or release workflows, keep a small status/summary file with current step, target app/project, next safe action, and blockers81- Run summaries: finish with what was checked, what changed, what did not change, and remaining risks8283### Workflow Orchestration8485- Route tasks explicitly: docs lookup → `node cli.js`; App Store Connect → `appledev store`; app scaffolding/fix loops → `appledev build`; platform/design rules → relevant `references/` files86- Break multi-step release or build work into inspect → plan → dry-run/validate → execute with approval → verify → summarize87- Use specialized references progressively. Load only the relevant `references/apple-*.md`, `references/ios-rules/`, or `references/swiftui-guides/` material needed for the task88- Stop and ask when ambiguity changes side effects, such as which app ID, bundle ID, release version, TestFlight group, pricing, certificate, or project path to mutate8990## Credential Requirements by Feature9192| Feature | Credentials Needed | Works Without Setup |93|---------|-------------------|-------------------|94| Documentation Search (Part 1) | None | Yes |95| App Store Connect (Part 2) | App Store Connect API key (.p8) | No |96| iOS App Builder (Part 3) | LLM API key + Xcode | No |9798## Setup99100Check `config.json` first for local defaults and paths.101102### Part 1: Documentation Search (no setup needed)103104Works immediately with Node.js:105106```bash107node cli.js search "NavigationStack"108```109110### Part 2: App Store Connect CLI111112Install via Homebrew:113114```bash115brew install Abdullah4AI/tap/appledev116```117118Authenticate with your App Store Connect API key:119120```bash121appledev store auth login --name "MyApp" --key-id "KEY_ID" --issuer-id "ISSUER_ID" --private-key /path/to/AuthKey.p8122```123124Or set environment variables:125126```bash127export APPSTORE_KEY_ID="your-key-id"128export APPSTORE_ISSUER_ID="your-issuer-id"129export APPSTORE_PRIVATE_KEY_PATH="/path/to/AuthKey.p8"130```131132API keys are created at https://appstoreconnect.apple.com/access/integrations/api133134### Part 3: iOS App Builder135136Prerequisites: Xcode (with iOS Simulator), XcodeGen, and an LLM API key for code generation.137138```bash139appledev build setup # Checks and installs prerequisites140```141142### Build from source143144```bash145bash scripts/setup.sh146```147148The setup script builds `appledev`, copies it to `/opt/homebrew/bin/appledev`, and symlinks `swiftship` plus `appstore` to the same binary.149150## Gotchas151152- Apple docs and WWDC lookup are not exposed through `appledev --help` right now. Use `node cli.js ...` from this repo for those tasks153- Help text inside `cli.js` mentions `apple-docs ...`, but a separate `apple-docs` binary may not be installed. In this skill, `node cli.js ...` is the safe path154- `appledev store ...` needs App Store Connect credentials. If they are missing, authenticate with `appledev store auth login` or env vars before trying release actions155- `appledev build ...` is macOS-only in practice and depends on Xcode, Simulator support, and an LLM API key. Do not assume it will work in a generic sandbox156- Hook config lives outside the repo at `~/.appledev/hooks.yaml` and optionally inside projects at `.appledev/hooks.yaml`. Use `templates/hooks-*.yaml` as starting points instead of writing YAML from scratch157- Do not write secrets into `config.json`, templates, or repo files158159## Part 1: Documentation Search160161```bash162node cli.js search "NavigationStack"163node cli.js symbols "UIView"164node cli.js doc "/documentation/swiftui/navigationstack"165node cli.js overview "SwiftUI"166node cli.js samples "SwiftUI"167node cli.js wwdc-search "concurrency"168node cli.js wwdc-year 2025169node cli.js wwdc-topic "swiftui-ui-frameworks"170```171172## Part 2: App Store Connect173174Full reference: [references/app-store-connect.md](references/app-store-connect.md)175176| Task | Command |177|------|---------|178| List apps | `appledev store apps` |179| Upload build | `appledev store builds upload --app "APP_ID" --ipa "app.ipa" --wait` |180| Find build by number | `appledev store builds find --app "APP_ID" --build-number "42"` |181| Wait for build processing | `appledev store builds wait --build "BUILD_ID"` |182| Publish TestFlight | `appledev store publish testflight --app "APP_ID" --ipa "app.ipa" --group "Beta" --wait` |183| Submit App Store | `appledev store publish appstore --app "APP_ID" --ipa "app.ipa" --submit --confirm --wait` |184| Pre-submission validation | `appledev store validate --app "APP_ID" --version-id "VERSION_ID"` |185| List certificates | `appledev store certificates list` |186| Reviews | `appledev store reviews --app "APP_ID" --output table` |187| Update localizations | `appledev store localizations update --app "APP_ID" --locale "en-US" --name "My App"` |188| Sales report | `appledev store analytics sales --vendor "VENDOR" --type SALES --subtype SUMMARY --frequency DAILY --date "2024-01-20"` |189| Xcode Cloud | `appledev store xcode-cloud run --app "APP_ID" --workflow "CI" --branch "main" --wait` |190| Notarize | `appledev store notarization submit --file ./MyApp.zip --wait` |191| Status dashboard | `appledev store status --app "APP_ID" --output table` |192| Weekly insights | `appledev store insights weekly --app "APP_ID" --source analytics` |193| Metadata pull | `appledev store metadata pull --app "APP_ID" --version "1.2.3" --dir ./metadata` |194| Release notes | `appledev store release-notes generate --since-tag "v1.2.2"` |195| Diff localizations | `appledev store diff localizations --app "APP_ID" --path ./metadata` |196| Nominations | `appledev store nominations create --app "APP_ID" --name "Launch"` |197| Price point filter | `appledev store pricing price-points --app "APP_ID" --price 0.99` |198| IAP (family sharable) | `appledev store iap create --app "APP_ID" --family-sharable` |199| Subscription (family sharable) | `appledev store subscriptions create --app "APP_ID" --family-sharable` |200201### Environment Variables202203All environment variables are optional. They override flags when set.204205| Variable | Description |206|----------|-------------|207| `APPSTORE_KEY_ID` | API Key ID |208| `APPSTORE_ISSUER_ID` | API Issuer ID |209| `APPSTORE_PRIVATE_KEY_PATH` | Path to .p8 key file |210| `APPSTORE_PRIVATE_KEY` | Raw private key string |211| `APPSTORE_PRIVATE_KEY_B64` | Base64-encoded private key |212| `APPSTORE_APP_ID` | Default app ID |213| `APPSTORE_PROFILE` | Default auth profile |214| `APPSTORE_DEBUG` | Enable debug output |215| `APPSTORE_TIMEOUT` | Request timeout |216| `APPSTORE_BYPASS_KEYCHAIN` | Skip system keychain |217218## Part 3: Multi-Platform App Builder219220Supports iOS, watchOS, tvOS, and iPad. Generates complete Swift/SwiftUI apps from natural language with AI-powered code generation.221222```bash223appledev build # Interactive mode224appledev build setup # Install prerequisites (Xcode, XcodeGen, AI backend)225appledev build fix # Auto-fix build errors226appledev build run # Build and launch in simulator227appledev build open # Open project in Xcode228appledev build chat # Interactive chat mode (edit/ask questions)229appledev build info # Show project status230appledev build usage # Token usage and cost231```232233### Supported Platforms234235| Platform | Status |236|----------|--------|237| iOS | Full support |238| iPad | Full support |239| macOS | Supported |240| watchOS | Supported |241| tvOS | Supported |242| visionOS | Supported |243244### How it works245246```247describe > analyze > plan > build > fix > run248```2492501. **Analyze** - Extracts app name, features, core flow, target platform from description2512. **Plan** - Produces file-level build plan: data models, navigation, design2523. **Build** - Generates Swift source files, project.yml, asset catalog2534. **Fix** - Compiles and auto-repairs until build succeeds2545. **Run** - Boots Simulator and launches the app255256### Interactive commands257258| Command | Description |259|---------|-------------|260| `/run` | Build and launch in simulator |261| `/fix` | Auto-fix compilation errors |262| `/open` | Open project in Xcode |263| `/ask [question]` | Ask a question about the project |264| `/model [name]` | Switch model (sonnet, opus, haiku) |265| `/info` | Show project info |266| `/usage` | Token usage and cost |267268## References269270| Reference | Content |271|-----------|---------|272| [references/app-store-connect.md](references/app-store-connect.md) | Complete App Store Connect CLI commands |273| [references/ios-rules/](references/ios-rules/) | 38 iOS development rules |274| [references/swiftui-guides/](references/swiftui-guides/) | 12 SwiftUI best practice guides |275| [references/ios-app-builder-prompts.md](references/ios-app-builder-prompts.md) | System prompts for app building |276277### iOS Rules (38 files)278279accessibility, 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, widgets280281### SwiftUI Guides (12 files)282283animations, forms-and-input, layout, liquid-glass, list-patterns, media, modern-apis, navigation, performance, scroll-patterns, state-management, text-formatting284285## Consolidated Apple/Swiftship references286287This umbrella absorbed the former one-feature/one-phase Apple skills. Load the targeted reference instead of relying on narrow active sibling skills:288289- `references/apple-features-skills.md` — App Store Connect, framework features, monetization, assets, and app services.290- `references/apple-ui-skills.md` — accessibility, layout, typography, animations, glass, gestures, and view composition.291- `references/apple-extensions-skills.md` — widgets, App Clips, Live Activities, Safari/share/notification extensions.292- `references/apple-phases-skills.md` — Swiftship analyzer/planner/builder/editor/fixer/recovery routing.293- `references/apple-always-skills.md` and platform variants — shared SwiftUI, design-system, layout, components, navigation, review guidance.