What problem does it solve? Keeping every local branch and git worktree up to date with origin/main across a multi-repo workspace is tedious and error-prone when done by hand. This Skill automates the entire sweep in one pass while protecting uncommitted work. ## Core Features & Use Cases - Multi-repo discovery: Scans every sibling directory under the workspace root for its own .git and syncs each repository, not just the current one. - Safe merging: Fetches origin/main, fast-forwards or merges only when the working tree is clean, and aborts on conflicts without forcing anything or touching stashes. - Summary reporting: Produces a table showing each repo, branch, worktree, and status (up to date, merged, skipped, or conflict). - Use Case: Run it on a recurring interval via /loop 2h to keep a dozen feature branches across several repos continuously current with main, surfacing conflicts early instead of at PR time. ## Quick Start Ask the assistant to sync all branches and worktrees across your workspace with origin/main, optionally naming the workspace root directory.