skill-card-generator

작성자: nvidia

Use only to generate or update a governance skill card for a specified existing agent skill directory. Do not use for explaining, listing, comparing, or…

npx skills add https://github.com/nvidia/skills --skill skill-card-generator

Generate Skill Card

Skill directory to analyze: $ARGUMENTS

Purpose

Create a draft NVIDIA governance skill card for an existing agent skill. The skill gathers source signals, guides the agent to build a grounded JSON context, renders a deterministic markdown card, and checks that human-review markers were removed before submission.

Use this when:

  • A skill directory already exists and needs a new governance card.
  • A changed skill needs its existing card refreshed.
  • A skill owner is preparing legal/safety review material.

Do NOT use for:

  • Explaining, listing, comparing, or discussing skills or skill capabilities.
  • Creating or rewriting the source skill itself.
  • Generating cards for non-skill assets such as models, datasets, containers, or full systems.
  • Signing, publishing, or approving a skill card.
  • Replacing required human legal, safety, or owner review.

Prerequisites

  • Python 3 is available.
  • jinja2 is installed before running render_card.py.
  • The target path is a skill directory containing SKILL.md or skill.md.
  • The agent can write a temporary context JSON file and the rendered card output.
  • Runtime permissions allow reads from target_skill_directory plus this skill's references/ and scripts/, writes only to the target skill directory or /tmp/, and shell execution only for the three scripts listed below.

Instructions

  1. First, read this SKILL.md completely before running any script.
  2. Resolve the target skill directory from $ARGUMENTS; if omitted, use the current working directory.
  3. Stay within the declared permission scope. Do not read .env, credential files, hidden auth folders, or unrelated repo files; do not write outside the target skill directory or /tmp/.
  4. Run scripts/discover_assets.py against the target. Use the structured signal summary first; if output is truncated, read only targeted files or small excerpts.
  5. Build a context JSON file from the structured signal summary first, then from extracted file contents only when needed.
  6. Populate credential_requirements with only two fields: requires_api_key_or_credential and credential_types. Ground the classification in SKILL.md prose documentation — not script inspection alone. For credential_types, use the controlled vocabulary in references/style-guide.md. Never include credential values, assignments, or raw environment variable names.
  7. Follow references/style-guide.md for every context field. Use HUMAN-REQUIRED only when no source supports a truthful value.
  8. Render the card with scripts/render_card.py and fix any schema errors before proceeding.
  9. Review the card manually, remove resolved VERIFY and SELECT markers, then run scripts/validate_submission.py.
  10. Before finishing, confirm the rendered card has no unrendered {{ ... }} or {% ... %} template fragments.

Available Scripts

ScriptPurposeArguments
scripts/discover_assets.pyExtracts skill files, repo signals, style guide, and template into one discovery report.<skill_directory>
scripts/render_card.pyValidates context JSON and renders the skill card from the Jinja template.--context <context.json> --template <skill-card.md.j2> --out <output.md>
scripts/validate_submission.pyFails if the rendered card still contains VERIFY or SELECT review markers.<rendered-card.md>

Examples

Discover signals for a target skill:

run_script("scripts/discover_assets.py", args=["/path/to/target-skill"])

Render a card from the completed context:

run_script(
  "scripts/render_card.py",
  args=[
    "--context", "/tmp/target-skill-context.json",
    "--template", "references/skill-card.md.j2",
    "--out", "/path/to/target-skill/target-skill-card.md"
  ]
)

Validate the reviewed card before submission:

run_script("scripts/validate_submission.py", args=["/path/to/target-skill/target-skill-card.md"])

Limitations

  • The generated card is a draft and must be reviewed by a human owner.
  • Discovery is limited to local files and repo metadata visible from the target path.
  • The renderer validates required context shape, not the legal or safety correctness of field values.
  • Canned limitation and risk catalogs are starting points; remove entries that do not apply.

Troubleshooting

ErrorCauseSolution
directory not foundThe target path is wrong or not mounted in the workspace.Re-run discovery with the absolute path to the skill directory.
jinja2 not installedThe renderer dependency is missing.Install jinja2, then re-run render_card.py.
Context validation failedRequired fields are missing or typed incorrectly.Fix the context JSON using references/style-guide.md.
Unresolved marker failureVERIFY or SELECT markers remain after review.Confirm each marked field, prune catalog entries, then re-run validate_submission.py.

Files in this skill

  • SKILL.md - this file (orchestration)
  • references/style-guide.md - per-context-field guidance
  • references/skill-card.md.j2 - exact card layout
  • references/Skill Card Generator License.txt - license text for this skill package
  • references/catalog/limitations.json - canned technical-limitations catalog
  • references/catalog/risks.json - canned risk-management catalog
  • scripts/discover_assets.py - discovery and signal extraction
  • scripts/render_card.py - Jinja renderer with context validation
  • scripts/validate_submission.py - pre-submission marker validator

nvidia의 다른 스킬

compileiq-debug
nvidia
Use when something is wrong: Search() hangs, all evaluations return INVALID_SCORE, scores aren't improving, every config returns the same number, ptxas errors…
official
create-github-pr
nvidia
gh CLI를 사용하여 GitHub 풀 리퀘스트를 생성합니다. 사용자가 새 PR을 만들거나, 코드 리뷰를 제출하거나, 풀 리퀘스트를 열고자 할 때 사용합니다. 트리거 키워드 -…
official
diagnose-perf
nvidia
First-responder performance triage for Isaac Sim and Isaac Lab. Identifies bottleneck category (GPU-bound, CPU-bound, VRAM, loading) using nvidia-smi and…
official
eagle3-review-logs
nvidia
Review EAGLE3 pipeline experiment logs from the launcher's experiments/ directory. Summarizes pass/fail status for all 4 tasks, diagnoses failures with root…
official
nemoclaw-maintainer-cross-issue-sweep
nvidia
다른 열린 이슈들을 스캔하여 주어진 PR이 함께 수정하거나 실수로 망가뜨릴 수 있는 이슈를 찾습니다. 인접 수정 기회와 모순 위험을 file:line…과 함께 출력합니다.
official
karpathy-guidelines
nvidia
일반적인 LLM 코딩 실수를 줄이기 위한 행동 지침입니다. 코드 작성, 검토 또는 리팩토링 시 과도한 복잡성을 피하고 정밀한 변경을 위해 사용하세요.
official
fhir-basics
nvidia
에이전트에게 FHIR R4 API의 작동 방식, 사용 가능한 리소스, 검색 매개변수를 사용한 쿼리 방법, 모든 응답 형식을 올바르게 파싱하는 방법을 가르칩니다…
official
underdeclared-agent
nvidia
A helpful assistant agent
official