Skip to main content
GlobalDex
Deployment Gate

Add GlobalDex to your CI/CD in 30 seconds

Enforce compliance before code reaches production.

How enforcement works

Scan

GlobalDex runs 34 agent-readiness checks against your site.

Evaluate

Your score is compared against the compliance threshold you set.

Gate

Deploy proceeds if passing. Pipeline fails with exit code 1 if not.

Choose your integration

GitHub Action

Add to any workflow — blocks PRs and deploys automatically.

.github/workflows/agentready.yml
name: Agent-Readiness Gate

on:
  push:
    branches: [main]
  pull_request:

jobs:
  globaldex:
    runs-on: ubuntu-latest
    steps:
      - name: Check Agent-Readiness
        uses: S-Borna/globaldex-action@v1
        with:
          url: https://yoursite.com
          threshold: 60
Fails the GitHub Action step if score is below threshold

CLI

Run from any terminal or CI system — Jenkins, GitLab CI, CircleCI, etc.

npx globaldex-cli scan https://yoursite.com --threshold 60
Exits with code 1 if score is below threshold

npm Script

Add to package.json — runs before every deploy.

package.json
{
  "scripts": {
    "agentready": "globaldex scan https://yoursite.com --threshold 60",
    "predeploy": "npm run agentready"
  }
}
Blocks npm deploy if agent-readiness check fails

Shell / curl

Works anywhere — zero dependencies.

SCORE=$(curl -s -X POST https://globaldex.ai/api/v1/scan \
  -H "Content-Type: application/json" \
  -d '{"url": "https://yoursite.com"}' | jq '.score')

if [ "$SCORE" -lt 60 ]; then
  echo "Deployment blocked — score $SCORE fails threshold (≥60)"
  exit 1
fi
Script exits with code 1, blocking the pipeline

Prove compliance with a badge

Show your GlobalDex Score in your README, docs, or website. Updates automatically.

GlobalDex badge example — stripe.comGlobalDex badge example — github.com
[![GlobalDex](https://globaldex.ai/api/v1/badge?domain=yoursite.com)](https://globaldex.ai/domain/yoursite.com)

What GlobalDex enforces

Semantic HTML structure
Proper heading hierarchy
Complete metadata (title, description, Open Graph)
JSON-LD structured data
Accessibility (ARIA, alt text, labels)
Mobile responsiveness
Discoverability (robots.txt, sitemap, llms.txt)
AI bot directives
Security headers
WebMCP compatibility (Chrome 146+)

34 checks across 5 categories. Grade A ≥ 80, B ≥ 60, C ≥ 40, D ≥ 20, F < 20.

Ready to enforce agent-readiness?

Start with a free scan, then add the threshold gate to your pipeline.