Back to list
so-ta

create-pr

by so-ta

0🍴 0📅 Jan 23, 2026

SKILL.md


name: create-pr description: | Create a pull request after code changes are complete and reviewed. Use proactively after self-review passes and documentation is updated.

Create Pull Request

自己レビュー完了後のPR作成。

前提条件

  • self-review が完了している
  • テストがすべてパスしている
  • 必要なドキュメント更新が完了している

手順

1. 最終確認

# 変更内容の確認
git status
git diff --stat

# テスト最終確認
cd backend && go test ./...
cd frontend && npm run check

2. コミット

git add .
git commit -m "<type>: <description>"

コミットメッセージ形式:

  • feat: 新機能
  • fix: バグ修正
  • refactor: リファクタリング
  • docs: ドキュメント
  • test: テスト
  • chore: その他

3. プッシュ

git push -u origin <branch-name>

4. PR作成

gh pr create --title "<type>: <description>" --body "## Summary

- 変更内容の要約

## Changes

- 具体的な変更点

## Test Plan

- テスト方法"

PR作成後

PR作成後は review-pr スキルでCIとCodexレビューの結果を確認する。

注意事項

  • ローカルCIが通っていない状態でpushしない
  • コミットメッセージは明確で簡潔に
  • PRの説明は変更の「なぜ」を含める

Score

Total Score

40/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