What problem does it solve? Local test runs often diverge from the real CI pipeline, so branches pass locally but fail after merge. This Skill pushes your current branch and replays the CI-equivalent test surface (pnpm install, UI build, Playwright setup, test:all) on a clean remote SSH machine, giving pre-merge confidence that mirrors .github/workflows/ci.yml. ## Core Features & Use Cases - Remote CI-equivalent execution: Runs pnpm install --frozen-lockfile, @invoker/ui build, Playwright dependency install, and CI=true pnpm run test:all inside a temporary remote git worktree. - Automatic target selection: Reads SSH targets from the Invoker config, skips targets busy in the Invoker database, and picks the first reachable host. - Configurable overrides: Environment variables control push behavior, target allowlists, test commands, Playwright setup, and worktree cleanup. - Use Case: Before opening a pull request on a pnpm monorepo, run the script to verify your branch against the same steps as the GitHub Actions test-all job on a spare build machine. ## Quick Start Ask the agent to run the remote-ci-verify skill to push the current branch and execute the CI-equivalent test suite on an available SSH target.