Stage 6: Verify the Adapter
Stage 6: Verify the Adapter
Verify the minimum lifecycle and every claim in the selected Adapter Descriptor before publishing an adapter.
Prerequisites
Before you start, complete the following:
- Complete Stage 5: Register and discover the adapter so installed and explicit discovery both work.
- Install the adapter package into a test environment.
- Gather valid and invalid examples for every published settings, model, tool-definition, target, and extension schema.
Concepts Overview
NVIDIA NeMo Fabric 0.2 runs adapter-contract checks through just test-python
and just test-typescript; the installed adapter lifecycle and optional
capability checks below remain manual.
Completing this checklist does not imply NVIDIA review, trust, certification, or verification.
To Verify the Adapter
Work through each step in order, verifying your progress at each checkpoint.
1. Verify the Minimum Profile
Run these checks against an installed adapter package:
- Discover the packaged
*.fabric-adapter.jsonwithout importing adapter code. Also verify an explicitdiscovery.local_pathsrecord for the development workflow. - Run
Fabric().plan(...)with the smallest valid configuration and inspect the selected descriptor and projectedAgentConfig. - Confirm that planning rejects one unsupported normalized field and invalid data for every published settings, model, tool-definition, target, and extension schema.
- Run
doctor(...)with both satisfied and missing runtime requirements. - Exercise typed request projection, at least two ordered successful invocations, target failure, and stop.
- Exercise partial-start failure, invocation transport failure, malformed or
untyped
AgentRunResult, and end-of-file cleanup without exposing secrets. - Run two independent Fabric runtimes and confirm that they do not share mutable target state.
Preserve runtime, invocation, and request IDs as opaque values. Check logs and persisted diagnostics for credential values, authorization headers, complete environment mappings, and arbitrary user input.
Success Check: The minimum profile passes end to end, and no log or diagnostic exposes secrets or raw user input.
2. Verify Declared Capabilities
Test each descriptor claim independently:
Do not claim reserved cancellation, update, or service capabilities until the installed NeMo Fabric runtime binding exposes and tests the corresponding adapter operation.
Success Check: Every declared capability has an accepted case and a rejected or invalid case, and no reserved capability is claimed.
3. Record the Result
Record the exact adapter package version, contract_version, NeMo Fabric
version, minimum-profile result, test environment, and every optional
capability as supported or unsupported. Link the evidence to the adapter
release so a later release does not inherit the claim automatically.
Success Check: The recorded result names the exact versions and links its evidence to the specific adapter release.
Summary
In this tutorial, you have:
- Verified the minimum profile against an installed adapter package.
- Tested each declared capability with an accepted case and a rejected case.
- Recorded the result and linked evidence to the adapter release.
Next Steps
With the adapter verified, compare it against maintained implementations: