plugins marketplace
← All plugins

mergify

Skills for the Mergify CLI: manage merge queues, stacked pull requests, Test Insights (flaky tests, quarantine), merge protections, and Mergify configuration directly from the terminal.

Claude Code6 skills

by MergifyApache-2.029updated 2 days ago

Source

git clone https://github.com/Mergifyio/mergify-cli

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

mergify/
├── .claude-plugin/plugin.json
├── skills/mergify-ci/SKILL.md
├── skills/mergify-config/SKILL.md
├── skills/mergify-events/SKILL.md
├── skills/mergify-merge-protections/SKILL.md
├── skills/mergify-merge-queue/SKILL.md
└── skills/mergify-stack/SKILL.md

Skills6

mergify-ciskills/mergify-ci/SKILL.md

Use Mergify CI commands to upload JUnit test results, detect git references, manage CI scopes, and retrieve merge queue metadata. ALWAYS use this skill when working with CI pipelines, test result uploads, quarantine, scopes detection, or merge queue CI context. Triggers on CI, JUnit, test results, quarantine, scopes, git refs, CI insights.

mergify-configskills/mergify-config/SKILL.md

Use Mergify config commands to validate configuration files, simulate Mergify actions, and write Mergify configuration. ALWAYS use this skill when validating, writing, editing, or simulating Mergify config. Triggers on config validate, config simulate, mergify configuration, mergify.yml, .mergify.yml, merge queue config, workflow rules, conditions.

mergify-eventsskills/mergify-events/SKILL.md

Use `mergify events` to browse the Mergify activity log — every event Mergify recorded for a repository or one pull request (queue enters/leaves, merges, commands, CI Insights, freezes), as a human timeline or JSON. ALWAYS use this skill when investigating what Mergify did to a PR or repository and when, reconstructing a pull request's merge-queue lifecycle, auditing Mergify actions, or filtering events by type. Triggers on activity log, event log, events, what did Mergify do, queue lifecycle, queue history, event timeline, event_type, action.queue.

mergify-merge-protectionsskills/mergify-merge-protections/SKILL.md

Use Mergify merge protections to control when PRs merge — PR dependencies (Depends-On header), delayed merges (Merge-After header), and scheduled freezes (CLI). ALWAYS use this skill when managing merge freezes, deployment windows, temporarily blocking merges, setting up PR dependencies, blocking a PR on another PR, coordinating cross-repo merges, scheduling a merge for a specific time, or adding Depends-On or Merge-After headers to PRs. Triggers on freeze, scheduled freeze, merge freeze, deployment freeze, halt merges, depends on, dependency, block merge, merge after, merge later, schedule merge, delayed merge, cross-repo, merge protection.

mergify-merge-queueskills/mergify-merge-queue/SKILL.md

Use Mergify merge queue to queue/dequeue PRs, to monitor and inspect the queue, and to diagnose a dequeued PR — whether it is queued, why it was dequeued, where its CI failure is, and what to do next. ALWAYS use this skill when queuing or dequeuing a PR, checking queue status, investigating PR merge state, finding out why a PR left the queue, pausing/unpausing the queue, or debugging merge failures. Triggers on queue a PR, requeue, dequeue, dequeued, why was my PR dequeued, dequeue reason, merge queue, queue status, queue pause, queue show, pause, unpause, frozen, bisecting, batch, CI checks, CHECKS_FAILED, PULL_REQUEST_UPDATED.

mergify-stackskills/mergify-stack/SKILL.md

Use Mergify stacks for git push, commit, branch, and PR creation. ALWAYS use this skill when pushing code, creating commits, creating branches, or creating PRs. Triggers on push, commit, branch, PR, pull request, stack, stacked, git, rebase, checkout, reorder, move, sync, amend, note, revision history.

Manifests1

.claude-plugin/plugin.json
{
  "name": "mergify",
  "description": "Skills for the Mergify CLI: manage merge queues, stacked pull requests, Test Insights (flaky tests, quarantine), merge protections, and Mergify configuration directly from the terminal.",
  "author": {
    "name": "Mergify"
  },
  "keywords": [
    "git",
    "pr",
    "stacked-prs",
    "merge-queue",
    "ci",
    "test-insights",
    "flaky-tests",
    "quarantine",
    "freeze",
    "config",
    "push",
    "commit",
    "branch",
    "rebase",
    "checkout",
    "workflow"
  ],
  "license": "Apache-2.0",
  "homepage": "https://mergify.com",
  "repository": "https://github.com/Mergifyio/mergify-cli"
}