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

ios-simulator-skilliOS simulator 技能

Agent Skill

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

总安装

970

周安装

40

GitHub Stars

37

下载量

317
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ovachiever/droid-tings --skill ios-simulator-skill

简介

该技能用于查找、检索和筛选相关信息。ios-simulator-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在关键词搜索、任务场景匹配或线索筛选等场景使用。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围和维护状态,避免触发不必要的联网操作。
  • 建议结合原始 README 了解具体检索范围和结果格式。

SKILL.md

iOS Simulator Skill

Build, test, and automate iOS applications using accessibility-driven navigation and structured data instead of pixel coordinates.

Quick Start

# 1. Check environment
bash scripts/sim_health_check.sh

# 2. Launch app
python scripts/app_launcher.py --launch com.example.app

# 3. Map screen to see elements
python scripts/screen_mapper.py

# 4. Tap button
python scripts/navigator.py --find-text "Login" --tap

# 5. Enter text
python scripts/navigator.py --find-type TextField --enter-text "user@example.com"

All scripts support --help for detailed options and --json for machine-readable output.

21 Production Scripts

Build & Development (2 scripts)

  1. build_and_test.py - Build Xcode projects, run tests, parse results with progressive disclosure

- Build with live result streaming - Parse errors and warnings from xcresult bundles - Retrieve detailed build logs on demand - Options: --project, --scheme, --clean, --test, --verbose, --json

  1. log_monitor.py - Real-time log monitoring with intelligent filtering

- Stream logs or capture by duration - Filter by severity (error/warning/info/debug) - Deduplicate repeated messages - Options: --app, --severity, --follow, --duration, --output, --json

Navigation & Interaction (5 scripts)

  1. screen_mapper.py - Analyze current screen and list interactive elements

- Element type breakdown - Interactive button list - Text field status - Options: --verbose, --hints, --json

  1. navigator.py - Find and interact with elements semantically

- Find by text (fuzzy matching) - Find by element type - Find by accessibility ID - Enter text or tap elements - Options: --find-text, --find-type, --find-id, --tap, --enter-text, --json

  1. gesture.py - Perform swipes, scrolls, pinches, and complex gestures

- Directional swipes (up/down/left/right) - Multi-swipe scrolling - Pinch zoom - Long press - Pull to refresh - Options: --swipe, --scroll, --pinch, --long-press, --refresh, --json

  1. keyboard.py - Text input and hardware button control

- Type text (fast or slow) - Special keys (return, delete, tab, space, arrows) - Hardware buttons (home, lock, volume, screenshot) - Key combinations - Options: --type, --key, --button, --slow, --clear, --dismiss, --json

  1. app_launcher.py - App lifecycle management

- Launch apps by bundle ID - Terminate apps - Install/uninstall from.app bundles - Deep link navigation - List installed apps - Check app state - Options: --launch, --terminate, --install, --uninstall, --open-url, --list, --state, --json

Testing & Analysis (5 scripts)

  1. accessibility_audit.py - Check WCAG compliance on current screen

- Critical issues (missing labels, empty buttons, no alt text) - Warnings (missing hints, small touch targets) - Info (missing IDs, deep nesting) - Options: --verbose, --output, --json

  1. visual_diff.py - Compare two screenshots for visual changes

- Pixel-by-pixel comparison - Threshold-based pass/fail - Generate diff images - Options: --threshold, --output, --details, --json

  1. test_recorder.py - Automatically document test execution

- Capture screenshots and accessibility trees per step - Generate markdown reports with timing data - Options: --test-name, --output, --verbose, --json

  1. app_state_capture.py - Create comprehensive debugging snapshots

- Screenshot, UI hierarchy, app logs, device info - Markdown summary for bug reports - Options: --app-bundle-id, --output, --log-lines, --json

  1. sim_health_check.sh - Verify environment is properly configured

- Check macOS, Xcode, simctl, IDB, Python - List available and booted simulators - Verify Python packages (Pillow)

Advanced Testing & Permissions (4 scripts)

  1. clipboard.py - Manage simulator clipboard for paste testing

- Copy text to clipboard - Test paste flows without manual entry - Options: --copy, --test-name, --expected, --json

  1. status_bar.py - Override simulator status bar appearance

- Presets: clean (9:41, 100% battery), testing (11:11, 50%), low-battery (20%), airplane (offline) - Custom time, network, battery, WiFi settings - Options: --preset, --time, --data-network, --battery-level, --clear, --json

  1. push_notification.py - Send simulated push notifications

- Simple mode (title + body + badge) - Custom JSON payloads - Test notification handling and deep links - Options: --bundle-id, --title, --body, --badge, --payload, --json

  1. privacy_manager.py - Grant, revoke, and reset app permissions

- 13 supported services (camera, microphone, location, contacts, photos, calendar, health, etc.) - Batch operations (comma-separated services) - Audit trail with test scenario tracking - Options: --bundle-id, --grant, --revoke, --reset, --list, --json

Device Lifecycle Management (5 scripts)

  1. simctl_boot.py - Boot simulators with optional readiness verification

- Boot by UDID or device name - Wait for device ready with timeout - Batch boot operations (--all, --type) - Performance timing - Options: --udid, --name, --wait-ready, --timeout, --all, --type, --json

  1. simctl_shutdown.py - Gracefully shutdown simulators

- Shutdown by UDID or device name - Optional verification of shutdown completion - Batch shutdown operations - Options: --udid, --name, --verify, --timeout, --all, --type, --json

  1. simctl_create.py - Create simulators dynamically

- Create by device type and iOS version - List available device types and runtimes - Custom device naming - Returns UDID for CI/CD integration - Options: --device, --runtime, --name, --list-devices, --list-runtimes, --json

  1. simctl_delete.py - Permanently delete simulators

- Delete by UDID or device name - Safety confirmation by default (skip with --yes) - Batch delete operations - Smart deletion (--old N to keep N per device type) - Options: --udid, --name, --yes, --all, --type, --old, --json

  1. simctl_erase.py - Factory reset simulators without deletion

- Preserve device UUID (faster than delete+create) - Erase all, by type, or booted simulators - Optional verification - Options: --udid, --name, --verify, --timeout, --all, --type, --booted, --json

Common Patterns

Auto-UDID Detection: Most scripts auto-detect the booted simulator if --udid is not provided.

Device Name Resolution: Use device names (e.g., "iPhone 16 Pro") instead of UDIDs - scripts resolve automatically.

Batch Operations: Many scripts support --all for all simulators or --type iPhone for device type filtering.

Output Formats: Default is concise human-readable output. Use --json for machine-readable output in CI/CD.

Help: All scripts support --help for detailed options and examples.

Typical Workflow

  1. Verify environment: bash scripts/sim_health_check.sh
  2. Launch app: python scripts/app_launcher.py --launch com.example.app
  3. Analyze screen: python scripts/screen_mapper.py
  4. Interact: python scripts/navigator.py --find-text "Button" --tap
  5. Verify: python scripts/accessibility_audit.py
  6. Debug if needed: python scripts/app_state_capture.py --app-bundle-id com.example.app

Requirements

  • macOS 12+
  • Xcode Command Line Tools
  • Python 3
  • IDB (optional, for interactive features)

Documentation

  • SKILL.md (this file) - Script reference and quick start
  • README.md - Installation and examples
  • CLAUDE.md - Architecture and implementation details
  • references/ - Deep documentation on specific topics
  • examples/ - Complete automation workflows

Key Design Principles

Semantic Navigation: Find elements by meaning (text, type, ID) not pixel coordinates. Survives UI changes.

Token Efficiency: Concise default output (3-5 lines) with optional verbose and JSON modes for detailed results.

Accessibility-First: Built on standard accessibility APIs for reliability and compatibility.

Zero Configuration: Works immediately on any macOS with Xcode. No setup required.

Structured Data: Scripts output JSON or formatted text, not raw logs. Easy to parse and integrate.

Auto-Learning: Build system remembers your device preference. Configuration stored per-project.


Use these scripts directly or let Claude Code invoke them automatically when your request matches the skill description.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.45%
按下载量换算93

Antigravity

24.66%
按下载量换算78

Gemini CLI

18.87%
按下载量换算60

OpenCode

11.57%
按下载量换算37

Codex

8.66%
按下载量换算27

github-copilot

3.45%
按下载量换算11

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills