crc-noo-config

crc-noo-config is a skill for Claude Code, Codex from rhtevan/agentfs. It costs 15 tokens per session (1,853 once invoked), scanned A, original, Apache-2.0.

A setup procedure for installing the Network Observability Operator on an OpenShift Local cluster and enabling network-flow and topology monitoring with demo Loki storage.

In plain words
What is it for?
Use it when a running CRC cluster uses OVN-Kubernetes and needs network observability, flow logs, topology data, and supported eBPF features.
Why use it?
It provides the configuration needed to observe network traffic and relationships in a local OpenShift cluster without requiring separate Loki or observability operators.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when a running CRC cluster uses OVN-Kubernetes and needs network observability, flow logs, topology data, and supported eBPF features.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rhtevan/agentfs/crc-noo-config
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.

Any agent
npx skills add rhtevan/agentfs --skill crc-noo-config
Clone the repo
git clone --depth 1 https://github.com/rhtevan/agentfs

Made for: Claude Code, Codex.

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 crc-noo-config

README.md
[![agentmods](https://agentmods.dev/badge/skills/rhtevan/agentfs/crc-noo-config/github.svg)](https://agentmods.dev/skills/rhtevan/agentfs/crc-noo-config)
Your own site
<a href="https://agentmods.dev/skills/rhtevan/agentfs/crc-noo-config"><img src="https://agentmods.dev/badge/skills/rhtevan/agentfs/crc-noo-config/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 crc-noo-config

Your own site · 80×15
<a href="https://agentmods.dev/skills/rhtevan/agentfs/crc-noo-config"><img src="https://agentmods.dev/badge/skills/rhtevan/agentfs/crc-noo-config.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,853 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.00015 $0.01853
Opus 5 $0.00008 $0.00927
Sonnet 5 $0.00003 $0.00371
Haiku 4.5 $0.00002 $0.00185

Measured 8d ago against content hash 5c9740834a22, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

crc-noo-config 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 8d 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.

skills/crc-noo-config/SKILL.md · 191 lines

How it starts

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

Install and Configure Network Observability Operator on CRC

Install the Network Observability Operator on an OpenShift Local (CRC) cluster with demo Loki for full flow log and topology support, and enable all non-Tech-Preview eBPF features.

Prerequisites

  • The CRC cluster is running and you are logged in as kubeadmin.
  • The cluster must be using OVN-Kubernetes as the network plugin (CRC default).
  • No other operators are required. Loki Operator is NOT needed — this skill uses the built-in demo Loki mode. Cluster Observability Operator is NOT needed.

Steps

  1. Verify cluster access and network plugin

    oc whoami
    oc get network.config.openshift.io cluster -o jsonpath='{.status.networkType}'
    

    Confirm you are kubeadmin and the network type is OVNKubernetes.

  2. Create the netobserv namespace

    oc create namespace netobserv
    
  3. Install the Network Observability Operator Create a Subscription in the openshift-operators namespace to install from the redhat-operators catalog on the stable channel:

    cat <<'EOF' | oc apply -f -
    apiVersion: operators.coreos.com/v1alpha1
    kind: Subscription
    metadata:
      name: netobserv-operator
      namespace: openshift-operators
    spec:
      channel: stable
      installPlanApproval: Automatic
      name: netobserv-operator
      source: redhat-operators
      sourceNamespace: openshift-marketplace
    EOF
    
  4. Wait for the operator to be ready Wait for the CSV to reach Succeeded and the operator pods to start:

    timeout 300 bash -c '
      until oc get csv -n openshift-operators -o wide 2>/dev/null | grep -q "network-observability-operator.*Succeeded"; do
        echo "Waiting for Network Observability Operator CSV to succeed..."
        sleep 15
      done
      echo "CSV succeeded."
    '
    

    Then confirm the pods are running:

    oc get pods -n openshift-operators | grep netobserv
    

    You should see:

    • netobserv-controller-manager-* — Running
    • netobserv-plugin-static-* — Running (console plugin)

Read the full file on GitHub · 191 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d ago First seen · 191 lines · 15 tokens per session scan A 5c9740834a22

Subscribe to this mod's changes

crc-noo-config is a skill published in the GitHub repository rhtevan/agentfs (2 stars, last pushed 4d ago), licensed Apache-2.0. It adds 15 tokens to every session and 1,853 once invoked, about $0.0001 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-08-31.

Related

Other skills, from other repositories

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens

google-cloud-filestore-autoscale

Inspects Google Cloud Filestore capacity and utilization, evaluates storage scaling rules, and performs capacity autoscaling (scale UP for low free space or scale DOWN for cost optimization). Use when monitoring Filestore instance headroom, resizing instance shares, configuring automated growth/shrink thresholds…

google/skills · 101 tokens

terraform-module-library

Build reusable Terraform modules for AWS, Azure, GCP, and OCI infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.

wshobson/agents · 44 tokens

vast-gpu

Rent, manage, and destroy GPU instances on vast.ai. Use when user says "rent gpu", "vast.ai", "rent a server", "cloud gpu", or needs on-demand GPU without owning hardware.

wanshuiyin/Auto-claude-code-research-in-sleep · 46 tokens

doca-hardware-safety

Use this skill whenever the agent is about to recommend or apply a change that touches DPU / NIC hardware state on a live system — mlxconfig firmware-parameter write, NIC firmware burn, BFB reflash, NIC ↔ DPU mode flip, SR-IOV or device-emulation slot enable, kernel boot-parameter change (IOMMU, hugepages, VFIO), PCIe…

NVIDIA/skills · 254 tokens

doca-setup

Use this skill when the user is dealing with the DOCA environment around their workload — verifying an install is healthy, preparing the build env (pkg-config, headers, LDLIBRARYPATH, hugepages, devlink, representors), debugging env-class failures, deciding container-vs-bare-metal deployment shape, or reaching a DOCA…

NVIDIA/skills · 226 tokens