From oxgh
Automates GitHub PR workflow: detects PR, checks out branch, waits for AI code review, auto-merges if clean, or creates TDD fix plan for top issue.
How this skill is triggered — by the user, by Claude, or both
Slash command
/oxgh:merge-or-fixThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Git remote: !`git remote get-url origin`
git remote get-url origin$ARGUMENTS if provided, otherwise detect from current branch with gh pr view --json number --jq '.number'gh pr checkout <PR_NUMBER> to ensure you're on the PR's branch (safe to run even if already on the branch)python3 ${CLAUDE_PLUGIN_ROOT}/scripts/wait_for_ai_review.py <PR_NUMBER> (use 45 minute timeout)gh api repos/{owner}/{repo}/issues/<PR_NUMBER>/commentsgh pr merge --auto (no other flags)npx claudepluginhub oxidian/cc-plugins --plugin oxghWaits for AI code review on GitHub PRs, analyzes top finding from comments, and generates TDD fix plan without user prompt. Use after submitting PRs for review.
Automates GitLab MR workflow: waits for AI code review via script, auto-merges clean MRs after pipeline, or plans TDD fix for top issue from notes.
Automates addressing GitHub PR review comments: fetches feedback from reviewers/bots, applies code fixes, verifies changes, pushes updates, resolves threads, requests re-review. Use on PR branches with pending feedback.