Command-line interface for Mendral — AI-powered software delivery insights.
Browse, triage, and implement fixes for CI/CD issues detected by Mendral, directly from your terminal or coding agent (Claude Code, Cursor, etc.).
brew install mendral-ai/tap/mendralDownload the latest release for your platform from the releases page.
| Platform | Architecture | Download |
|---|---|---|
| macOS | Apple Silicon (arm64) | mendral-darwin-arm64.tar.gz |
| macOS | Intel (amd64) | mendral-darwin-amd64.tar.gz |
| Linux | x86_64 (amd64) | mendral-linux-amd64.tar.gz |
| Linux | arm64 | mendral-linux-arm64.tar.gz |
| Windows | x86_64 (amd64) | mendral-windows-amd64.zip |
Extract and move the binary to a directory in your PATH:
tar -xzf mendral-*.tar.gz
sudo mv mendral-*/mendral /usr/local/bin/# Authenticate with your Mendral account
mendral auth login
# List open insights
mendral insight list --status open
# View details of an insight
mendral insight view <insight-id>
# Search insights
mendral insight search "flaky test"The CLI includes a built-in skill for Claude Code and Cursor:
# Auto-detects your editor and installs the /mendral skill
mendral skill installOnce installed, use /mendral in your editor to browse insights and implement fixes locally.
- Human-readable tables (default in terminal)
- JSON output (
--jsonflag, auto-enabled when piped) - jq filtering (
--jqflag, built-in) - Field selection (
--fieldsflag)
Apache-2.0