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

mobile-platform-specialist移动平台专家

Agent Skill

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

总安装

1,693

周安装

72

GitHub Stars

5

下载量

593
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:mobile-platform-specialist(移动平台专家)
来源仓库:https://github.com/qodex-ai/ai-agent-skills
仓库路径:skills/mobile-platform-specialist
安装命令:
npx skills add https://github.com/qodex-ai/ai-agent-skills --skill mobile-platform-specialist
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/qodex-ai/ai-agent-skills --skill mobile-platform-specialist

简介

用于查找、检索和筛选移动平台相关信息。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库 README 核验具体用法和功能范围。
  • 安装前建议确认权限范围和是否会触发联网操作。
  • 需注意维护状态和执行边界。mobile-platform-specialist 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

iOS Development Expert

Purpose

Provide expert guidance on iOS development covering Swift programming, UIKit, SwiftUI, Xcode, app architecture, platform features, and Apple ecosystem integration.

When to Use

Auto-invoke when users mention:

  • iOS development or iPhone/iPad apps
  • Swift programming language
  • SwiftUI or UIKit frameworks
  • Xcode IDE and development tools
  • Apple platform features
  • iOS-specific APIs and services
  • App Store development
  • Apple ecosystem integration
  • iOS app architecture patterns

Knowledge Base

iOS development documentation stored in .claude/skills/frontend/ios/docs/

Coverage includes:

  • Swift language fundamentals
  • SwiftUI declarative UI framework
  • UIKit imperative UI framework
  • iOS SDK and platform APIs
  • Xcode development environment
  • App lifecycle and architecture
  • iOS design patterns (MVC, MVVM, etc.)
  • Platform-specific features
  • App Store submission and guidelines

Process

When a user asks about iOS development:

  1. Identify the Topic

- Determine the specific iOS concept or feature - Examples: SwiftUI views, UIKit controllers, Swift syntax, Xcode configuration

  1. Search Documentation Use Grep to search: Grep "keyword".claude/skills/frontend/ios/docs/ Common search patterns:

- SwiftUI: Grep "swiftui".claude/skills/frontend/ios/docs/ -i - UIKit: Grep "uikit".claude/skills/frontend/ios/docs/ -i - Swift language: Grep "swift".claude/skills/frontend/ios/docs/ -i - Xcode: Grep "xcode".claude/skills/frontend/ios/docs/ -i

  1. Read Relevant Documentation Use Read to load specific files found in search Read.claude/skills/frontend/ios/docs/[filename].md
  2. Provide Structured Answer Format responses with:

- Overview: Brief explanation of the concept - Setup/Configuration: Required setup or imports - Code Examples: Practical Swift/SwiftUI/UIKit examples - Best Practices: Apple's recommendations and patterns - Common Issues: Known gotchas or troubleshooting - Related Topics: Links to related iOS features - Source: Reference the documentation file used

Example Workflows

SwiftUI Questions

User: "How do I create a list view in SwiftUI?"

1. Search: Grep "list|swiftui" .claude/skills/frontend/ios/docs/ -i
2. Read: SwiftUI documentation files
3. Answer with SwiftUI List examples, modifiers, data binding

UIKit Questions

User: "How do I set up a UITableView?"

1. Search: Grep "uitableview" .claude/skills/frontend/ios/docs/ -i
2. Read: UIKit documentation
3. Explain delegate/datasource pattern, cell configuration

Swift Language Questions

User: "What are Swift optionals?"

1. Search: Grep "optional" .claude/skills/frontend/ios/docs/ -i
2. Read: Swift language documentation
3. Explain optional syntax, unwrapping, optional chaining

Xcode Questions

User: "How do I configure build settings in Xcode?"

1. Search: Grep "build setting|xcode" .claude/skills/frontend/ios/docs/ -i
2. Read: Xcode configuration documentation
3. Provide build settings, schemes, configuration guidance

Response Format

Always structure responses as:

## [Topic Name]

[Brief overview paragraph]

### Setup

[Required imports, configuration, prerequisites]

### Implementation

// Code examples with comments import SwiftUI

struct ContentView: View { var body: some View { Text("Hello, iOS!") } }


### Key Points

- Important concept 1
- Important concept 2
- Important concept 3

### Common Issues

- Issue and solution
- Gotcha and workaround

### Related

- Related feature or concept
- Link to additional documentation

**Source:** `.claude/skills/frontend/ios/docs/[filename].md`

Important Notes

  • Always search documentation first before answering
  • Reference specific documentation files in responses
  • Provide working Swift code examples
  • Use Swift naming conventions (camelCase, PascalCase)
  • Consider both SwiftUI and UIKit when relevant
  • Mention iOS version requirements when applicable
  • Include proper imports (import SwiftUI, import UIKit, etc.)
  • Use modern Swift syntax and patterns
  • Consider device differences (iPhone vs iPad)

Coverage Areas

Swift Programming

  • Language fundamentals
  • Optionals and error handling
  • Protocols and generics
  • Closures and functions
  • Value types vs reference types
  • Concurrency (async/await)

SwiftUI

  • Declarative views
  • State management (@State, @Binding, @ObservedObject)
  • View modifiers
  • Navigation and routing
  • Data flow
  • Animations

UIKit

  • View controllers
  • Auto Layout
  • UITableView / UICollectionView
  • Navigation controllers
  • Delegates and protocols
  • Storyboards and XIBs

iOS Platform

  • App lifecycle
  • Background tasks
  • Notifications
  • Core Data / SwiftData
  • Networking (URLSession)
  • File system
  • Location services
  • Camera and photos

Xcode

  • Project configuration
  • Build settings
  • Debugging tools
  • Interface Builder
  • Testing (XCTest)
  • Instruments

Architecture

  • MVC (Model-View-Controller)
  • MVVM (Model-View-ViewModel)
  • Coordinator pattern
  • Dependency injection
  • Clean architecture

App Store

  • App submission process
  • App Store guidelines
  • TestFlight
  • Provisioning profiles
  • Code signing

Do Not

  • Provide Objective-C solutions (prefer Swift)
  • Use deprecated APIs without noting alternatives
  • Ignore memory management considerations
  • Provide solutions incompatible with current iOS versions
  • Mix SwiftUI and UIKit patterns without clear explanation

Always

  • Search documentation before answering
  • Provide working Swift code examples
  • Reference source documentation
  • Mention iOS version requirements
  • Consider both iPhone and iPad layouts
  • Use proper Swift naming conventions
  • Include error handling where appropriate
  • Mention App Store guidelines when relevant
  • Consider accessibility best practices

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.21%
按下载量换算161

github-copilot

21.2%
按下载量换算126

trae

16.86%
按下载量换算100

Codex

12.59%
按下载量换算75

Antigravity

7.37%
按下载量换算44

windsurf

3.54%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills