スキル一覧に戻る
BreakerOfStems

github-pr

by BreakerOfStems

0🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: github-pr description: Create and manage pull requests

GitHub Pull Request Skill

Create pull requests with proper descriptions and link to issues.

See also: Shared Conventions | Safety Guidelines

Purpose

Create well-documented pull requests that are easy to review.

Commands

gh pr create
gh pr create --title "<title>" --body "<body>"
gh pr create --draft
gh pr view <number>
gh pr list
gh pr checks <number>

PR Title Format

Include issue number in title:

[#123] Fix login validation bug
[#456] Add user authentication

PR Body Template

## Summary

<!-- Brief description of the changes -->

## Related Issue

Closes #<issue-number>

## Changes Made

- Change 1
- Change 2

## Testing

- [ ] Unit tests pass
- [ ] Manual testing completed

## Checklist

- [ ] Code follows project conventions
- [ ] Self-review completed

Workflow

  1. Verify branch is ready

    git status
    git log origin/main..HEAD --oneline
    
  2. Push latest changes

    git push
    
  3. Create PR

    gh pr create --title "[#123] Fix login bug" --body "## Summary
    Fixes validation issue in login form.
    
    Closes #123"
    
  4. Verify PR created

    gh pr view
    

Policies

  • PR title must include issue number
  • PR body must reference the issue with "Closes #X" or "Fixes #X"
  • Ensure all commits are pushed before creating PR
  • Use draft PRs for work-in-progress
  • Never push directly to main/master

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です