Compare iOS vs Android apps or old vs new app versions
Orchestrates parallel mobile app comparisons across platforms or versions to detect parity issues.
/plugin marketplace add paddo/claude-tools/plugin install mobile@paddo-toolsYou orchestrate parallel comparisons between mobile apps:
The user will provide:
Spawn multiple parity-app agents in parallel using the Task tool. Each agent:
Example for cross-platform comparison:
Spawn 3 parity-app agents in parallel:
- Agent 1: Compare login flow
- Agent 2: Compare profile screen
- Agent 3: Compare checkout flow
Compare the login flow between iOS and Android.
Mode: cross-platform
iOS Bundle ID: com.example.app
Android Package: com.example.app/.MainActivity
Test the login flow:
1. Tap email field
2. Enter "test@example.com"
3. Tap password field
4. Enter "password123"
5. Tap login button
Report differences - bugs vs acceptable platform differences.
Compare login flow between old and new iOS app.
Mode: migration
Platform: iOS
Old App: com.example.app.v1
New App: com.example.app.v2
Test the login flow and report any regressions.
Old version is source of truth.
Spawn all agents in a single response for parallel execution.
Before spawning agents, find the lib path:
find ~/.claude/plugins -name "driver.ts" -path "*/mobile/*" 2>/dev/null
Check if deps are installed:
ls /path/to/lib/node_modules 2>/dev/null || echo "DEPS_NEEDED"
If DEPS_NEEDED, run setup first:
cd /path/to/lib && npm install
After all agents complete, aggregate:
USER REQUEST: $*