components.d: add Dynamo#74
Draft
dagil-nvidia wants to merge 1 commit into
Draft
Conversation
Register NVIDIA Dynamo with the catalog. Seven agent skills (Plan, Optimize, Serve, Deploy, Frontend, Troubleshoot, Benchmark) covering the full Dynamo lifecycle are maintained at ai-dynamo/dynamo under .agents/skills/ and will sync to this catalog daily once ai-dynamo/dynamo#9847 (the upstream PR landing the skills) merges. NVIDIA Dynamo is a distributed LLM inference framework. The skill content follows conventions inherited from NVIDIA's internal ai-infra-agent repository; NV-ACES Tier 1 deterministic scoring averages 92.1/100 across the seven skills, lowest 90. Submitted as draft pending the upstream PR merging. Signed-off-by: Dan Gil <dagil@nvidia.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Add Dynamo to the components catalog.
NVIDIA Dynamo is a distributed LLM inference framework. Seven agent skills covering the full lifecycle of Dynamo are maintained at
ai-dynamo/dynamo:.agents/skills/and ready to mirror into this catalog via the standard daily sync pipeline.This PR adds the one-file registry entry that registers Dynamo. No skill content lands in this repo directly — the sync workflow pulls
.agents/skills/fromai-dynamo/dynamoand rendersskills/Dynamo/on its next run after the upstream PR merges.Details
What's in this PR
A single file:
components.d/dynamo.yml.The schema matches the
components.d/README.mdspec; the fields follow the pattern of existing entries (comparecuopt.yml,tensorrt-llm.yml,nemoclaw.yml).What the catalog will publish
When the sync runs after the upstream merges,
skills/Dynamo/will contain seven skill directories:dynamo-plansearchStrategy, SLA framing, recipe selectiondynamo-optimizemodelopt) quantization — FP8 / NVFP4 / INT8 / AWQdynamo-servepython3 -m dynamo.<backend>workstation workflowdynamo-deploydynamo-platformHelm, DGD + DGDR authoring, recipes, conversion webhooks, day-2 opsdynamo-frontendDynamoModelCR, multi-model, GAIE / kgateway / Istiodynamo-troubleshootdynamo-benchmarkbenchmarks/suites, recipe-attached benchmarksGating
This catalog PR depends on the upstream Dynamo PR landing the skills at
ai-dynamo/dynamo:.agents/skills/. Submitted as draft until that upstream PR merges.skills/Dynamo/.Methodology note
The seven Dynamo skills follow conventions developed in NVIDIA's internal
ai-infra-agentproject — the 4-phase workflow shape, the DESTRUCTIVE / MUTATING / SAFE command-tier rubric, the Human-in-the-Loop behavioral contract, thepass / fail / warnandcheck()script helper patterns, thereferences/+scripts/subdirectory layout. Full attribution and the per-release update model live in the upstream PR's.agents/skills/README.md(visible in the upstream PR's diff; will be at the path.agents/skills/README.mdonce the upstream merges).Quality
NV-ACES Tier 1 deterministic scoring on the seven skills (2026-05-21): average 92.1 / 100, lowest 90. All grades A- or A. Zero errors. All scripts
shellcheck-clean. All YAML frontmatters parse with required fields present.Where should the reviewer start?
components.d/dynamo.yml(the only file in this PR)..agents/skills/directory in ai-dynamo/dynamo#9847 for the actual skill content.Related Issues