🎯

pr

🎯Skill

from windmill-labs/windmill

VibeIndex|
What it does

Opens a draft pull request on GitHub with a structured title, description, and test plan, following conventional commit guidelines.

πŸ“¦

Part of

windmill-labs/windmill(3 items)

pr

Installation

npm runRun npm script
npm run dev
CargoRun with Cargo (Rust)
cargo install sqlx-cli
πŸ“– Extracted from docs: windmill-labs/windmill
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Open a draft pull request on GitHub. MUST use when you want to create/open a PR.

Overview

# Pull Request Skill

Create a draft pull request with a clear title and explicit description of changes.

Instructions

  1. Analyze branch changes: Understand all commits since diverging from main
  2. Push to remote: Ensure all commits are pushed
  3. Create draft PR: Always open as draft for review before merging

PR Title Format

Follow conventional commit format for the PR title:

```

:

```

Types

  • feat: New feature or capability
  • fix: Bug fix
  • refactor: Code restructuring
  • docs: Documentation changes
  • chore: Maintenance tasks
  • perf: Performance improvements

Title Rules

  • Keep under 70 characters
  • Use lowercase, imperative mood
  • No period at the end

PR Body Format

The body MUST be explicit about what changed. Structure:

```markdown

Summary

Changes

Test plan

  • [ ]
  • [ ]

---

Generated with [Claude Code](https://claude.com/claude-code)

```

Execution Steps

  1. Run git status to check for uncommitted changes
  2. Run git log main..HEAD --oneline to see all commits in this branch
  3. Run git diff main...HEAD to see the full diff against main
  4. Check if remote branch exists and is up to date:

```bash

git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null || echo "no upstream"

```

  1. Push to remote if needed: git push -u origin HEAD
  2. Create draft PR using gh CLI:

```bash

gh pr create --draft --title ": " --body "$(cat <<'EOF'

## Summary

## Changes

-

-

## Test plan

- [ ]

- [ ]

---

Generated with [Claude Code](https://claude.com/claude-code)

EOF

)"

```

  1. Return the PR URL to the user