AgentSkillsCN

gf-lint

SystemVerilog Lint 检查器,提供结构化输出以供协调。运行 Verilator Lint,对错误与警告进行分类,解释问题,并返回可解析的结果块,用于 /gf 协调。

SKILL.md
--- frontmatter
name: gf-lint
description: >
  SystemVerilog lint checker with structured output for orchestration.
  Runs Verilator lint, categorizes errors/warnings, explains issues,
  and returns a parseable result block for /gf orchestration.
allowed-tools:
  - Bash
  - Read
  - Glob

GF Lint Skill

Lint SystemVerilog files with structured output for orchestration.

Instructions

1. Identify Files to Lint

If files specified in args: Use the provided file paths.

If no files specified: Auto-detect SV files:

bash
ls *.sv rtl/*.sv 2>/dev/null | head -20

2. Run Verilator Lint

bash
verilator --lint-only -Wall <files>

3. Parse and Categorize Output

Count issues by category:

  • ERRORS: %Error: lines - must be fixed
  • WARNINGS: %Warning-*: lines - should be reviewed

4. Explain Common Warnings

For each warning type found, explain:

WarningMeaningFix
UNUSEDSignal declared but not usedRemove signal or suppress with /* verilator lint_off UNUSED */
UNDRIVENSignal never assigned a valueAssign the signal or connect it
WIDTHBit width mismatch in operationAdd explicit sizing: [7:0]
CASEINCOMPLETECase statement missing itemsAdd default: branch
LATCHInferred latch from incomplete if/caseAdd default assignment at start of always_comb
BLKSEQBlocking assignment in always_ffUse <= (non-blocking) in sequential blocks
PINCONNECTEMPTYModule port left unconnectedConnect or explicitly mark as .*
IMPLICITImplicit wire declarationDeclare with logic or wire

5. Return Structured Result

ALWAYS end your response with this exact block format:

code
---GATEFLOW-RESULT---
STATUS: PASS|FAIL|ERROR
ERRORS: <count>
WARNINGS: <count>
FILES: <comma-separated list>
DETAILS: <one-line summary>
---END-GATEFLOW-RESULT---

Status definitions:

  • PASS: No errors, warnings OK (0-N warnings acceptable)
  • FAIL: One or more errors found
  • ERROR: Could not run lint (missing files, tool error)

6. Example Output

code
Running lint on: rtl/fifo.sv, rtl/uart.sv

$ verilator --lint-only -Wall rtl/fifo.sv rtl/uart.sv

%Warning-UNUSED: rtl/fifo.sv:25: Signal 'debug_flag' is not used
%Warning-WIDTH: rtl/uart.sv:42: Operator ASSIGN expects 8 bits but got 16

## Summary

**Files:** 2 | **Errors:** 0 | **Warnings:** 2

### Warnings Explained

1. **UNUSED** (rtl/fifo.sv:25): `debug_flag` is declared but never read
   - Fix: Remove if unneeded, or suppress with lint pragma

2. **WIDTH** (rtl/uart.sv:42): Assigning 16-bit value to 8-bit signal
   - Fix: Truncate explicitly `data[7:0]` or widen the target

---GATEFLOW-RESULT---
STATUS: PASS
ERRORS: 0
WARNINGS: 2
FILES: rtl/fifo.sv,rtl/uart.sv
DETAILS: Lint passed with 2 warnings
---END-GATEFLOW-RESULT---

7. Error Case Example

code
$ verilator --lint-only -Wall rtl/broken.sv

%Error: rtl/broken.sv:10: syntax error, unexpected IDENTIFIER

---GATEFLOW-RESULT---
STATUS: FAIL
ERRORS: 1
WARNINGS: 0
FILES: rtl/broken.sv
DETAILS: Syntax error on line 10
---END-GATEFLOW-RESULT---

Usage by /gf Orchestrator

The /gf skill uses this skill internally and parses the result block:

code
Parse ---GATEFLOW-RESULT--- block:
- STATUS: PASS -> proceed to next step
- STATUS: FAIL -> spawn sv-refactor agent with error context
- STATUS: ERROR -> report issue to user