| name | nemo-secrets |
| description | NeMo secrets CLI reference for creating, listing, and managing secrets. Use when the task involves creating API key secrets, managing credentials, or `nemo secrets` CLI commands.
|
| preconditions | ["nemo_setup_complete","workspace_exists"] |
| user-invocable | true |
| allowed-tools | Bash, Read, Grep |
NeMo Secrets CLI Reference
Environment
- CLI path:
/app/.venv/bin/nemo
- API server:
http://localhost:8080 (default)
- Default workspace:
default
Commands
nemo secrets create <name> \
--value "<value>" \
--description "<description>"
echo "<value>" | nemo secrets create <name> --from-file - --description "<description>"
nemo secrets create <name> --value "<value>" --description "<desc>" --workspace <workspace>
nemo secrets list
nemo secrets get <name>
echo "<new-value>" | nemo secrets update <name> --from-file - --description "<new description>"
nemo secrets delete <name>
Note: The command is nemo secrets (plural), not nemo secret.
Common Usage
Store an API key for inference providers
nemo secrets create nvidia-api-key \
--value "$ANTHROPIC_API_KEY" \
--description "NVIDIA inference API key"
Note: In Harbor eval environments, $ANTHROPIC_API_KEY is the canonical env var for the inference API key, regardless of the actual provider.
The secret name is then referenced by other commands, e.g. --api-key-secret-name nvidia-api-key when creating inference providers.