Agent skill

verilog-sv-language

Expert-level Verilog and SystemVerilog knowledge following IEEE 1800 standards. Generates synthesizable RTL code with proper coding styles and constructs.

a5c-ai1,642★ · 1 repos on radarProfile →
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill verilog-sv-language --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 13 KB
Bundled scripts: none
Allowed tools: ReadGrepWriteEditBashGlob
Path: library/specializations/fpga-programming/skills/verilog-sv-language/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Verilog/SystemVerilog Language Skill Expert skill for Verilog and SystemVerilog development following IEEE 1364 and IEEE 1800 standards. Provides deep expertise in synthesizable RTL code generation, proper construct usage, and modern coding practices. ## Overview The Verilog/SystemVerilog Language skill enables comprehensive HDL development for FPGA and ASIC designs, supporting: - IEEE 1800-2017 SystemVerilog standard - Verilog-2005 backward compatibility - Proper always_ff, always_comb, always_latch usage - SystemVerilog interfaces and modports - Parameterized modules with localparam - Packed and unpacked arrays - Packages and imports ## Capabilities ### 1. Proper Always Block Usage Use SystemVerilog always block variants correctly: ```systemverilog // Sequential logic - always_ff always_ff @(posedge clk or negedge rst_n) begin if (!rst_n) begin counter <= '0; state <= IDLE; end else begin counter <= counter + 1'b1; state <= next_state; end end // Combinational logic - always_comb always_comb begin // Default assignments prevent latches next_state = state; output_valid = 1'b0; case (state) IDLE: begin if (start) next_state = RUN; end RUN: begin output_valid = 1'b1; if (done) nex

What's inside
Steps it walks through
  1. Overview
  2. Capabilities
  3. 1. Proper Always Block Usage
  4. 2. Parameterized Modules
  5. 3. SystemVerilog Interfaces
  6. 4. Packages and Imports
  7. 5. Packed and Unpacked Arrays
  8. 6. Blocking vs Non-Blocking Assignments
  9. 7. Synthesis Attributes
  10. Process Integration
  11. Output Schema
  12. Best Practices
  13. Always Block Selection
  14. Assignment Rules
Ships with 1 file
  • README.md
More from babysitter
All skills →
About this skill
What does the verilog-sv-language skill do?

Expert-level Verilog and SystemVerilog knowledge following IEEE 1800 standards. Generates synthesizable RTL code with proper coding styles and constructs.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill verilog-sv-language --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going