← Back to list

release-patterns
by bybren-llc
Production-validated SAFe multi-agent development methodology with Claude Code. Treat AI agents as specialized team members (11 roles: BSA, Architect, QAS, etc). Complete whitepaper + working template.
⭐ 22🍴 7📅 Jan 20, 2026
SKILL.md
name: release-patterns description: PR creation, CI/CD validation, and release coordination patterns. Use when creating pull requests, running pre-PR validation, checking CI status, or coordinating merges.
Release Patterns Skill
Purpose
Ensure consistent PR creation, CI/CD validation, and release coordination following rebase-first workflow.
When This Skill Applies
- Creating pull requests
- Running pre-PR validation
- Checking CI/CD status
- Coordinating merge timing
Pre-PR Checklist (MANDATORY)
Before creating any PR:
- Branch name:
{TICKET_PREFIX}-{number}-{description} - Commits follow:
type(scope): description [{TICKET_PREFIX}-XXX] - Rebased on latest main:
git fetch origin && git rebase origin/{MAIN_BRANCH} - CI passes locally:
{CI_VALIDATE_COMMAND}
PR Creation
gh pr create \
--title "feat(scope): description [{TICKET_PREFIX}-XXX]" \
--body "## Summary
Implements feature as specified in {TICKET_PREFIX}-XXX.
## Changes
- Change 1
- Change 2
## Testing
- CI passes
- Manual testing completed"
Merge Strategy
ONLY use rebase merge:
# CORRECT
gh pr merge --rebase --delete-branch
# NEVER
gh pr merge --squash # Loses history
gh pr merge --merge # Creates merge commits
Reference
- PR Template:
.github/pull_request_template.md - Workflow Guide:
CONTRIBUTING.md
Score
Total Score
75/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon

