pr

SkillDev tools

Create a pull request using the wingman PR template. Injects git state, commit history, and diff stats automatically.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the pr skill

What this skill tells your AI

The instructions your AI receives, as published by dedalus-labs/wingman in .agents/skills/pr/SKILL.md and read by ahel’s review.

Context (auto-detected from HEAD)

  • Current branch: !git branch --show-current
  • Remote status: !git status -sb | head -1

PR Template

Read .github/PULL_REQUEST_TEMPLATE.md and fill every section. The template is mandatory. Do not free-form the PR body.

Rules

  • PR title: type(scope): description (conventional commit format, under 70 chars)
  • Target branch: first positional arg from $ARGUMENTS if provided, otherwise main
  • Source branch: if --branch <name> is in $ARGUMENTS, use that branch for diff/log commands instead of HEAD. This is needed when the PR branch lives in a different worktree or the main repo checkout.
  • Push with -u if needed
  • Use gh pr create with --body "$(cat <<'EOF' ... EOF)" for correct formatting
  • Hard limit: 500 changed LOC (excluding generated files and lock files). If the diff exceeds 500 lines, do not create the PR. Instead, propose a stacked-PR plan: split changes into logical, independently reviewable PRs where each PR is under 500 LOC. Each stacked PR targets the previous one's branch (not main) until the final one merges the stack into main.
  • Warn at 200 changed lines — suggest splitting proactively

Task

  1. Determine the source branch: use --branch value if provided, otherwise current HEAD
  2. Gather context by running:
    • git log --oneline origin/main..<source-branch> (commits for this PR)
    • git diff --stat origin/main..<source-branch> (diff stats)
    • git diff --name-only origin/main..<source-branch> (changed files)
  3. Push the branch if needed
  4. Read the PR template
  5. Create the PR with every template section filled
  6. Return the PR URL

Signals

GitHub stars
183
Forks
6
Last commit
Apr 2026
Advanced
Catalog kind
skill
Gateway key
pr-dedalus-labs
Source
github.com/dedalus-labs/wingman