Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.vijil.ai/llms.txt

Use this file to discover all available pages before exploring further.

These commands configure how the CLI connects to your Vijil Console deployment and which team’s resources it acts on. Configuration is stored in ~/.vijil/config.yaml.

Authentication

CommandDescription
vijil auth initConfigure the Console gateway URL
vijil auth loginLog in and store credentials
vijil auth logoutClear stored credentials
vijil auth change-passwordChange your account password

vijil auth init

Configure the Vijil Console API gateway URL. Run once after installation.
vijil auth init --url https://console-api.example.com
FlagDescription
--urlBase URL of the Vijil Console gateway
Run without --url to be prompted interactively. The CLI verifies connectivity before saving.

vijil auth login

Log in and store credentials.
vijil auth login
FlagDescription
--emailAccount email
--passwordAccount password
Flags are prompted interactively when not provided. On success, the CLI stores a JWT token and automatically selects your team if you belong to exactly one.

vijil auth logout

Clear stored credentials.
vijil auth logout

vijil auth change-password

Change your account password.
vijil auth change-password \
  --current-password "old-password" \
  --new-password "new-password"
FlagDescription
--current-passwordCurrent account password
--new-passwordNew account password
--jsonOutput as JSON

Team Management

CommandDescription
vijil team listList teams you belong to
vijil team useSet the active team

vijil team list

List all teams your account belongs to.
vijil team list
vijil team list --json
FlagDescription
--jsonOutput as JSON

vijil team use

Set the active team for all subsequent commands. The team ID is injected automatically into commands that require it.
vijil team use <team_id>
Last modified on May 19, 2026