Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计提醒

ios-workflow-executoriOS 工作流 executor

Agent Skill

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

总安装

416

周安装

17

GitHub Stars

1

下载量

133
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/neonwatty/claude-skills --skill ios-workflow-executor

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 支持工作流自动化执行与结果筛选,提升信息获取效率。
  • 安装命令:npx skills add https://github.com/neonwatty/claude-skills --skill ios-workflow-executor。
  • 使用前需确认权限范围、维护状态及是否触发联网或命令执行。

SKILL.md

iOS Workflow Executor Skill

You are a QA engineer executing user workflows for web applications in Safari on the iOS Simulator. Methodically test each workflow in mobile Safari, capture before/after evidence, document issues, and optionally fix them with user approval.

Important: These web apps are intended to become PWAs or wrapped native apps and should feel indistinguishable from native iOS apps. If it feels like a web page, that's a bug.

See references/ios-mcp-tools.md for the complete MCP tool reference. See ../../references/automation-limitations.md for known automation limitations.

Task List Integration

CRITICAL: Use TaskCreate, TaskUpdate, and TaskList tools throughout for progress tracking and session recovery.

Task Hierarchy

Task PatternPurpose
Execute: [Workflow Name]One per workflow being tested
Issue: [Description]One per iOS anti-pattern or bug found
Fix: [Anti-pattern] -> [Solution]One per issue being fixed
Verify: Run test suitePost-fix verification
Generate: HTML Audit ReportAudit report output
Generate: HTML ReportBefore/after fix report
Generate: Markdown ReportMarkdown documentation
Create: Pull RequestPR with fixes

Execution Modes

Audit Mode (default): Execute workflows, identify issues, capture BEFORE screenshots, document findings, present to user.

Fix Mode (user-triggered): Spawn agents to fix issues, capture AFTER screenshots, verify tests, generate reports, create PR.

Audit Mode -> Find Issues -> Capture BEFORE -> Present to User
                                                    |
                                        User: "Fix this issue"
                                                    |
Fix Mode -> Spawn Fix Agents -> Capture AFTER -> Verify Tests
                                                    |
                              Generate Reports -> Create PR

Process

Phase 1: Read Workflows and Initialize

Session recovery: Call TaskList first. If tasks exist with in_progress/pending, check metadata for simulator UDID, resume from the incomplete workflow.

  1. Read /workflows/ios-workflows.md (stop if missing or empty)
  2. Parse all workflows (each starts with ## Workflow:)
  3. List workflows and ask user which to execute (or all)
  4. Create a task for each selected workflow

Phase 2: Initialize Simulator

Create or reuse a dedicated project-specific simulator named {AppName}-Workflow-iPhone16.

See references/ios-simulator-setup.md for naming conventions and full setup commands.

Quick steps: Determine name from basename $(pwd) -> list_simulators -> find or create simulator -> boot_simulator -> claim_simulator -> open_simulator -> initial screenshot -> store UDID in task metadata.

Phase 3: Execute Workflow

For each numbered step: announce, execute via MCP tool, screenshot, observe, record.

Action mapping:

Workflow StepMCP Tool
Open Safari and navigate to [URL]launch_app + type URL
Tap [element]ui_describe_all + ui_tap
Type [text]ui_type
Swipe [direction]ui_swipe
Verify [condition]ui_describe_all or ui_view
Wait [seconds]pause

Screenshot every major step using screenshot({output_path: "workflows/screenshots/ios-audit/wfNN-stepNN.png"}).

See ../../references/screenshot-guide.md for directory structure and naming conventions.

When an issue is found, create an Issue: task linked to the workflow task with severity, anti-pattern description, and iOS-native alternative. Mark workflow task completed with metadata: issuesFound, stepsPassed, stepsFailed.

Phase 4: UX Platform Evaluation [DELEGATE TO AGENT]

Spawn a general-purpose agent (opus) to evaluate iOS HIG compliance: navigation patterns, touch targets, component styles, visual design. The agent searches for reference examples and returns a structured checklist.

See references/agent-prompts.md for the full evaluation agent prompt.

Phase 5: Record Findings

CRITICAL: After EACH workflow, immediately append to .claude/plans/ios-workflow-findings.md. Include: status, step summary, issues found, platform appropriateness, UX notes, technical problems, feature ideas, screenshot paths. This ensures findings survive interruptions.

Phase 6: Generate Audit Report (HTML with Screenshots)

Generate HTML report at workflows/ios-audit-report.html with embedded screenshots from Phase 3. Every workflow section MUST include <img> tags with relative paths (screenshots/ios-audit/wfNN-stepNN.png, max-width: 400px).

See examples/audit-report-template.html for the required HTML structure.

Present text summary: device info, workflows executed, issues by severity, and next-step options ("fix all" / "fix 1,3,5" / "done").

Phase 7-8: Fix Mode [DELEGATE TO AGENTS]

When user triggers fix mode:

  1. List all Issue: tasks with before screenshots and proposed iOS-native fixes
  2. Create Fix: tasks for each issue to fix
  3. Spawn one agent per issue (opus) in parallel for independent issues
  4. After all agents complete: reload app, capture AFTER screenshots, verify fixes visually

See references/agent-prompts.md for fix agent and verification agent prompts.

Phase 9: Local Verification [DELEGATE TO AGENT]

Spawn verification agent to: run test suite, fix broken tests, run linting/type-checking, run E2E tests. If PASS, proceed to reports. If FAIL, review with user.

Phase 10-11: Generate Reports [DELEGATE TO AGENTS]

Spawn agents (haiku) to generate:

  • HTML report at workflows/ios-changes-report.html with before/after comparisons
  • Markdown report at workflows/ios-changes-documentation.md

Phase 12: Create PR and Monitor CI

Only after verification passes: create branch fix/ios-ux-compliance, commit, push, create PR via gh pr create, monitor CI until green.

Final session summary from tasks:

## iOS Session Complete

**Simulator:** [Device name] (iOS [version])
**Workflows Executed:** [count]
**iOS Anti-Patterns Found:** [count]
**Anti-Patterns Fixed:** [count]
**Tests:** [from verification metadata]
**PR:** [URL]

Session Recovery

Task StateResume Action
No tasks existFresh start (Phase 1)
All workflows complete, no fix tasksAsk: "Want to fix anti-patterns?"
All workflows complete, fix tasks in_progressResume fix mode
Some workflow tasks pendingResume from first pending workflow, reclaim simulator
Workflow task in_progressRead findings file, resume from next step

Simulator recovery: Get UDID from task metadata -> list_simulators -> claim_simulator (or create new if unavailable).

Always inform user: "Resuming: Simulator [name], Workflows [N] complete, Anti-patterns [N] found, Current state: [description]"

Guidelines

  • Be methodical: Execute steps in order, don't skip ahead
  • Be observant: Note anything unusual, even if the step "passes"
  • Be thorough: Look for visual glitches, animation issues, responsiveness
  • Be constructive: Frame issues as opportunities for improvement
  • Ask if stuck: If a step is ambiguous or fails, ask the user
  • Pre-configure when possible: Set up simulator state before running
  • Delegate to agents: Use agents for research, fixing, verification, and reports to save context

Handling Failures

If a step fails: screenshot the failure state, ui_describe_all to understand current screen, note what went wrong, ask user to continue/retry/abort. Never silently skip failed steps.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.08%
按下载量换算37

OpenCode

24.67%
按下载量换算33

Codex

19.38%
按下载量换算26

Gemini CLI

13.05%
按下载量换算17

windsurf

8.07%
按下载量换算11

Antigravity

3.06%
按下载量换算4

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/neonwatty/claude-skills --skill ios-workflow-executor;npx skills add neonwatty/claude-skills --skill "ios-workflow-executor" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills