### Mint CLI Version Check Source: https://github.com/rwx-research/mint-cli/blob/main/CONTRIBUTING.md Command to check the installed version of the Mint CLI. Useful for reporting issues. ```shell mint --version ``` -------------------------------- ### Run Linter and Tests with Mage Source: https://github.com/rwx-research/mint-cli/blob/main/CONTRIBUTING.md Commands to run the linter and tests using Mage before opening a pull request. Ensures code quality and passes CI checks. ```go go run ./tools/mage lint go run ./tools/mage test ``` -------------------------------- ### Mage Build Tool Targets List Source: https://github.com/rwx-research/mint-cli/blob/main/CONTRIBUTING.md The output of the `go run ./tools/mage -l` command, showing available build targets. ```shell Targets: all cleans output, builds, tests, and lints. build* builds the Mint-CLI clean removes any generated artifacts from the repository. lint runs the linter & performs static-analysis checks. lintFix Applies lint checks and fixes any issues. test executes the test-suite for the Mint-CLI. * default target ``` -------------------------------- ### Mage Build Tool Targets Source: https://github.com/rwx-research/mint-cli/blob/main/CONTRIBUTING.md Lists available targets for the Mage build tool used in the Mint CLI project. These commands help manage the build, test, and linting processes. ```shell go run ./tools/mage -l ``` -------------------------------- ### Mint CLI Debugging Environment Variable Source: https://github.com/rwx-research/mint-cli/blob/main/CONTRIBUTING.md Environment variable to route API traffic to a different host for debugging purposes. ```shell MINT_HOST ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.