Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
nvidia avatar

Tao List Capabilities

  • 1.5k installs
  • 2.8k repo stars
  • Updated August 4, 2026
  • nvidia/skills

tao-list-capabilities is an NVIDIA TAO Skill Bank discovery skill that generates capability and model lists from packaged manifests for developers who need to learn which TAO workflows, models, and AutoML options exist b

About

tao-list-capabilities is an NVIDIA-verified agent skill (version 0.1.0) that answers “what can TAO Skill Bank do?” by running packaged helper scripts instead of hand-waving from metadata. For general coverage it executes `scripts/list_tao_capabilities.py`, enumerating application workflows under `applications/`, data workflows under `data/`, supported platforms via `list_tao_platforms.py`, and per-model train/evaluate/inference/export/TensorRT actions from the packaged schema manifest. For model-specific questions it runs `scripts/list_tao_models.py` against `skills/models/schemas.manifest.json`, including `--scope automl` mode gated on valid `schemas/train.schema.json`. Developers reach for this skill at project kickoff, when comparing TAO models, or when verifying AutoML eligibility before launching HPO. Output is text formatted from the scripts as the source of truth.

  • Model and task catalog
  • Supported dataset formats
  • Export/deployment targets
  • Quick feasibility checks
  • Informs stack vs build decisions

Tao List Capabilities by the numbers

  • 1,465 all-time installs (skills.sh)
  • +30 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #165 of 2,064 Data Science & ML skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/nvidia/skills --skill tao-list-capabilities

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.5k
repo stars2.8k
Last updatedAugust 4, 2026
Repositorynvidia/skills

Which NVIDIA TAO models and workflows are available?

Survey which NVIDIA TAO models, tasks, formats, and deployment options exist before choosing a computer-vision or speech AI approach.

Who is it for?

Developers new to NVIDIA TAO Skill Bank who need an authoritative manifest-driven inventory before picking a training or deployment workflow.

Skip if: Teams already running a specific TAO train/evaluate job who need container launch commands rather than catalog discovery.

When should I use this skill?

User asks what TAO Skill Bank can do, which TAO models exist, what supports AutoML, or which workflows are packaged.

What you get

Text capability report listing application workflows, data workflows, model actions, platforms, and AutoML-supported models.

  • Text capability and model inventory

By the numbers

  • Uses three helper scripts: list_tao_capabilities.py, list_tao_models.py, list_automl_support.py
  • Model inventory source file: skills/models/schemas.manifest.json

Files

SKILL.mdMarkdownGitHub ↗

TAO Skill Bank Capabilities

Use this skill when the user asks what tao-skill-bank can do, asks for plugin capabilities, asks which application or data workflows are available, asks which models are supported, or asks what models are capable with AutoML.

Quick Start

Run scripts/list_tao_capabilities.py for general capability questions, or scripts/list_tao_models.py for model/action and AutoML support questions.

Capability Answers

For a general capabilities answer, run the packaged helper:

${TAO_SKILL_BANK_PATH:-~/tao-skills-external}/scripts/list_tao_capabilities.py \
  --skill-bank ${TAO_SKILL_BANK_PATH:-~/tao-skills-external} --format text

Use the helper output as the source of truth for the answer instead of manually enumerating capabilities from this skill or plugin metadata. Include:

  • Every top-level application workflow under applications/ and what it can do.
  • Every top-level data workflow under data/ and what it can do.
  • Supported execution platforms from scripts/list_tao_platforms.py.
  • The fine-tuning/deployment workflow coverage for models under models/: train,

evaluate, inference, export, and TensorRT engine generation when those actions are present in the packaged schema manifest.

  • AutoML support and the AutoML train-schema gate.

Model Lists

When the user asks which TAO models are available or which actions a model can run, use the packaged model-list script instead of manually scanning model folders:

${TAO_SKILL_BANK_PATH:-~/tao-skills-external}/scripts/list_tao_models.py \
  --skill-bank ${TAO_SKILL_BANK_PATH:-~/tao-skills-external} --scope all --format text

The model list comes from skills/models/schemas.manifest.json.

AutoML Lists

When the user asks what models are capable with AutoML, use the same model-list script in AutoML mode, or the compatibility wrapper:

${TAO_SKILL_BANK_PATH:-~/tao-skills-external}/scripts/list_tao_models.py \
  --skill-bank ${TAO_SKILL_BANK_PATH:-~/tao-skills-external} --scope automl --format text
${TAO_SKILL_BANK_PATH:-~/tao-skills-external}/scripts/list_automl_support.py \
  --skill-bank ${TAO_SKILL_BANK_PATH:-~/tao-skills-external} --format text

AutoML support requires skills/models/<network>/schemas/train.schema.json to be packaged with the plugin and parse successfully as JSON. If that dataclass schema is missing or invalid, do not describe the model as AutoML-supported.

Related skills

How it compares

Use this discovery skill before any TAO train skill when the team needs a manifest-accurate model and workflow inventory.

FAQ

How does tao-list-capabilities answer general capability questions?

tao-list-capabilities runs `${TAO_SKILL_BANK_PATH}/scripts/list_tao_capabilities.py --format text`, reporting every top-level `applications/` and `data/` workflow, platform support, and model action coverage from packaged manifests.

How does tao-list-capabilities determine AutoML support?

tao-list-capabilities uses `scripts/list_tao_models.py --scope automl` or `list_automl_support.py`, requiring each model to package a valid `schemas/train.schema.json`; missing or invalid schemas exclude the model from AutoML lists.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.