mcpbeat

Pr Ready

remotion-dev/pr-ready

Resolve CI failures, merge conflicts, or local branch changes to get a PR ready

417 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
55471
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/remotion-dev/remotion --skill pr-ready

The instruction itself

as written by the author

Use this skill when a pull request is not ready because there is either:

  • a CI failure
  • a merge conflict
  • uncommitted or unpushed changes

Bring the pull request back to a ready state.

Start by checking:

  • The current git branch and working tree state with git status.
  • Whether the local branch has commits that are not pushed yet.
  • Whether the PR branch has merge conflicts with the base branch.
  • The current PR checks or CI failures using the gh CLI.

If there are uncommitted changes, untracked files that look relevant, or commits that have not been pushed, stop before changing, committing, or pushing them and ask the user for confirmation.

If there is a merge conflict:

  • Update the local base branch reference.
  • Rebase or merge the PR branch onto the base branch, following the repository's existing workflow.
  • Resolve conflicts carefully and preserve both the PR intent and upstream changes.
  • Run the relevant formatting, tests, or builds for the affected packages.
  • Ask the user for confirmation before pushing if the conflict resolution creates unpushed commits.

If there is a CI failure:

  • Inspect the failing check logs with the gh CLI.
  • Fix the underlying cause instead of retrying or bypassing the failure.
  • Run the relevant local checks that cover the failure.
  • Commit the fix if needed.
  • Ask the user for confirmation before pushing if this creates unpushed commits.

If there are no CI failures, no merge conflicts, and no uncommitted or unpushed changes, report that the PR is already ready.

How to use it

Copy the folder

Take remotion-dev/pr-ready from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.