Quick Start

Get your first release-risk analysis running in under 5 minutes.

1

Create your account

Sign up at app.ari.sh. Free tier gives you 5 analyses per month with no credit card required.

2

Add a project

From the dashboard, click "New Project". Enter your project name and the staging URL you want ARI to analyze. ARI works against any publicly reachable URL — your staging, preview, or canary environment.

3

Run your first analysis

Click "Analyze" on your project card. ARI will probe your URL, simulate user flows, and collect evidence. Most analyses complete in under 2 minutes.

4

Read your risk report

The report shows a SAFE / WARNING / NOT SAFE verdict at the top, followed by confirmed bugs, manual verification items, security hardening recommendations, and rejected findings — each in separate sections so you always know exactly what requires action.

5

Automate with CI/CD

Trigger analyses on every pull request so risky changes are caught before they reach staging. See the CI/CD Integration guide for GitHub Actions, GitLab CI, and Vercel examples.

# .github/workflows/ari.yml
name: ARI Release Check
on:
  pull_request:
    branches: [main]

jobs:
  ari-analysis:
    runs-on: ubuntu-latest
    steps:
      - name: Trigger ARI analysis
        run: |
          curl -X POST https://api.ari.sh/v1/analyze \
            -H "Authorization: Bearer ${{ secrets.ARI_API_KEY }}" \
            -H "Content-Type: application/json" \
            -d '{"project_id": "${{ vars.ARI_PROJECT_ID }}", "url": "${{ vars.STAGING_URL }}"}'