Operations Worktree Purpose Create and manage worktrees safely and consistently across projects while avoiding stale branch bases. When to use - You need a new task branch in a new worktree. - You are juggling many concurrent worktrees. - You need to avoid branching from stale local or local . Workflow 1. Ensure you are inside the target repository (main checkout or any linked worktree). 2. Create a new worktree with the shell wrapper: - - Optional explicit base: 3. If shell wrappers are unavailable, use raw git safely: - - - - 4. For OpenClaw PR review worktrees, prefer that repository's nat…