Documentation Index
Fetch the complete documentation index at: https://mintlify.com/NetRiseInc/provenance-cli/llms.txt
Use this file to discover all available pages before exploring further.
config show
Display the effective configuration that the CLI will use, resolving values from CLI flags, environment variables, the config file, and built-in defaults. The API token is redacted in the output.
Synopsis
Example output
Effective Configuration:
Token: ****abcd
API URL: https://provenance.netrise.io/v1/provenance
Format: human
Concurrency: 10
Timeout: 30s
Verbose: 0
No Color: false
ASCII: false
Config File: /home/user/.config/provenance/config.yaml
The token is shown as **** followed by the last 4 characters of the token. If no token is set, it displays (not set).
Use config show to confirm which config file is being loaded and to verify that environment variables are being picked up correctly.
config test
Verify that the CLI can reach the Provenance API and that the configured token is valid. Use this after initial setup or after rotating your API token.
Synopsis
A successful test prints the API URL and a confirmation message. On failure, the command exits with code 3 and prints the error details to stderr.
# On success:
# API connection: OK
# URL: https://provenance.netrise.io/v1/provenance
# Token: ****abcd
# Status: Connected successfully
completions
Generate shell completion scripts for bash, zsh, or fish. Write the output to the appropriate location for your shell.
Synopsis
provenance completions <SHELL>
Install completions
provenance completions bash > /etc/bash_completion.d/provenance
Or, for a user-local install:mkdir -p ~/.local/share/bash-completion/completions
provenance completions bash > ~/.local/share/bash-completion/completions/provenance
provenance completions zsh > ~/.zfunc/_provenance
Make sure ~/.zfunc is on your fpath. Add this to your .zshrc if it isn’t already:fpath=(~/.zfunc $fpath)
autoload -Uz compinit && compinit
provenance completions fish > ~/.config/fish/completions/provenance.fish
After installing, restart your shell or source the appropriate file to activate completions.