Sub-skill of github-swarm-pr: Merge Status (+2).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill merge-status --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Merge Status?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-merge-status-workspace-hub)More formats (shields.io, HTML) on the badges page.
---
name: github-swarm-pr-merge-status
description: 'Sub-skill of github-swarm-pr: Merge Status (+2).'
version: 1.0.0
category: development
type: reference
scripts_exempt: true
---
# Merge Status (+2)
## Merge Status
- Mergeable: $MERGEABLE
- CI Status: $CI_STATUS
- Approvals: $APPROVALS
## Recommendations
$([ "$MERGEABLE" == "MERGEABLE" ] && echo "- Ready for merge" || echo "- Resolve conflicts first")
$([ "$CI_STATUS" == "SUCCESS" ] && echo "- CI passing" || echo "- Wait for CI to complete")
$([ $APPROVALS -ge 2 ] && echo "- Sufficient approvals" || echo "- Need more reviews")
EOF
}
validate_pr 123
```
## 5. Intelligent Merge Coordination
```bash
# Check if PR is ready to merge
check_merge_readiness() {
local PR_NUM=$1
# Get all checks
CHECKS=$(gh pr checks $PR_NUM --json name,state,conclusion)
# Count passed/failed/pending
PASSED=$(echo "$CHECKS" | jq '[.[] | select(.conclusion == "success")] | length')
*See sub-skills for full details.*
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!