AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Vdoc

skill-phamcuong21478-rtl-skills-vdoc · by phamcuong21478

Aggregate all per-module documentation into a single comprehensive IP document

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-phamcuong21478-rtl-skills-vdoc

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-phamcuong21478-rtl-skills-vdoc)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Vdoc? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Verilog IP Documenter

Overview

This guide defines the workflow for collecting all documentation generated during the development process and synthesizing it into a single, comprehensive IP-level document.

The input is the IP name. The output is a single Markdown file ./doc/.md covering the full IP.

Step 1 - Collect Documentation Sources

Read the module docs as the primary source — do not also read every _req.md and _proposal.md. The ModuleDocContract guarantees ./doc/.md is complete enough to "instantiate, drive, and reason about the module without reading its RTL," so it already carries the interface and functional content this skill aggregates. Reading the requirement and proposal for every module on top of the doc is redundant and the largest token cost here; pull from them only as a fallback (see the Read priority below).

| Source | Location | Content | When to read | |--------|----------|---------|--------------| | Module docs | ./doc/.md | Per-module interface and functional description | Always — primary source | | Top-level skeleton | ./rtl/_top.v | Top-level ports and inter-module wiring | Always | | Library module docs | ./lib/**/.md | Reused library module documentation | Always (for reused modules) | | Synthesis report | ./synth//synth_report.md | Utilization, Fmax, power | If present (grep the summary tables, §7) | | Proposals | ./ddoc/_proposal.md | Architecture, algorithm, timing diagrams | Fallback only — when the module doc lacks the algorithm/timing detail the Architecture section (§2) needs | | Requirements | ./ddoc/_req.md | Original per-module requirements | Rarely — only to resolve a contradiction in a module doc |

Build a list of all submodules in the IP by walking the instantiation hierarchy from the top-level skeleton, following the shared procedure in .claude/skills/shared/HierarchyFilelist.md (use its grep-based extraction — do not read every RTL file).

Step 2 - Detect and Fill Documentation Gaps

For each submodule in the IP:

  1. Check whether a documentation file exists in ./doc/ or ./lib/.
  2. If documentation is missing, use vexplain to generate it from the RTL source before proceeding.
  3. If a proposal file is missing but the RTL exists, note it as a gap — do not infer architecture that is not documented.

Do not proceed to Step 3 until all submodules have documentation.

Step 3 - Generate IP Document

Create the IP document at ./doc/.md.

Required Sections

1. IP Overview
  • One paragraph describing the IP purpose, target use case, and key features
  • List of all submodules with a one-line description each
2. Architecture
  • Block diagram of the IP showing all submodules and their connections, drawn in mermaid format
  • Source: varch proposal or top-level skeleton
3. Top-Level Port Description
  • Full port table with columns: Name, Direction, Width, Description
  • Source: ./rtl/_top.v
4. Inter-Module Interface Table
  • One table per interface between submodules
  • Columns: Signal Name, Direction (relative to master), Width, Description
  • Source: varch proposal and top-level skeleton wire declarations
5. Submodule Descriptions

For each submodule, include a condensed summary:

  • Purpose (one paragraph)
  • Port table
  • Key functional behavior

Do not copy the full module doc verbatim — summarize to the level useful for IP integration.

6. Integration Guide
  • Instantiation example of the top-level module with all ports connected
  • Parameter descriptions and recommended values
  • Any constraints or requirements for correct operation (clock frequency, reset sequence, interface protocol)
7. Synthesis Results (include only if ./synth//synth_report.md exists)

Pull all values directly from synth//synth_report.md. Do not modify or re-interpret the numbers.

Include:

  • Configuration table: target part, clock constraint, synthesis mode, date
  • Resource utilization table: LUT, FF, BRAM, DSP (used / available / %)
  • Timing summary table: clock period, WNS, TNS, Fmax, PASS/FAIL status
  • Power estimate table: Dynamic, Static, Total
  • Synthesis warnings: list notable warnings, or state "None"
  • A note at the bottom: Full synthesis artifacts: synth//

If the synthesis report is absent, omit this section entirely — do not add a placeholder or note its absence.

Writing Rules

  • Write for an engineer integrating the IP, not for someone implementing it
  • Do not include implementation internals or low-level RTL details
  • Keep submodule summaries concise — link to ./doc/.md for full detail
  • All block diagrams must use mermaid format

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.