소스 정보
- 저장소
- babyworm/rtl-agent-team
- 최근 소스 활동
- 2026년 8월 19일 01:07
- 감지된 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 cdc-tool-profiles명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | cdc-tool-profiles |
| description | Internal reference: cdc tool profiles (agent-loaded; do not invoke). |
| user-invocable | false |
svlens provides quantitative measurements (scores, violation counts, complexity metrics) to add consistency to the LLM's qualitative judgment. Phase gate decisions require BOTH:
Neither alone is sufficient. A zero-violation svlens report does not auto-pass a gate if the LLM identifies architectural concerns. Conversely, the LLM cannot override quantitative violations without documented justification (waiver with rationale).
When commercial tools are available, they serve as the signoff authority. svlens provides supplementary crosscheck data — useful for early-stage CI, pre-signoff screening, and adding quantitative rigor to LLM-driven reviews.
lint/scripts/run_cdc.shVIOLATIONCAUTIONCONVENTIONINFOWAIVEDVIOLATION exists.svlens is a unified structural analysis toolkit with three modes sharing one elaboration:
lint/scripts/run_cdc.sh --tool structural --top <top> -f rtl/filelist_top.f --outdir lint/cdc
(structural mode auto-runs svlens crosscheck when installed)lint/scripts/run_cdc.sh --tool svlens --top <top> -f rtl/filelist_top.f --outdir lint/cdc
(standalone mode)summary.violations, summary.cautions, per-crossing severity + sync_typesvlens conn --format all --top <top> -f rtl/filelist_top.f -o sim/conn/reports--check-protocol), naming convention (--check-convention)--expect connectivity_spec.yaml)analysis.overall_score, analysis.module_health, summary.errorssvlens metrics --format all --top <top> -f rtl/filelist_top.f -o sim/metrics/reportslogic_depth_est, raw_node_count, source_inputslogic_depth_est > 15-20 = timing risk, source_inputs > 20 = complex convergencesvlens all --format all --top <top> -f rtl/filelist_top.f -o sim/svlens/reportsconn/, cdc/, metrics/svlens_summary.json with aggregated results--diff baseline/ for regression detectiongit clone https://github.com/babyworm/svlens.git ~/tools/svlens
cd ~/tools/svlens
./scripts/setup-deps.sh --prefix ~/.local
cmake -B build -DCMAKE_PREFIX_PATH=~/.local
cmake --build build -j$(nproc)
cmake --install build --prefix ~/.local
spyglass (binary: sg_shell, config key: sg_shell, script flag: --tool spyglass):
lint/scripts/run_cdc.sh --tool spyglass --top <top> -f rtl/filelist_top.f --outdir lint/cdcrat_config.json uses sg_shell as tool key; runner scripts accept --tool spyglassvc_cdc (binary: vc_static_shell, script flag: --tool vc_cdc):
lint/scripts/run_cdc.sh --tool vc_cdc --top <top> -f rtl/filelist_top.f --outdir lint/cdcvc_cdc is the Synopsys app name; VC SpyGlass CDC runs inside the VC
Static shell, so the executable is vc_static_shellquesta_cdc:
lint/scripts/run_cdc.sh --tool questa_cdc --top <top> -f rtl/filelist_top.f --outdir lint/cdcThe exact binaries and batch switches the runner uses. These are the shapes each vendor documents; changing them silently breaks the stage.
| Tool | Invocation | Why this shape |
|---|---|---|
structural / svlens | svlens cdc --format all -o <outdir> | — |
spyglass | sg_shell -tcl <tcl> | — |
vc_cdc | vc_static_shell -f <tcl> -batch | vc_cdc is an app name, not an executable. -batch makes the shell quit on an unexpected error instead of dropping to a prompt |
questa_cdc | qverify -c -do <do> -od <outdir> | -c selects CLI/batch. Without -od the session database lands in the default location while the runner reports under --outdir |
toolviolations_countcautions_countinfo_countreport_pathreplay_path