Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

ios-deviOS DEV 搜索

Agent Skill

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

总安装

2,590

周安装

109

GitHub Stars

223

下载量

907
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:ios-dev(iOS DEV 搜索)
来源仓库:https://github.com/vabole/apple-skills
仓库路径:skills/ios-dev
安装命令:
npx skills add https://github.com/vabole/apple-skills --skill ios-dev
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vabole/apple-skills --skill ios-dev

简介

ios-dev 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • ios-dev 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

iOS Development

Start here. This skill coordinates the Apple skills collection — it tells you *which* skill to use and *when*, so you get opinionated guidance and full API references together.

Operating Rules

  • Do not bridge UIKit/AppKit when SwiftUI has a native solution — bridging adds state-sync bugs, breaks SwiftUI composition (animations, environment), and complicates lifecycle management
  • Do not enforce specific architectures (MVVM, VIPER, MV, TCA, etc.) — encourage separating business logic from views without mandating how
  • Liquid Glass is the default iOS 26+ design system — use system glass behaviors naturally, but add custom GlassEffect modifiers only when they serve the UI, not for decoration
  • Present performance optimizations as suggestions backed by reasoning, not blanket requirements
  • When you need exact API details, grep the framework reference skills — they contain full Apple documentation

Task Workflows

Review existing code

  1. Read the code and identify which topics apply
  2. Run the Correctness Checklist below — violations are bugs
  3. Use the Topic Router to load the relevant guide for each topic
  4. For API correctness, grep the matching framework reference skill

Improve existing code

  1. Run the correctness checklist first
  2. For performance issues: use guide-swiftui-performance-audit
  3. For view structure / long bodies: use guide-swiftui-view-refactor
  4. For navigation, state, or pattern questions: use guide-swiftui-ui-patterns
  5. For visual quality: use ios-ui-craft
  6. For API details: grep the matching framework reference skill

Build a new feature

  1. Design data flow first — identify owned vs. injected state
  2. For UI patterns and app wiring: use guide-swiftui-ui-patterns
  3. For API details: grep the matching framework reference skill
  4. Structure views for optimal diffing — extract subviews early
  5. Run the correctness checklist before finishing
  6. For visual polish: use ios-ui-craft

Topic Router

The Guide column has opinionated, short pattern guides. The API Reference column has full Apple documentation as grepable Markdown — use apple-docs-index to find which framework has what.

TopicGuideAPI Reference
State managementguide-swiftui-ui-patternsswiftui (state.md, binding.md, observation.md, environment.md)
View compositionguide-swiftui-view-refactorswiftui (view-protocol.md)
Performanceguide-swiftui-performance-audit
Navigationguide-swiftui-ui-patternsswiftui (navigationstack.md, navigationsplitview.md, navigationlink.md)
Sheets & modalsguide-swiftui-ui-patternsswiftui (sheet.md, inspector.md, alert.md, confirmationdialog.md)
Lists & ForEachguide-swiftui-ui-patternsswiftui (list.md)
ScrollViewguide-swiftui-ui-patternsswiftui (scrollview.md)
Forms & inputswiftui (form.md, textfield.md, picker.md, toggle.md, slider.md)
Chartsguide-swiftui-chartsswiftui (chart.md, charts-overview.md)
Animationsguide-swiftui-animationsswiftui (swiftui-overview.md)
Layoutguide-swiftui-ui-patternsswiftui (geometryreader.md, grid.md, hstack.md, vstack.md, zstack.md, spacer.md)
TabViewguide-swiftui-ui-patternsswiftui (tabview.md)
Liquid Glassios-design-consultantios-liquid-glass
Visual designios-ui-crafthig
Accessibilityguide-swiftui-ui-patternshig
macOS appsguide-macos-spm-packagingswiftui, uikit
Data persistenceguide-swiftdataswiftdata
Testingguide-swift-testingswift-testing, xcuitest
Concurrencyguide-swift-concurrencyswift-concurrency
In-app purchasesstorekit
Mapsmapkit
Health datahealthkit
Notificationsusernotifications
App Intents / Siriappintents
Widgetswidgetkit
App Store metadataapple-aso
Finding docsapple-docs-index

Correctness Checklist

These are hard rules — violations are always bugs:

  • @State properties are private
  • @Binding only where a child needs to mutate parent state
  • Values passed in are never declared as @State — they silently ignore updates
  • Use @State with @Observable classes — not @StateObject or ObservableObject
  • Use @Bindable for injected observables that need bindings
  • ForEach uses stable identity — never .indices on dynamic content
  • Each ForEach element produces a constant number of views
  • .animation(_:value:) always includes the value: parameter
  • @FocusState properties are private
  • @Observable classes are @MainActor — Swift 6 strict concurrency requires it
  • Property wrappers (@AppStorage, @SceneStorage, @Query) inside @Observable classes are marked @ObservationIgnored — they conflict with the macro and cause compiler errors
  • No business logic in body — use .task, .onChange, or methods
  • No AnyView unless truly unavoidable — fix with better composition

Related Skills

Design trio:

  • /ios-ui-craft — Build visually striking interfaces (produces code)
  • /ios-design-consultant — Design advice and rationale (no code)
  • /ios-liquid-glass — Liquid Glass API reference

Workflow guides:

  • /guide-swiftui-ui-patterns — Navigation, state, sheets, component patterns
  • /guide-swiftui-animations — Implicit/explicit animation, transitions, keyframes
  • /guide-swiftui-charts — Marks, axes, selection, styling, accessibility
  • /guide-swiftui-view-refactor — View structure, extraction, MV patterns
  • /guide-swiftui-performance-audit — Diagnose and fix performance issues
  • /guide-swift-testing — Swift Testing patterns, async tests, common agent mistakes
  • /guide-swift-concurrency — Concurrency patterns, actors, diagnostics, bug patterns
  • /guide-swiftdata — SwiftData patterns, predicates, CloudKit constraints
  • /guide-macos-spm-packaging — Build macOS apps with SwiftPM

Utilities:

  • /apple-docs-index — Find the right Apple documentation
  • /simulator-utils — Simulator screenshots and device management
  • /apple-aso — App Store Optimization

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.92%
按下载量换算344

Claude

31.71%
按下载量换算288

Cursor

17.8%
按下载量换算161

Gemini CLI

10.44%
按下载量换算95

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills