mirror of
https://github.com/NVIDIA/skills.git
synced 2026-09-14 15:41:50 +08:00
edd5b9b9ad
Post-consolidation cleanup, confirmed with the cuOpt team: - Remove four skills/ dirs that were deregistered from components.d by the cuOpt consolidation but never deleted (the sync copies declared paths and does not prune): cuopt-numerical-optimization-api-python, cuopt-routing-formulation, cuopt-server-common, cuopt-skill-evolution. (cuopt-developer stays — intentionally uncataloged, contributor-facing.) - README.md + docs/advanced-install.mdx: the install examples used the now-removed -api-python skill as the canonical name; swap all occurrences to the consolidated cuopt-numerical-optimization-api. - README.md: add a "Keep Skills Up to Date" section covering npx skills update / list / check (all verified against the current CLI), so users refreshing installs pick up renames/consolidations. - Regenerate metadata.json (231 skills) and skills.sh.json; outputs verified byte-stable. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Signed-off-by: Moshe Abramovitch <moshea@nvidia.com>
Documentation
Long-form documentation for the NVIDIA Agent Skills catalog. Pages are authored in MDX and published to https://docs.nvidia.com/skills.
Layout
index.mdx— landing pageadvanced-install.mdx— advanced skills CLI usageagent-skill-trust-pipeline.mdx— trust pipeline overviewscanning-agent-skills.mdx— pre-install scanning guidesigning-agent-skills.mdx— signature verification guideskill-cards.mdx— Skill Card authoring guiderelease-checklist.mdx— release process
Navigation order and slugs are defined in ../fern/docs.yml.
Build Locally
You only need to build locally if you are editing the documentation. The site is published automatically from main via the Fern GitHub integration.
Prerequisites: Node.js 18+ and npm.
# Install the Fern CLI
npm install -g fern-api
# From the repo root, preview the site with live reload
fern docs dev
# Validate the docs configuration and links
fern check
fern docs dev serves the site at http://localhost:3000 and reloads on changes to .mdx files or fern/docs.yml.
Authoring Notes
- New pages must be added to the
navigationsection of../fern/docs.yml; otherwise they will not appear in the site. - Use relative links between MDX pages (
./skill-cards.mdx) and absolute repo links (/components.d/README.md) for files outsidedocs/. - The Fern version is pinned in
../fern/fern.config.json; bump it intentionally rather than as a side effect.