← スキル一覧に戻る

create-pull-request
by abyssparanoia
By using rapid-go you can quickly start developing a great API......
⭐ 18🍴 2📅 2026年1月20日
SKILL.md
name: create-pull-request description: Create pull requests following project conventions. Use when: (1) creating a PR with gh pr create, (2) writing commit messages, (3) need branch naming guidance. Covers branch naming patterns, PR title/body format, and pre-commit checks.
PR Creation Quick Reference
Branch Naming
| Type | Pattern | Example |
|---|---|---|
| Feature | feature/{description} | feature/impl-admin-example-api |
| Bugfix | fix/{description} | fix/example-creation-error |
| Chore | chore/{description} | chore/update-dependencies |
PR Title
Use English. Be concise and descriptive.
Implement AdminService.GetExample
Add validation for Example create API
Fix null pointer in tenant lookup
PR Body Template
## Proposed Changes
- Brief description of what was changed
## Implementation
{Verification details - curl commands, CLI output, or file changes}
Implementation Section Examples
API Endpoint
## Implementation
### POST /admin/v1/tenants/{tenant_id}/examples
curl -X POST "http://localhost:8080/admin/v1/tenants/xxx/examples" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '{"name": "Test", "description": "Test desc"}'
Response:
{"example": {"id": "xxx", "name": "Test", "created_at": "2025-01-01T00:00:00Z"}}
Non-API Changes
## Implementation
- Updated `internal/domain/model/example.go` with new validation
- Added unit tests in `example_test.go`
- Regenerated mocks with `make generate.mock`
Pre-PR Checklist
make lint.go # Must pass
make test # Must pass
If applicable:
make migrate.up- after DB changesmake generate.buf- after proto changesmake generate.mock- after repository interface changes
Create PR Command
gh pr create --title "Implement feature" --body "$(cat <<'EOF'
## Proposed Changes
- Implemented new feature
## Implementation
{Details}
EOF
)"
Important Notes
- Do NOT add AI attribution (no "Generated with Claude Code" or "Co-Authored-By: Claude")
- Keep commit messages and PR descriptions clean
- Run
self-reviewskill before creating PR to catch issues early
スコア
総合スコア
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
レビュー
💬
レビュー機能は近日公開予定です