From oxgl
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.
npx claudepluginhub oxidian/cc-plugins --plugin oxglThis skill is limited to using the following tools:
- Git remote: !`git remote get-url origin`
Waits for AI code review on GitLab MR, checks out branch, analyzes top finding from notes, and generates TDD fix plan. Use after MR submission.
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.
Manages GitLab merge requests via glab: create from commits, list/view/checkout, merge with auto-handling, block MRs, handle reviews/discussions/stacks.
Share bugs, ideas, or general feedback.
git remote get-url origin$ARGUMENTS if provided, otherwise detect from current branch with glab mr view --output json | jq '.iid'glab mr checkout <MR_IID> to ensure you're on the MR's branch (safe to run even if already on the branch)python3 ${CLAUDE_PLUGIN_ROOT}/scripts/wait_for_ai_review.py <MR_IID> (use 45 minute timeout)glab repo view --output json | jq '.id' and run glab api "/projects/{project_id}/merge_requests/<MR_IID>/notes" --jq '[.[] | select(.system == false)]'glab mr merge --when-pipeline-succeeds (no other flags)