verify-app

Detect web or iOS targets and delegate verification to the matching pipeline.

1|2|Updated Mar 19, 2026
One-click install
npx skills add https://github.com/joi-fairshare/agentic-workflow --skill verify-app-joi-fairshare
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verify-app
Source: https://github.com/joi-fairshare/agentic-workflow/tree/main/skills/verify-app
Command: npx skills add https://github.com/joi-fairshare/agentic-workflow --skill verify-app-joi-fairshare

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This dispatcher removes the uncertainty of which verification workflow to run when a repo might be web, iOS, or both by automatically choosing the correct downstream skill, so you do not replicate platform detection logic each time.

Core Features & Use Cases

  • Platform Detection: Glob-based discovery of Package.swift, Xcode project, and workspace files plus dependency checks in package.json identify whether the project targets iOS, web, or both.
  • Dispatcher Logic: Delegates to verify-ios or verify-web while passing through the original arguments and asking the user only when neither or both platforms appear.
  • Use Case: When onboarding a repository containing Playwright tests and Xcode artifacts, invoke this dispatcher to ensure the right verification skill executes without manual platform triage.

Quick Start

Run verify-app with your current arguments so it inspects the repo and forwards them to the correct verifier.

Frequently Asked Questions about verify-app

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automatically detect whether a repository targets web or iOS for verification?

To automatically detect web or iOS targets during verification, inspect the repository for platform-specific files like Package.swift, Xcode projects, and Playwright dependencies in package.json to determine the correct automation pipeline.

What is the best way to run verification on a repository with both Playwright and Xcode artifacts?

The best way to verify repositories with both Playwright and Xcode artifacts is to use a dispatcher that preserves original arguments and prompts the user to choose the correct platform only when both indicators appear.

How do I route verification commands to the correct automation pipeline without manual platform triage?

You can route verification commands automatically by applying glob-based discovery to find platform indicators, logging detection results, and delegating the original arguments directly to the matching downstream web or iOS verifier.

Does the dispatcher prompt me when neither web nor iOS platform indicators are found?

Yes, the dispatcher prompts the user when neither platform indicator is found, ensuring you manually confirm the target before it invokes any downstream verification skill for the repository.

What happens to my original verification arguments when the platform is automatically detected?

When the platform is automatically detected, your original verification arguments are preserved and passed through directly to the matching downstream verifier without modification, ensuring seamless execution.