From auto-mobile
Splits work into isolated git worktrees for parallel development, then merges branches back. Use for decomposable tasks without PRs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/auto-mobile:fan-out-fan-inThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this when the user explicitly wants parallel agent work or the task is naturally decomposable into independent file scopes.
Use this when the user explicitly wants parallel agent work or the task is naturally decomposable into independent file scopes.
scratch/plan.md or from inline instructions.git branch --show-current and git rev-parse HEAD.git status --short is not clean. Do not fan out from a dirty tree.git log --oneline -20 and git worktree list so you do not duplicate work.git worktree add ../worktree-unit-N -b fan-out-unit-N "$PARENT_COMMIT".fan-out: [unit-name].bun run lint, bun run build, bun testbash scripts/all_fast_validate_checks.sh(cd android && ./gradlew <task>)scratch/ if they are too long to inspect inline.npx claudepluginhub kaeawc/auto-mobile --plugin auto-mobileSplits parallelizable work into bounded git branches with safe worktrees. Use when a task has independent subtracks with low file overlap.
Executes implementation plans by dispatching fresh subagents per task with dependency analysis, concurrent execution, and built-in two-stage self-review for spec compliance and code quality.
Decomposes large tasks (migrations, multi-issue fixes, big features) into parallel work packages with quality gates. Useful for reducing PR cycle time and avoiding merge conflicts.