compliance-gate-spot-check

compliance-gate-spot-check is a skill for Claude Code, Codex from vibeic/vibe-ic. It costs 61 tokens per session (1,928 once invoked), scanned A, original, Apache-2.0.

A review step that checks a sample of hardware design rules after an automated compliance checker reports PASS. It looks for rules that passed because of narrow checks, waivers, or trivial placeholder code.

In plain words
What is it for?
It helps select risky rules for manual inspection and verify that reported passes reflect real structural properties of the design.
Why use it?
An automated PASS can miss a real defect when a rule is incomplete or has been satisfied in a way that does not prove the design is correct.

Skill for Claude CodeCodex

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 programs/gate_reliability_register.py rank \.

Part of the vibe-ic plugin — 70 skills, 8 commands, 8 agents, 2 hooks, 1 MCP server shipped together

Good fit It helps select risky rules for manual inspection and verify that reported passes reflect real structural properties of the design.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/vibeic/vibe-ic
agentmods
npx agentmods add skills/vibeic/vibe-ic/compliance-gate-spot-check

Made for: Claude Code, Codex.

Or install vibe-ic, the plugin that ships this one along with the rest of its 70 skills, 8 commands, 8 agents, 2 hooks, 1 MCP server.

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 compliance-gate-spot-check

README.md
[![agentmods](https://agentmods.dev/badge/skills/vibeic/vibe-ic/compliance-gate-spot-check/github.svg)](https://agentmods.dev/skills/vibeic/vibe-ic/compliance-gate-spot-check)
Your own site
<a href="https://agentmods.dev/skills/vibeic/vibe-ic/compliance-gate-spot-check"><img src="https://agentmods.dev/badge/skills/vibeic/vibe-ic/compliance-gate-spot-check/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 compliance-gate-spot-check

Your own site · 80×15
<a href="https://agentmods.dev/skills/vibeic/vibe-ic/compliance-gate-spot-check"><img src="https://agentmods.dev/badge/skills/vibeic/vibe-ic/compliance-gate-spot-check.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,928 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00061 $0.01928
Opus 5 $0.00030 $0.00964
Sonnet 5 $0.00012 $0.00386
Haiku 4.5 $0.00006 $0.00193

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

Security

Grade A, and why

compliance-gate-spot-check 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 12d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (tests/test_compliance.py, tests/test_reliability_register_wiring.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.

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.

vibe-ic-marketplace/plugins/vibe-ic/skills/compliance-gate-spot-check/SKILL.md · 173 lines

How it starts

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

Compliance Gate Spot-Check

Purpose: 77+ structural-RTL gates may report PASS but include gameable patterns where:

  • Gate's regex is too narrow (Wave-30/33 have history of this — slave_tx_no_device_break_check originally missed tx_oe_low because \b boundary)
  • Project carries a waiver that satisfies the gate but the underlying defect is real
  • The gate's PASS condition is satisfied trivially (e.g. "L9 has ≥3 typed fields" satisfied by stub fields)

Prioritize the sampling budget (optional — falls back to uniform sampling)

Before sampling, ask the gate-reliability register which gates have a history of being gamed / false-passed, so the limited spot-check budget lands on the historically-dangerous gates first instead of uniformly across all 77. The register is programs/gate_reliability_register.py — a self-calibrating per-gate EMA ledger of pass-rate and false-PASS-rate. It is an optional prioritizer: when the ledger is empty/absent it ranks nothing, and you fall back to the uniform "5 random gates" behavior in step 1 below.

The ledger path is positional (the program calls it LEDGER). Use a stable location such as <project>/reports/gate_reliability_register.json (or a shared cross-project ledger). Steps:

1a. Ensure the ledger exists, then rank. A freshly touched (empty) ledger ranks to [] and you proceed uniformly — so this never blocks you:

```bash
# create on first use so `rank` never errors on a missing file
touch <project>/reports/gate_reliability_register.json

# priority-ordered gate list (highest false-PASS history first)
python3 programs/gate_reliability_register.py rank \
    <project>/reports/gate_reliability_register.json --top 10
```

The output is a JSON array of `{"gate": ..., "spotcheck_priority": ...}`
sorted highest-priority first. **Spend your sampling budget on the
top-ranked gates** (they are the historically-gamed ones) before sampling
the remaining gates at random. If the array is empty, sample uniformly.

Read the full file on GitHub · 173 lines

Files

What ships with it

3 files 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. 12d ago First seen · 173 lines · 61 tokens per session scan A c7c44c592d67

Subscribe to this mod's changes

compliance-gate-spot-check is a skill published in the GitHub repository vibeic/vibe-ic (23 stars, last pushed today), licensed Apache-2.0. It adds 61 tokens to every session and 1,928 once invoked, about $0.0003 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-30.

Related

Other skills, from other repositories

analog-netlist-crawl

Crawl and analyze post-layout parasitic netlists without running SPICE. Answers "what's the effective resistance from node A to node B across this massive R mesh?", "inside the VREFN mesh, which device pins are electrically farthest apart?", "which nets have the worst coupling?", "where does settling bottleneck?" — by…

Arcadia-1/analog-agents · 291 tokens

analog-verify

Pre-simulation review and Spectre simulation verification for analog circuits. Reviews circuit netlist and testbench, runs simulation, produces margin report. Use after analog-design completes a netlist.

Arcadia-1/analog-agents · 41 tokens

analog-design

Transistor-level circuit design for one analog sub-block. Produces Spectre netlist with hand-calculation rationale. Use when designing a specific circuit block after architecture is defined.

Arcadia-1/analog-agents · 38 tokens

analog-pipeline

MANDATORY — MUST load this skill when the user mentions: OTA, ADC, PLL, comparator, bandgap, LDO, amplifier, opamp, or any analog/mixed-signal IC design task. Full analog design pipeline: spec -> architecture -> design -> verify -> deliver. Orchestrates analog-decompose, analog-behavioral, analog-design…

Arcadia-1/analog-agents · 94 tokens

analog-audit

Audit analog circuit netlists for correctness, quality, and risks. Supports both pre-layout (schematic) and post-layout (extracted) netlists. Post-layout mode filters massive parasitic netlists before auditing. Works without EDA. TRIGGER on: "audit", "review netlist", "check this circuit", "design review"…

Arcadia-1/analog-agents · 92 tokens

analog-decompose

Architect Phase 1: decompose top-level analog spec into sub-block specs. Use when starting a new analog design to select architecture, allocate budgets, define sub-block specs, write testbenches, and create verification plans.

Arcadia-1/analog-agents · 49 tokens