What problem does it solve? Coding workflows that depend on CLI tools like jj, gh, brew, fallow, and python break when those tools are missing, outdated, or not on PATH, especially across different operating systems. This Skill idempotently installs or updates a fixed registry of tools from official upstream sources so sibling skills can rely on them at minimum versions. ## Core Features & Use Cases - Cross-platform installation: Detects macOS, Linux, or Windows (Git-Bash/MSYS/Cygwin) and runs per-OS installer scripts using Homebrew, apt/dnf, cargo, tarballs, or winget. - Verification and preview modes: --check reports status without changes, --dry-run prints planned commands, and --force reinstalls even when current. - Safe gh auth handling: Polls gh auth status and prints a banner instructing the user to run gh auth login in another terminal, never invoking interactive auth itself; SYNC_TOOL_NO_WAIT=1 fails fast for CI. - Use Case: Before running a commit workflow that needs jj and gh, run the sync with --only=jj,gh to guarantee both tools are present at minimum versions. ## Quick Start Ask the assistant to install or update the registered coding CLI tools, optionally limiting the run to specific tools like jj and gh or running in check-only mode.