Create a PR from dev to main following project merge flow. Runs version bump, syncs dev with main first, creates PR with --auto merge.
Install
mkdir -p .claude/skills/pr-llloooggg && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13458" && unzip -o skill.zip -d .claude/skills/pr-llloooggg && rm skill.zipInstalls to .claude/skills/pr-llloooggg
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Create a PR from dev to main following project merge flow. Runs version bump, syncs dev with main first, creates PR with --auto merge.134 charsno explicit “when” trigger
About this skill
PR workflow for LetsFLUTssh (dev -> main)
Follow the project's branching & release flow strictly.
Step 1: Verify state
- Confirm we're on
devbranch. If not, STOP git status— working tree must be clean. If dirty, STOP and tell user to commit first
Step 2: Sync dev with main
git fetch origin main && git merge origin/main
If conflicts: STOP and tell user. If fast-forward or clean merge, push: git push
Step 3: Version bump
Run the bump script to calculate and apply the version bump from conventional commits:
dev/scripts/bump-version.sh
- If it says "nothing to bump" — skip (docs/test/ci-only PR, no version change needed)
- If it bumps — push the bump commit:
git push
Step 4: Gather PR info
git log origin/main..HEAD --oneline— all commits going into this PRgit diff origin/main...HEAD --stat— changed files summary
Step 5: Create PR with auto-merge
gh pr create --base main --head dev --title "TITLE" --body "$(cat <<'EOF'
## Summary
- bullet points from commits
## Test plan
- CI passes (ci, osv-scan, semgrep-scan, codeql-scan)
Generated with [Claude Code](https://claude.com/claude-code)
EOF
)" && gh pr merge --auto --merge
Step 6: After merge confirmation
Tell user: "After PR merges, sync dev with main: git fetch origin main && git merge origin/main && git push"
Arguments
If user passes a custom title: $ARGUMENTS