Create a pull request (GitHub) or merge request (GitLab) with conventional description, test summary, and checklist. Auto-detects platform. Triggers on: create pr, create mr, pull request, merge request, push and pr.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add igorilic/agentic-orchestration --skill pr --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pr?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/igorilic-agentic-orchestration)More formats (shields.io, HTML) on the badges page.
---
name: pr
description: >
Create a pull request (GitHub) or merge request (GitLab) with conventional
description, test summary, and checklist. Auto-detects platform.
Triggers on: create pr, create mr, pull request, merge request, push and pr.
---
## PR/MR Creation
### Step 1: Detect Platform
- `.gitlab-ci.yml` or gitlab remote → `glab mr create`
- Otherwise → `gh pr create`
### Step 2: Gather Info
- Branch name, extract ticket ID if present (e.g., `feature/PROJ-123-desc`)
- Base branch from `origin/HEAD`
- Commits since branching
- Changed files summary
- Test status from `make test`
### Step 3: Generate Body
Include: Summary (from commits), Ticket link, Changes, Testing status, Checklist
(tests added, docs updated, no breaking changes, conventional commits, self-reviewed).
### Step 4: Push + Create
```bash
git push -u origin "$BRANCH"
# GitHub: gh pr create --base "$BASE" --title "..." --body "..."
# GitLab: glab mr create --source-branch "$BRANCH" --target-branch "$BASE" ...
```
### Step 5: Output
Display URL and remind to request reviewers / link ticket.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Ultra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix. Use when user says "review this PR", "code review", "review the diff", "/review", or invokes /caveman-review. Auto-triggers when reviewing pull requests.