Quick Start
1. Create an Account
Navigate to app.rigorix.eu and sign up with your work email. You’ll get a 14-day free trial with full access to all features.
2. Install the CLI
# macOS (Homebrew)
brew install rigorix/tap/cli
# Linux (curl)
curl -sL https://github.com/rigorix/cli/releases/latest/download/rigorix-linux-amd64 -o rigorix
chmod +x rigorix
sudo mv rigorix /usr/local/bin/
3. Authenticate
rigorix login
# Opens browser → authenticate with Keycloak SSO → token saved locally
4. Configure Your First Policy
rigorix policies create \
--name "agent-approval" \
--enforcement "require-approval" \
--scope "github-actions"
5. Ingest Audit Data
# From GitHub
rigorix ingest github --repo myorg/myrepo
# From CLI (pipe agent output)
my-agent --do-thing | rigorix audit --source "cli"