Files
Moshe Abramovitch edd5b9b9ad Remove orphaned cuOpt skill dirs; update install docs and add update guidance
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>
2026-07-07 16:53:21 -05:00
..

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 page
  • advanced-install.mdx — advanced skills CLI usage
  • agent-skill-trust-pipeline.mdx — trust pipeline overview
  • scanning-agent-skills.mdx — pre-install scanning guide
  • signing-agent-skills.mdx — signature verification guide
  • skill-cards.mdx — Skill Card authoring guide
  • release-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 navigation section 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 outside docs/.
  • The Fern version is pinned in ../fern/fern.config.json; bump it intentionally rather than as a side effect.