一键导入
ios-simulator
Automate iOS Simulator using AXe CLI. Use after implementing features to verify they work correctly via UI automation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Automate iOS Simulator using AXe CLI. Use after implementing features to verify they work correctly via UI automation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | ios-simulator |
| description | Automate iOS Simulator using AXe CLI. Use after implementing features to verify they work correctly via UI automation. |
Automate iOS Simulator interactions using AXe CLI for testing implemented features.
Implementation without verification is incomplete. After building a feature, use AXe to interact with the simulator and confirm the feature works as expected. This closes the loop between coding and testing.
brew install cameroncooke/axe/axe
axe list-simulatorsaxe describe-ui --udid $UDIDaxe screenshot --udid $UDID# List simulators
axe list-simulators
# Store UDID
UDID="YOUR-SIMULATOR-UDID"
# Inspect UI tree
axe describe-ui --udid $UDID
axe describe-ui --point 100,200 --udid $UDID
# Tap interactions
axe tap -x 100 -y 200 --udid $UDID
axe tap --label "Button Text" --udid $UDID
axe tap --id "elementId" --udid $UDID
# Text input
axe type 'Hello World!' --udid $UDID
# Swipe
axe swipe --start-x 100 --start-y 300 --end-x 300 --end-y 100 --udid $UDID
# Gesture presets
axe gesture scroll-up --udid $UDID
axe gesture scroll-down --udid $UDID
axe gesture swipe-from-left-edge --udid $UDID
# Hardware buttons
axe button home --udid $UDID
axe button lock --udid $UDID
# Screenshots
axe screenshot --udid $UDID
axe screenshot --output ~/Desktop/screen.png --udid $UDID
# Timing controls
axe tap -x 100 -y 200 --pre-delay 1.0 --post-delay 0.5 --udid $UDID
--pre-delay, --post-delay) for async operationsreferences/axe.md for full AXe command referenceUse bearcli to safely read, search, edit, tag, archive, and organize Bear.app notes. Use when working with Bear notes, note IDs, Bear tags, migrations from Obsidian, note cleanup, or personal knowledge management in Bear.
Use rn-logs to read React Native Metro logs via CDP without MCP overhead. Default output is plain text and safe for non-interactive agent runs.
Review code changes for quality, security, performance, and maintainability. Use when reviewing PRs, diffs, or code files. Provides structured feedback with severity levels.
Create well-formatted git commits using Conventional Commits format. Use when committing changes, reviewing commit messages, or splitting changes into atomic commits.
Fetch source code for npm packages, Python packages, Rust crates, or GitHub repos to understand their implementation. Use when you need to explore a library's internals.
This skill should be used when users need to interact with GitHub via the gh CLI. It covers repository management (create, delete, clone, fork), CI/CD workflows (GitHub Actions), Issues, Pull Requests, Releases, and other GitHub operations. Triggers on requests mentioning GitHub, repos, PRs, issues, actions, or workflows.