소스 정보
- 저장소
- babyworm/rtl-agent-team
- 최근 소스 활동
- 2026년 7월 8일 12:58
- 감지된 SKILL.md 언어
- 영어
- 스타
- 50
- 포크
- 11
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/babyworm/rtl-agent-team --skill uvm명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | uvm |
| description | uvm project conventions (loaded by writer agents; do not invoke). |
| user-invocable | false |
<Use_When>
rtl-p5s-uvm-verify)<Do_Not_Use_When>
rtl-p5s-func-verify skill; SVA-only work → systemverilog-assertion skill; synthesizable RTL → systemverilog skill
</Do_Not_Use_When><Execution_Policy>
templates/uvm-env-template.sv; smoke test structure: examples/uvm-smoke-test-example.svClass name = file name (one class per file). Protocol-level components use {proto}_, DUT-level
components use {module}_:
| Component | Class / File Pattern | Example |
|---|---|---|
| Agent / Driver / Monitor / Sequencer | {proto}_agent etc. | axi_agent, axi_driver, axi_monitor, axi_sequencer |
| Sequence Item | {proto}_seq_item | axi_seq_item |
| Sequence (base / specific) | {proto}_base_seq / {proto}_{name}_seq | axi_base_seq, axi_write_burst_seq |
| Scoreboard / Environment / Coverage | {module}_scoreboard / {module}_env / {module}_coverage | cabac_scoreboard, cabac_env |
| Test (base / specific) | {module}_base_test / {module}_{name}_test | cabac_base_test, cabac_smoke_test |
| Package | {module}_tb_pkg.sv | cabac_tb_pkg.sv |
| Top | tb_{module}_top.sv | tb_cabac_top.sv |
m_ prefix (industry convention); the create() instance name
matches the variable name: m_driver = axi_driver::type_id::create("m_driver", this);u_ prefix is for RTL module instances ONLY — including the DUT instance in the TB top (u_dut)TB interfaces/signals connect to DUT ports using the RTL names verbatim: i_/o_/io_ prefixes,
clk/{domain}_clk, rst_n/{domain}_rst_n (e.g., @(posedge vif.sys_clk)). Never invent
TB-side port aliases.
| Anti-Pattern | Problem | Fix |
|---|---|---|
| Not registered with factory | Cannot override/reuse | Add uvm_*_utils to all classes |
| Objection in driver | Phase control confusion | Only raise/drop in test |
| Ignoring config_db get failure | Null pointer crash | Handle with uvm_fatal |
| Direct DUT access from sequence | Destroys reusability | Use sequencer→driver path only |
| Hard-coded hierarchy path | Destroys portability | Use config_db wildcard |
#delay in run_phase | Destroys portability | Use @(posedge vif.sys_clk) |
<Tool_Usage> This skill is not executed directly. It is referenced by agents that generate UVM environments (e.g., testbench-dev). Agents should follow the conventions defined here. </Tool_Usage>
Environment structure with factory/naming/config_db patterns: `templates/uvm-env-template.sv`. Smoke test structure: `examples/uvm-smoke-test-example.sv`.<Escalation_And_Stop_Conditions>
<Final_Checklist>
uvm_component_utils / uvm_object_utils)uvm_fatal on config_db get failure{proto}_agent, {proto}_driver, m_ prefix instances