From gitlab-skills
Use this skill when the user wants to list or browse GitLab merge requests. Triggers on phrases like "list MRs", "show merge requests", "open MRs", "my MRs", "what MRs are there", "show me the merge requests", "pending MRs".
npx claudepluginhub yjhjstz/cc-skills --plugin gitlab-skillsThis skill is limited to using the following tools:
List GitLab merge requests for the current repository.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
List GitLab merge requests for the current repository.
Extract from the user's message any filter hints: author (@me), status (closed, merged, draft), label, branch, or search text. If not provided, list all open MRs by default.
Use glab CLI. Must run from a git directory with GitLab remote.
Build glab mr list -P 15 with filters based on what the user mentioned:
--author=@me--reviewer=@me-c-M-d-l <name>-t <name> (target branch)--search "<text>"Present results in a clean table: MR IID, Title, Author, Source→Target branch, Labels, Updated time.
Suggest follow-up actions:
/gitlab-review-mr <iid> to review a specific MR/gitlab-ci-log if a MR's pipeline failedIMPORTANT: Do NOT use interactive/TUI commands.