omnireview-gitlab

omnireview-gitlab is a skill for Claude Code from nexiouscaliver/OmniForge. It costs 41 tokens per session (10,745 once invoked), scanned B, original, MIT.

A GitLab merge-request reviewer that sends three independent AI agents to examine code, security, and development process concerns in isolated copies of the code.

In plain words
What is it for?
Reviewing GitLab merge requests, combining findings by confidence, and optionally commenting, creating issues, or approving the request.
Why use it?
Separate reviews can expose different problems while isolated copies keep the review work from interfering with the working branch.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions subagents.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the omniforge plugin — 8 skills shipped together

Good fit Reviewing GitLab merge requests, combining findings by confidence, and optionally commenting, creating issues, or approving the request.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add nexiouscaliver/OmniForge
Claude Code
/plugin install omniforge

Made for: Claude Code.

Or install omniforge, the plugin that ships this one along with the rest of its 8 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for omnireview-gitlab

README.md
[![agentmods](https://agentmods.dev/badge/skills/nexiouscaliver/omniforge/omnireview-gitlab.svg)](https://agentmods.dev/skills/nexiouscaliver/omniforge/omnireview-gitlab)
Your own site
<a href="https://agentmods.dev/skills/nexiouscaliver/omniforge/omnireview-gitlab"><img src="https://agentmods.dev/badge/skills/nexiouscaliver/omniforge/omnireview-gitlab.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 10,745 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00041 $0.10745
Opus 5 $0.00020 $0.05372
Sonnet 5 $0.00008 $0.02149
Haiku 4.5 $0.00004 $0.01074

Measured yesterday against content hash 61e18bc2511e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade B, and why

omnireview-gitlab scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

The scan reads SKILL.md. This mod also ships 11 executable files (scripts/omni_adjudicate.py, scripts/omni_consolidate.py, scripts/omni_digest.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletemediumDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

Then **Read `/tmp/omni_wait_out_{id}/status.json`** — entries with `"state":"stalled"` or `"harvested_partial":true` are partial-output agents; `"state":"missing"` agents never produced a transcript. **For every agent wh

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

plugins/omniforge/skills/omnireview-gitlab/SKILL.md · 739 lines

How it starts

The opening of the file, as written. The whole thing — 739 lines — stays where its author put it; the contents beside it link to each section on GitHub.

OmniForge

Multi-agent adversarial MR review — 3 parallel agents, 3 worktrees, 1 consolidated report.

Dispatch 3 parallel specialized agents in isolated git worktrees to perform adversarial, independent analysis of a GitLab MR. Consolidate findings via confidence scoring, present actionable report, then offer structured actions (comment, create issues, approve).

Core principle: Independent adversarial review + confidence filtering + worktree isolation = high-signal feedback with minimal noise.

Announce at start: "I'm using OmniForge to review MR !{id}."

Prerequisites

  • glab CLI authenticated (glab auth status to verify)
  • Git repository with remote pointing to GitLab
  • Current working directory is in the git repo

Input Parsing

Accept any of: MR number (136), prefixed (!136), or full GitLab URL. Extract MR ID. If URL provided, extract project path and MR IID.

The Process

digraph omnireview_flow {
    rankdir=TB;
    node [shape=box];

    gather [label="Phase 1: Gather MR Data\nglab mr view + diff + comments"];
    worktrees [label="Phase 2: Create 3 Worktrees\n(on MR source branch)"];
    dispatch [label="Phase 3: Dispatch 3 OmniForge Agents\nIN PARALLEL"];
    analyst [label="MR Analyst (OmniForge)\n(worktree 1)"];
    codebase [label="Codebase Reviewer (OmniForge)\n(worktree 2)"];
    security [label="Security Reviewer (OmniForge)\n(worktree 3)"];
    consolidate [label="Phase 4: Consolidation\nconsolidator + worklist"];
    report [label="Phase 5: Present Report\n(NEVER auto-post)"];
    action [label="Phase 6: Action Menu\n(user chooses)"];
    cleanup [label="Phase 7: Cleanup\n(ALWAYS runs)"];

    gather -> worktrees -> dispatch;
    dispatch -> analyst;
    dispatch -> codebase;
    dispatch -> security;
    analyst -> consolidate;
    codebase -> consolidate;
    security -> consolidate;
    consolidate -> report -> action -> cleanup;
}

Phase 1: Gather MR Data

Fetch ALL data before dispatching agents. Agents get data injected — they never re-fetch.

Read the full file on GitHub · 739 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday Changed 61e18bc2511e
  2. 2d ago Changed · +309 lines 2c853a95351d
  3. 7d ago First seen · 430 lines · 41 tokens per session scan B 3e495a5d3d94

Subscribe to this mod's changes

omnireview-gitlab is a skill published in the GitHub repository nexiouscaliver/OmniForge (4 stars, last pushed 2d ago), licensed MIT. It adds 41 tokens to every session and 10,745 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.