omni-reviewer

omni-reviewer is an agent for Claude Code from basher83/lunar-claude. It costs 284 tokens per session (1,556 once invoked), scanned A, original, MIT.

A review agent for checking Sidero Omni and Talos Kubernetes infrastructure files before they are committed. It focuses on the configuration used to provision machines and clusters on Proxmox.

In plain words
What is it for?
It reviews machine classes, cluster templates, provider configurations, and specification files for Omni-Scale deployments.
Why use it?
It helps catch invalid fields, missing settings, and configuration mistakes before infrastructure changes are applied.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md). Also seen: model in frontmatter.

Part of the omni-scale plugin — 1 skill, 5 commands, 2 agents shipped together

Good fit It reviews machine classes, cluster templates, provider configurations, and specification files for Omni-Scale deployments.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/basher83/lunar-claude/omni-reviewer
Install

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.

Clone the repo
git clone --depth 1 https://github.com/basher83/lunar-claude

Made for: Claude Code.

Or install omni-scale, the plugin that ships this one along with the rest of its 1 skill, 5 commands, 2 agents.

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 omni-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/basher83/lunar-claude/omni-reviewer/github.svg)](https://agentmods.dev/agents/basher83/lunar-claude/omni-reviewer)
Your own site
<a href="https://agentmods.dev/agents/basher83/lunar-claude/omni-reviewer"><img src="https://agentmods.dev/badge/agents/basher83/lunar-claude/omni-reviewer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for omni-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/basher83/lunar-claude/omni-reviewer"><img src="https://agentmods.dev/badge/agents/basher83/lunar-claude/omni-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 284 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,556 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00284 $0.01556
Opus 5 $0.00142 $0.00778
Sonnet 5 $0.00057 $0.00311
Haiku 4.5 $0.00028 $0.00156

Measured 7d ago against content hash e3dc1a1c314d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

omni-reviewer scanned grade A with 0 findings 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 7d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/homelab/omni-scale/agents/omni-reviewer.md · 206 lines

How it starts

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

You are an infrastructure reviewer specializing in Sidero Omni and Talos Kubernetes deployments on Proxmox. You validate manifests against known patterns, constraints, and best practices before they're committed.

Review Scope

This agent reviews the Omni-Scale repository (infrastructure provisioning):

  • Machine classes
  • Cluster templates
  • Provider configs
  • Spec files

For GitOps workload manifests (ArgoCD, Helm, K8s resources), use the gitops-reviewer agent instead.

Validation Rules

Machine Classes (machine-classes/*.yaml)

Required fields:

metadata:
  namespace: default
  type: MachineClasses.omni.sidero.dev
  id: <machine-class-name>
spec:
  autoprovision:
    providerid: <provider-id>
    providerdata: |
      # Required fields
      cores: <int>
      memory: <int>  # MB
      disk_size: <int>  # GB
      network_bridge: <string>
      storage_selector: <CEL expression>

Providerdata schema validation:

Category Valid Fields
Compute cores, sockets, memory, cpu_type, machine_type, numa, hugepages, balloon
Storage disk_size, storage_selector, disk_ssd, disk_discard, disk_iothread, disk_cache, disk_aio, additional_disks
Network network_bridge, vlan, additional_nics
PCI pci_devices (mapping, pcie)
Placement node

CEL selector rules:

  • NEVER use type keyword (reserved in CEL)
  • Use name for storage selection: name == "vm_ssd"
  • Valid pools: vm_ssd, vm_containers

Naming convention:

  • Pattern: <cluster>-<role>[-<host>].yaml
  • Examples: matrix-control-plane.yaml, matrix-worker-foxtrot.yaml

Cluster Templates (clusters/*.yaml)

Multi-document structure:

kind: Cluster
name: <cluster-name>
kubernetes:
  version: v1.x.x  # Must start with 'v'
talos:
  version: v1.x.x  # Must start with 'v'
---
kind: ControlPlane
machineClass:
  name: <existing-machine-class>
  size: <odd-number>  # 1, 3, or 5 for etcd quorum
---
kind: Workers
machineClass:
  name: <existing-machine-class>
  size: <int>

Read the full file on GitHub · 206 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. 7d ago First seen · 206 lines · 284 tokens per session scan A e3dc1a1c314d

Subscribe to this mod's changes

omni-reviewer is an agent published in the GitHub repository basher83/lunar-claude (23 stars, last pushed today), licensed MIT. It adds 284 tokens to every session and 1,556 once invoked, about $0.0014 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other agents, from other repositories

nw-platform-architect-reviewer

Use for review and critique tasks - Platform design, CI/CD pipeline, infrastructure, observability, deployment readiness, and production handoff review specialist. Runs on Haiku for cost efficiency.

nWave-ai/nWave · 44 tokens

vercel-reviewer

Vercel platform code review specialist — vercel.json config, Functions (Node.js/Fluid Compute runtime), ISR, Cron Jobs, Storage, env-var/secrets handling. Framework-agnostic (not Next.js-specific).

TheBeardedBearSAS/claude-craft · 50 tokens

code-quality-reviewer

Use this agent when Terraform code needs to be evaluated for quality, security, and best practices compliance. This agent checks code structure, naming, security posture, and maintainability. Dispatched by the alibabacloud:validate skill during Stage 2 validation.

aliyun/alibabacloud-agent-toolkit · 58 tokens

spec-reviewer

Use this agent when Terraform code needs to be validated against the design specification (design.md). This agent checks that every requirement in the design is correctly implemented in the generated code. Dispatched by the alibabacloud:validate skill during Stage 1 validation.

aliyun/alibabacloud-agent-toolkit · 57 tokens

ia-cloud-architect

Cloud infrastructure design: multi-cloud, Well-Architected Framework, cost optimization, disaster recovery, migration strategies. Use when reviewing or planning cloud architecture.

iliaal/whetstone · 35 tokens

Bicep Reviewer

Review Bicep templates for best practices: naming, parameters, security, module structure, linter violations, API versions.

srnichols/plan-forge · 30 tokens