From oxgl
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.
npx claudepluginhub oxidian/cc-plugins --plugin oxglThis skill is limited to using the following tools:
- Git remote: !`git remote get-url origin`
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.
Waits 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.
Drives GitHub/GitLab issue implementation through iterative review cycles: research, plan, worktree, code, test, PR/MR, multi-reviewer fixes to APPROVE, merge.
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)]'