continue-pr
Continue work on an existing PR - resolve conflicts, fix CI failures, address reviewer feedback, and push updates. Use when the user wants to pick up and advance a pull request.
Install
Install this Claude and Codex skill with the command below. The command stays visible even when copy support is unavailable.
git clone https://github.com/ClickHouse/ClickHouse /tmp/ClickHouse && ln -s /tmp/ClickHouse/.claude/skills/continue-pr ~/.claude/skills/continue-pr
From README
Continue Work on a Pull Request Pick up an existing pull request, resolve conflicts, fix CI failures, address reviewer feedback, and push updates. Arguments $0 (required): PR number in the current repository (e.g., 12345) Process Parse arguments and fetch PR metadata Extract the PR number from $0. If not provided, use AskUserQuestion to ask for it. Validate that the PR number contains only digits. Reject any non-numeric input immediately — do not pass unvalidated input to shell commands or GraphQL queries. Fetch PR metadata using gh if available, otherwise use WebFetch on the GitHub API: If gh is not available or not authenticated, use WebFetch to get the data.