RTLDesignSherpa: Agent for Claude Code

.claude/agents/rds-rtl-design.md

rds-rtl-design is an agent for Claude Code from sean-galloway/RTLDesignSherpa. It costs 53 tokens per session (478 once invoked), scanned A, original, MIT.

An agent for writing synthesizable SystemVerilog, which is hardware-design code that can be turned into physical digital circuits.

In plain words
What is it for?
Creating or changing RTL modules, generating parameterized hardware, running required lint checks, and registering files for the project's build flow.
Why use it?
It applies this repository's hardware design rules and keeps implementation separate from testbench work and code review.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

This is sean-galloway/RTLDesignSherpa's own configuration. It tells Claude Code how to work on RTLDesignSherpa itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything RTLDesignSherpa configures →

Reuse

Borrowing it

Nothing to install: this file belongs to sean-galloway/RTLDesignSherpa. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/sean-galloway/RTLDesignSherpa/main/.claude/agents/rds-rtl-design.md
Clone the repo
git clone --depth 1 https://github.com/sean-galloway/RTLDesignSherpa

Made for: Claude Code.

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 rds-rtl-design

README.md
[![agentmods](https://agentmods.dev/badge/agents/sean-galloway/rtldesignsherpa/rds-rtl-design/github.svg)](https://agentmods.dev/agents/sean-galloway/rtldesignsherpa/rds-rtl-design)
Your own site
<a href="https://agentmods.dev/agents/sean-galloway/rtldesignsherpa/rds-rtl-design"><img src="https://agentmods.dev/badge/agents/sean-galloway/rtldesignsherpa/rds-rtl-design/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 rds-rtl-design

Your own site · 80×15
<a href="https://agentmods.dev/agents/sean-galloway/rtldesignsherpa/rds-rtl-design"><img src="https://agentmods.dev/badge/agents/sean-galloway/rtldesignsherpa/rds-rtl-design.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 478 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.00053 $0.00478
Opus 5 $0.00026 $0.00239
Sonnet 5 $0.00011 $0.00096
Haiku 4.5 $0.00005 $0.00048

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

Security

Grade A, and why

rds-rtl-design 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 10d 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.

.claude/agents/rds-rtl-design.md · 39 lines

What it actually says

READ FIRST: vault/handbook/agents/rtl-design.md (canonical - loadout, method, the arbiter case study). Then vault/handbook/design/INDEX.md.

Authority order: /GLOBAL_REQUIREMENTS.md > handbook notes > code comments.

You write RTL under rtl/**. The non-negotiables, because being wrong about these is unrecoverable:

  • Done means all four checks pass, not that the code looks right:

    1. verilator --lint-only -Wall
    2. verible-verilog-lint --waiver_files=tools/lint/verible_style_waivers.txt
    3. bin/check_sv_decl_order.py <file>
    4. the module has a .f registered in bin/filelists.toml An unregistered module lints clean and is invisible to every consumer.
  • Never modify val/**. If a test fails, that is a finding, not an obstacle. Report it; do not adjust the test to pass.

  • Never review your own output. Hand it to rds-rtl-review.

  • *Never create a TASKS.md, TODO.md or _TODO.md next to code. Open work goes to /vault/Tasks/<area>/open.md. This is the rule agents break most often here.

  • When the logic is an index transform (rotation, mask, priority scan), state the intended mapping in a comment and check it at a non-symmetric input. A reflection and a rotation agree on the all-requesting case, which is how a starving arbiter shipped.

For parameterized or repetitive structures, prefer generating over hand-writing: bin/svsherpa/ emits house-style SV from Python with width checking and verifies its own output through verilator and yosys.

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. 10d ago First seen · 39 lines · 53 tokens per session scan A 0955e4ffac42

Subscribe to this mod's changes

rds-rtl-design is an agent published in the GitHub repository sean-galloway/RTLDesignSherpa (23 stars, last pushed today), licensed MIT. It adds 53 tokens to every session and 478 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 agents, from other repositories

rtl-coder

SystemVerilog RTL coder (lowRISC style + project overrides). Writes synthesizable, lint-clean RTL following project conventions (snakecase, i/o prefixes, clk/{domain}clk, rstn/{domain}rstn, typedef enum/struct packed, u instances, UPPERCASE params, alwaysff/alwayscomb). One module per file. Runs lint after every write.

babyworm/rtl-agent-team · 84 tokens

c-developer

C programming expert for systems programming and embedded development. Use PROACTIVELY for memory management, low-level optimization, or hardware interaction.

davepoon/buildwithclaude · 31 tokens

rust-engineer

Use when building Rust systems where memory safety, ownership patterns, zero-cost abstractions, and performance optimization are critical for systems programming, embedded development, async applications, or high-performance services.

vinhnx/VTCode · 41 tokens

p3-uarch-team-orchestrator

Phase 3 uArch design team coordination teammate. Coordinates dual-stream uArch design + BFM development, BFM validation gate, wonder tracking, dynamic convergence-based review, and upstream feedback report via TaskCreate/TaskList/TaskUpdate/SendMessage.

babyworm/rtl-agent-team · 60 tokens

p2-arch-orchestrator

Phase 2 architecture pipeline orchestrator. Manages P1 algorithm candidate HW review, parallel architecture design + C reference model development, dynamic convergence-based iterative review with wonder tracking, and artifact finalization.

babyworm/rtl-agent-team · 48 tokens

p3-uarch-orchestrator

Phase 3 μArch design pipeline orchestrator. Manages parallel uarch design + BFM development, BFM validation gate, dynamic convergence-based review with wonder tracking, upstream feedback report, domain consultation for design patterns, and artifact finalization with clock domain map, protocol assignments, and pipeline…

babyworm/rtl-agent-team · 68 tokens