Back to list
shunkakinoki

pr-create

by shunkakinoki

Configuration for Agents

6🍴 1📅 Jan 23, 2026

SKILL.md


name: pr-create allowed-tools: Read, Bash, TodoWrite description: Create GitHub PRs with proper formatting, labeling, and quality checks

/pr-create — Create pull requests

Create GitHub PRs with proper formatting, labeling, and quality checks.

Quick Workflow

# 1. Stage and commit
git add .
git commit -m "feat: add feature"

# 2. Push branch
git push -u origin feature-branch

# 3. Create PR
gh pr create \
  --title "feat: add feature" \
  --body "## Changes
- Added feature X

## Testing
- All checks pass

Generated with [AI_TOOL] by [AI_MODEL]" \
  --base main

Variant: /pr-create auto

Enable auto-merge after creation:

gh pr merge $(gh pr view --json number -q '.number') --squash --auto

PR Description Template

## Changes
- What was modified

## Technical Details
- Implementation specifics

## Testing
- Verification steps

Generated with [AI_TOOL] by [AI_MODEL]

Labeling

gh pr edit <number> --add-label enhancement  # feat:
gh pr edit <number> --add-label bug          # fix:
gh pr edit <number> --add-label documentation # docs:

Guidelines

  • Conventional commit title format
  • Under 72 characters
  • Solo-authored commits (no co-authorship)
  • AI attribution in PR body only
  • Generate changeset via /changesets if applicable
  • Run quality checks before creating

Score

Total Score

50/100

Based on repository quality metrics

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

Reviews

💬

Reviews coming soon