rtl-review

rtl-review is a skill for Claude Code from vibeic/vibe-ic. It costs 63 tokens per session (1,910 once invoked), scanned A, original, Apache-2.0.

A review workflow for RTL, the code used to describe digital hardware. It checks for lint problems, synthesis hazards, reset and clock issues, correctness risks, port mismatches, and readability concerns.

In plain words
What is it for?
Use it to review Verilog or SystemVerilog, check whether a module can be synthesised, or get feedback before simulation or tape-out.
Why use it?
It finds hardware-code problems before simulation, synthesis, or manufacturing makes them more expensive to fix.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 plugins/vibe-ic/programs/rtl_review_aggregate.py \.

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

Good fit Use it to review Verilog or SystemVerilog, check whether a module can be synthesised, or get feedback before simulation or tape-out.

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/rtl-review

Made for: Claude Code.

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 rtl-review

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/vibeic/vibe-ic/rtl-review"><img src="https://agentmods.dev/badge/skills/vibeic/vibe-ic/rtl-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,910 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.00063 $0.01910
Opus 5 $0.00032 $0.00955
Sonnet 5 $0.00013 $0.00382
Haiku 4.5 $0.00006 $0.00191

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

Security

Grade A, and why

rtl-review 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 4d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (tests/test_compliance.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/rtl-review/SKILL.md · 156 lines

How it starts

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

RTL Review (Pattern-A — program-driven, doctrine-compliant v0.1.50)

Doctrine (user, 2026-05-29): 把修法寫進工具,而非寫進 prompt。

The 6-category checklist + 0-10 scoring rubric that previously lived in this skill prose is now in programs/rtl_review_aggregate.py (54 pytest cases pin every category mapping + scoring boundary, and pin that an unreadable producer is REFUSED rather than scored as clean).

You run the program first. Claude is the backstop for residual prose, NOT the rule applicator.

When to use

User shares an RTL file or directory and asks for a review.

Mandatory: run the program FIRST

python3 plugins/vibe-ic/programs/rtl_review_aggregate.py \
    --rtl-dir <dir-of-.v-and-.sv> \
    --out-md  rtl_review.md \
    --out-json rtl_review.json

Exit codes: 0 = PASS or WARN; 1 = FAIL (with --strict); 2 = bad input.

The program runs three sub-programs:

  • rtl_hygiene_lint.py — § 1 synthesis hazards + § 3 style + § 5 width
  • reset_discipline_check.py — § 2 reset/clock hygiene
  • rtl_precheck_gate.py — § 4 correctness smells + § 6 port fidelity

It aggregates findings into 6 categories, computes the score (rubric in compute_score()), and emits the same Markdown template the skill previously asked the LLM to author by hand.

What Claude does (backstop only)

After the program emits rtl_review.md + rtl_review.json:

  1. Read the program output. Do not re-derive any number it already returned.
  2. Refuse to claim a higher score than the program returned. The scoring rubric is deterministic; overriding it would be an honesty-rule violation.
  3. Add residual prose the program cannot author: design-intent comments per finding (why a particular latch is intentional, why a width-mismatch is parameterised), and short fix-suggestions per ERROR / WARN.
  4. Handoff: if verdict == "FAIL", recommend /rtl-repair (which runs rtl_hygiene_lint.py --fix). If WARN, list the items to address before tapeout. If PASS, proceed to /checkpoint-gate.

Read the full file on GitHub · 156 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. 4d ago Changed · +13 lines e606f619b809
  2. 7d ago First seen · 143 lines · 63 tokens per session scan A c16530a8d35d

Subscribe to this mod's changes

rtl-review is a skill published in the GitHub repository vibeic/vibe-ic (23 stars, last pushed today), licensed Apache-2.0. It adds 63 tokens to every session and 1,910 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-09-03.

Related

Other skills, from other repositories

analog-review

Cross-model circuit design review with divergence analysis. Sends netlist and rationale to multiple external LLMs for independent audit. Supports minimax-m2.7, qwen-3.6-plus, kimi-k2.5, glm-5.1. Use after analog-design to get independent review before simulation.

Arcadia-1/analog-agents · 66 tokens

kicad-pcb-review

Use this skill when reviewing, fixing, validating, or preparing KiCad PCB projects with the kicad MCP server.

oaslananka/kicad-mcp-pro · 31 tokens

kicad-pcb-review

KiCad PCB review and manufacturing readiness agent skill for Cursor.

oaslananka/kicad-mcp-pro · 19 tokens

altium-schematic-review

Review an Altium schematic (.SchDoc) — find unconnected pins, missing footprint links and net errors, then judge each candidate against the datasheet before calling it a defect. Triggers: "review this schematic", "check my circuit", "ERC", "floating pins", "unconnected", "any missing footprints", "does this schematic…

ScottJeong/altium-claude-skills · 251 tokens

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