-
Notifications
You must be signed in to change notification settings - Fork 11
docs: prepare consumer skill for NVCARPS #182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
exactlyallan
merged 3 commits into
NVIDIA:main
from
exactlyallan:docs/nvcarps-skill-onboarding
Aug 7, 2026
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| [ | ||
| { | ||
| "id": "nemo-fabric-integrate-001-python-service", | ||
| "question": "Add NeMo Fabric to this Python service so one request path can run either Codex or Hermes Agent. Keep our existing application configuration as the source of truth, validate the resolved setup before execution, and return normalized result data to the caller.", | ||
| "expected_skill": "nemo-fabric-integrate", | ||
| "expected_script": null, | ||
| "ground_truth": "The agent uses the public nemo_fabric Python SDK, maps the service configuration into an in-memory FabricConfig, selects the adapter through HarnessConfig, validates with plan and doctor, chooses the appropriate runtime lifecycle, and consumes the normalized invocation result without importing internal modules or reimplementing harness control.", | ||
| "expected_behavior": [ | ||
| "Routes to nemo-fabric-integrate", | ||
| "Uses only public imports from nemo_fabric", | ||
| "Translates the service configuration into an in-memory FabricConfig", | ||
| "Selects Codex or Hermes Agent through HarnessConfig.adapter_id", | ||
| "Validates the resolved configuration with plan and doctor before execution", | ||
| "Consumes normalized status, output, artifacts, telemetry, and correlation identifiers", | ||
| "Does not import _native or manage adapter processes directly" | ||
| ] | ||
| }, | ||
| { | ||
| "id": "nemo-fabric-integrate-002-evaluation-platform", | ||
| "question": "Integrate NeMo Fabric into our evaluation runner. The runner needs repeated invocations, request correlation, artifact collection, telemetry, and an explicit shutdown point. Credentials must stay in environment variables.", | ||
| "expected_skill": "nemo-fabric-integrate", | ||
| "expected_script": null, | ||
| "ground_truth": "The agent follows the long-lived public SDK runtime workflow: construct a typed in-memory FabricConfig, configure credential environment-variable names, inspect plan and doctor results, start Fabric explicitly, use the runtime as an async context manager, invoke repeatedly with request IDs, read normalized results, and handle a possible FabricRuntimeError from shutdown.", | ||
| "expected_behavior": [ | ||
| "Routes to nemo-fabric-integrate", | ||
| "Uses an explicitly started Fabric runtime as an async context manager for repeated invocations", | ||
| "Keeps credential values out of source and configuration literals", | ||
| "Calls plan and doctor before starting the runtime", | ||
| "Preserves request, invocation, and runtime identifiers as opaque correlation values", | ||
| "Collects normalized artifacts and telemetry from each result", | ||
| "Treats shutdown as attempted cleanup and handles a possible FabricRuntimeError" | ||
| ] | ||
| }, | ||
| { | ||
| "id": "nemo-fabric-integrate-003-adapter-contribution-negative", | ||
| "question": "Add a new FooHarness adapter package inside NeMo Fabric, including its descriptor, runner implementation, and repository tests.", | ||
| "expected_skill": null, | ||
| "expected_script": null, | ||
| "ground_truth": "This is a NeMo Fabric repository-maintainer task, not a consumer Python SDK integration. The agent must not route it to nemo-fabric-integrate and should use the repository's contribute-adapter maintainer workflow instead.", | ||
| "expected_behavior": [ | ||
| "Does not route to nemo-fabric-integrate", | ||
| "Recognizes the request as repository-internal adapter development", | ||
| "Routes to the contribute-adapter maintainer workflow when it is available" | ||
| ] | ||
| }, | ||
| { | ||
| "id": "nemo-fabric-integrate-004-overview-negative", | ||
| "question": "Give me a short conceptual overview of NeMo Fabric and explain when a team would use it.", | ||
| "expected_skill": null, | ||
| "expected_script": null, | ||
| "ground_truth": "This is an explanation request rather than an implementation workflow. The agent answers from product documentation and does not invoke the focused nemo-fabric-integrate skill.", | ||
| "expected_behavior": [ | ||
| "Does not route to nemo-fabric-integrate", | ||
| "Treats the request as product explanation rather than SDK implementation", | ||
| "Does not introduce integration code or configuration unless the user asks for it" | ||
| ] | ||
| } | ||
| ] | ||
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.