Verilog Generator
Description
Claude Code skill for generating synthesizable Verilog-2005 modules from natural language, with built-in self-check and customizable coding style.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
verilog-generator
A Claude Code skill that generates single, synthesizable Verilog modules from natural language descriptions or interface definitions.
Features
- Natural language to RTL — describe the module in plain text, get a complete Verilog implementation
- Verilog-2005 strict mode — enforces pre-SystemVerilog syntax, no
logic,always_ff, orinterface - Full AXI protocol support — correct handshake validation for AXI-Stream, AXI4-Lite, and AXI4-Full
- 14-point self-check pipeline — every generated module passes a comprehensive checklist before output
- Customizable coding style — supply a Markdown rule file and/or a Verilog template to override defaults
File Structure
verilog-generator/
├── SKILL.md # Skill definition: mandatory rules, workflow, output format
├── coding_style.md # Built-in coding style guide (27 sections, lowRISC adapted for Verilog-2005)
├── README.md # This file
└── .gitignore
How It Works
When invoked, the skill follows a two-step workflow:
- Interface Derivation — parses the user's description and displays the inferred module name, parameters, and port list
- Code Generation + Self-Check — generates the complete module and runs a 14-point checklist
Self-Check Items
| # | Check | Scope |
|---|---|---|
| 1 | File header completeness | File, Author, Date, Description, Change Log |
| 2 | File structure | resetall / timescale / default_nettype / endmodule / resetall |
| 3 | Verilog-2005 syntax | No SystemVerilog constructs |
| 4 | reg/wire driving rules | reg for always, wire for assign |
| 5 | No forward references | All signals declared before use |
| 6 | No multi-driver conflicts | One driver per signal |
| 7 | No placeholders | Complete, synthesizable implementation |
| 8 | Width matching | All assignments and port connections match widths |
| 9 | No unused signals | Every declared signal is read |
| 10 | No latch inference | Al |
Related Skills
Algorithmic Art
Create generative art using p5.js with seeded randomness, flow fields, and particle systems
Design Brand Guidelines
Apply Anthropic's official brand colors and typography to artifacts
Design Canvas Design
Create beautiful visual art in PNG and PDF documents using design philosophy
Design Frontend Design
Create distinctive, production-grade frontend interfaces with high design quality
Design Slack Gif Creator
Create animated GIFs optimized for Slack's size constraints
Design Theme Factory
Style artifacts with professional themes including 10 pre-set color/font combinations
Design Related Agents
Codemod Runner
Writes and runs codemod scripts that replace hardcoded visual values with token references in ui/src/index.css
Designguru
Expert Design Guidance & Analysis Specialist who provides professional UI/UX insights, design system guidance,
Html Css
| Web standards for semantic markup, maintainable styling, and accessibility. | - | [wshobson/agents](https://