From auto-mobile
Parallelizes development tasks by splitting into isolated git worktrees for non-overlapping file changes, implements each scope independently with validation, then merges sequentially into parent branch.
npx claudepluginhub kaeawc/auto-mobile --plugin auto-mobileThis skill uses the workspace's default tool permissions.
Use this when the user explicitly wants parallel agent work or the task is naturally decomposable into independent file scopes.
Decomposes parallelizable tasks into bounded git branches with low file overlap and creates safe worktrees for independent subtasks. Use when changes are loosely coupled.
Executes implementation plans by analyzing dependencies, grouping tasks by level, and dispatching parallel subagents in isolated git worktrees with TDD and reviews.
Creates isolated git worktrees for parallel feature development and executes identical plans across workspaces via subagents for concurrent experimentation and result comparison.
Share bugs, ideas, or general feedback.
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.