Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/nexiouscaliver/omniforge/omnireview-githubnpx skills add nexiouscaliver/OmniForge --skill omnireview-githubgit clone --depth 1 https://github.com/nexiouscaliver/OmniForgeWrote 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.
[](https://agentmods.dev/skills/nexiouscaliver/omniforge/omnireview-github)<a href="https://agentmods.dev/skills/nexiouscaliver/omniforge/omnireview-github"><img src="https://agentmods.dev/badge/skills/nexiouscaliver/omniforge/omnireview-github.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00040 | $0.04719 |
| Opus 5 | $0.00020 | $0.02360 |
| Sonnet 5 | $0.00008 | $0.00944 |
| Haiku 4.5 | $0.00004 | $0.00472 |
Grade B, and why
omnireview-github 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 4d ago.
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.
rm -rf .worktrees/omni-analyst-{id} .worktrees/omni-codebase-{id} .worktrees/omni-security-{id} 2>/dev/null Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
How it starts
The opening of the file, as written. The whole thing — 446 lines — stays where its author put it; the contents beside it link to each section on GitHub.
OmniForge
Multi-agent adversarial PR 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 GitHub PR. 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 PR #{id}."
Prerequisites
ghCLI authenticated (gh auth statusto verify)- Git repository with remote pointing to GitHub
- Current working directory is in the git repo
Input Parsing
Accept any of: PR number (136), prefixed (#136), or full GitHub URL.
Extract PR ID. If URL provided, extract owner/repo and PR number.
The Process
digraph omnireview_flow {
rankdir=TB;
node [shape=box];
gather [label="Phase 1: Gather PR Data\ngh pr view + diff + comments"];
worktrees [label="Phase 2: Create 3 Worktrees\n(on PR source branch)"];
dispatch [label="Phase 3: Dispatch 3 OmniForge Agents\nIN PARALLEL"];
analyst [label="PR 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\nconfidence scoring + cross-correlation"];
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 PR Data
Fetch ALL data before dispatching agents. Agents get data injected — they never re-fetch.
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.
- 4d ago First seen · 446 lines · 40 tokens per session scan B 4bf1524ab168
omnireview-github is a skill published in the GitHub repository nexiouscaliver/OmniForge (3 stars, last pushed 9d ago), licensed MIT. It adds 40 tokens to every session and 4,719 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.
Other skills, from other repositories
add-teams
Adds Microsoft Teams connector to a Power Apps code app. Use when sending Teams messages, posting to channels, or integrating with Teams chat.
cesiumjs-camera
CesiumJS camera control - Camera, flyTo, lookAt, setView, ScreenSpaceCameraController, CameraEventAggregator, flight animation. Use when positioning the camera, creating flyTo animations, constraining user navigation, tracking entities, or converting between screen and world coordinates.
cesiumjs-imagery
CesiumJS imagery layers - ImageryProvider, ImageryLayer, ImageryLayerCollection, WMS, WMTS, Bing, OpenStreetMap, ArcGIS, Mapbox, tile discard policies. Use when adding or swapping base map layers, configuring imagery providers, layering multiple map sources, or creating split-screen imagery comparisons.
cesiumjs-core-utilities
CesiumJS core utilities and networking - Resource, Color, Event, Request, RequestScheduler, error handling, helper functions, feature detection. Use when fetching remote data, managing HTTP requests, working with colors, handling events, debugging errors, or using utility functions like defined, clone, or…
cesiumjs-materials-shaders
CesiumJS materials and post-processing — Material, Fabric JSON, MaterialAppearance, ImageBasedLighting, PostProcessStage, PostProcessStageLibrary, bloom, depth of field, ambient occlusion, FXAA, tonemapping, BlendingState. Use when defining Fabric materials for entities or primitives, configuring PBR image-based…
cesiumjs-models-particles
CesiumJS models, glTF, and particle effects - Model, KHRmeshoptcompression, CAD glTF extensions, EdgeDisplayMode, ModelAnimation, ModelNode, ParticleSystem, emitters, GPM extensions. Use when loading compressed or CAD-style glTF/GLB models, controlling edge rendering, playing model animations, positioning particles…