{
  "manifest_version": "1.0.0",
  "template": {
    "id": "8a6f9cf9-5f8f-4955-ac3b-851bd54f977e",
    "slug": "evo-ai",
    "name": "Evo AI",
    "description": "Self-hosted AI agent platform with LangGraph workflows and MCP tools",
    "url": "https://railway.com/deploy/evo-ai",
    "upstream": {
      "repo_url": "https://github.com/gridalpha/evo-ai-railway"
    }
  },
  "services": [
    {
      "name": "evo-ai-frontend",
      "source": {
        "repo": "https://github.com/gridalpha/evo-ai-railway"
      },
      "needs_volume": false,
      "http": true
    },
    {
      "name": "Postgres",
      "source": {
        "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
      },
      "needs_volume": true,
      "volume_mount_path": "/var/lib/postgresql/data",
      "http": false
    },
    {
      "name": "mailpit",
      "source": {
        "image": "axllent/mailpit:latest"
      },
      "needs_volume": true,
      "volume_mount_path": "/data",
      "http": true
    },
    {
      "name": "evo-ai-api",
      "source": {
        "repo": "https://github.com/gridalpha/evo-ai-railway"
      },
      "needs_volume": false,
      "http": true
    }
  ],
  "required_inputs": [
    {
      "key": "PORT",
      "service": "evo-ai-frontend",
      "description": "HTTP port Next.js listens on",
      "secret": false,
      "strategy": "default",
      "default": "3000"
    },
    {
      "key": "NODE_ENV",
      "service": "evo-ai-frontend",
      "description": "Next.js runtime mode",
      "secret": false,
      "strategy": "default",
      "default": "production"
    },
    {
      "key": "NEXT_PUBLIC_API_URL",
      "service": "evo-ai-frontend",
      "description": "Backend URL called from the browser",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "NEXT_TELEMETRY_DISABLED",
      "service": "evo-ai-frontend",
      "description": "Disables Next.js telemetry",
      "secret": false,
      "strategy": "default",
      "default": "1"
    },
    {
      "key": "RAILWAY_DOCKERFILE_PATH",
      "service": "evo-ai-frontend",
      "description": "Selects the frontend Dockerfile",
      "secret": false,
      "strategy": "default",
      "default": "frontend/Dockerfile"
    },
    {
      "key": "PGDATA",
      "service": "Postgres",
      "description": "Cluster location on the volume",
      "secret": false,
      "strategy": "default",
      "default": "/var/lib/postgresql/data/pgdata"
    },
    {
      "key": "PGHOST",
      "service": "Postgres",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "PGPORT",
      "service": "Postgres",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "default",
      "default": "5432"
    },
    {
      "key": "PGUSER",
      "service": "Postgres",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGDATABASE",
      "service": "Postgres",
      "description": "Data panel alias, not read by the server",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "PGPASSWORD",
      "service": "Postgres",
      "description": "Data panel alias, not read by the server",
      "secret": true,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "POSTGRES_DB",
      "service": "Postgres",
      "description": "Database created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "railway"
    },
    {
      "key": "DATABASE_URL",
      "service": "Postgres",
      "description": "Private connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "POSTGRES_USER",
      "service": "Postgres",
      "description": "Superuser created on first boot",
      "secret": false,
      "strategy": "default",
      "default": "postgres"
    },
    {
      "key": "SSL_CERT_DAYS",
      "service": "Postgres",
      "description": "SSL certificate expiry in days",
      "secret": false,
      "strategy": "default",
      "default": "820"
    },
    {
      "key": "POSTGRES_PASSWORD",
      "service": "Postgres",
      "description": "Superuser password",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "Postgres",
      "description": "Clean shutdown window",
      "secret": false,
      "strategy": "default",
      "default": "60"
    },
    {
      "key": "PORT",
      "service": "mailpit",
      "description": "Inbox HTTP port",
      "secret": false,
      "strategy": "default",
      "default": "8025"
    },
    {
      "key": "MP_UI_AUTH",
      "service": "mailpit",
      "description": "Basic auth guarding the inbox",
      "secret": false,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "MP_DATABASE",
      "service": "mailpit",
      "description": "Message store on the volume",
      "secret": false,
      "strategy": "default",
      "default": "/data/mailpit.db"
    },
    {
      "key": "MP_MAX_MESSAGES",
      "service": "mailpit",
      "description": "Messages retained before pruning",
      "secret": false,
      "strategy": "default",
      "default": "5000"
    },
    {
      "key": "MP_UI_BIND_ADDR",
      "service": "mailpit",
      "description": "Inbox listener",
      "secret": false,
      "strategy": "default",
      "default": "[::]:8025"
    },
    {
      "key": "MP_SMTP_BIND_ADDR",
      "service": "mailpit",
      "description": "Private SMTP listener",
      "secret": false,
      "strategy": "default",
      "default": "[::]:1025"
    },
    {
      "key": "HOST",
      "service": "evo-ai-api",
      "description": "Bind address",
      "secret": false,
      "strategy": "default",
      "default": "0.0.0.0"
    },
    {
      "key": "PORT",
      "service": "evo-ai-api",
      "description": "HTTP port the API listens on",
      "secret": false,
      "strategy": "default",
      "default": "8000"
    },
    {
      "key": "API_URL",
      "service": "evo-ai-api",
      "description": "Public API URL used in A2A agent cards",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "APP_URL",
      "service": "evo-ai-api",
      "description": "Public UI URL used in emailed links",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "AI_ENGINE",
      "service": "evo-ai-api",
      "description": "Agent engine, adk or crewai",
      "secret": false,
      "strategy": "default",
      "default": "adk"
    },
    {
      "key": "LOG_LEVEL",
      "service": "evo-ai-api",
      "description": "Application log verbosity",
      "secret": false,
      "strategy": "default",
      "default": "INFO"
    },
    {
      "key": "SMTP_FROM",
      "service": "evo-ai-api",
      "description": "SMTP envelope sender",
      "secret": false,
      "strategy": "default",
      "default": "noreply@evoai.dev"
    },
    {
      "key": "SMTP_HOST",
      "service": "evo-ai-api",
      "description": "Private mail server hostname",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_private_domain"
    },
    {
      "key": "SMTP_PORT",
      "service": "evo-ai-api",
      "description": "Mail server port",
      "secret": false,
      "strategy": "default",
      "default": "1025"
    },
    {
      "key": "EMAIL_FROM",
      "service": "evo-ai-api",
      "description": "Default sender address",
      "secret": false,
      "strategy": "default",
      "default": "noreply@evoai.dev"
    },
    {
      "key": "ADMIN_EMAIL",
      "service": "evo-ai-api",
      "description": "First administrator login",
      "secret": false,
      "strategy": "default",
      "default": "admin@evoai.dev"
    },
    {
      "key": "SMTP_USE_SSL",
      "service": "evo-ai-api",
      "description": "Implicit TLS off for the private listener",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "SMTP_USE_TLS",
      "service": "evo-ai-api",
      "description": "STARTTLS off for the private listener",
      "secret": false,
      "strategy": "default",
      "default": "false"
    },
    {
      "key": "JWT_ALGORITHM",
      "service": "evo-ai-api",
      "description": "Token signing algorithm",
      "secret": false,
      "strategy": "default",
      "default": "HS256"
    },
    {
      "key": "EMAIL_PROVIDER",
      "service": "evo-ai-api",
      "description": "Mail transport, smtp or sendgrid",
      "secret": false,
      "strategy": "default",
      "default": "smtp"
    },
    {
      "key": "JWT_SECRET_KEY",
      "service": "evo-ai-api",
      "description": "Signs session tokens",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "ORGANIZATION_URL",
      "service": "evo-ai-api",
      "description": "Link shown in emails",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "railway_domain"
    },
    {
      "key": "ORGANIZATION_NAME",
      "service": "evo-ai-api",
      "description": "Name shown in emails",
      "secret": false,
      "strategy": "default",
      "default": "Evo AI"
    },
    {
      "key": "MAX_LOGIN_ATTEMPTS",
      "service": "evo-ai-api",
      "description": "Failed logins before lockout",
      "secret": false,
      "strategy": "default",
      "default": "5"
    },
    {
      "key": "TOKEN_EXPIRY_HOURS",
      "service": "evo-ai-api",
      "description": "Verification and reset link lifetime",
      "secret": true,
      "strategy": "default",
      "default": "24"
    },
    {
      "key": "ENCRYPTION_KEY_SEED",
      "service": "evo-ai-api",
      "description": "Seeds the at-rest key for provider API keys",
      "secret": true,
      "strategy": "generate",
      "generate": "random_base64_32"
    },
    {
      "key": "JWT_EXPIRATION_TIME",
      "service": "evo-ai-api",
      "description": "Session lifetime in seconds",
      "secret": false,
      "strategy": "default",
      "default": "3600"
    },
    {
      "key": "PASSWORD_MIN_LENGTH",
      "service": "evo-ai-api",
      "description": "Minimum password length",
      "secret": true,
      "strategy": "default",
      "default": "8"
    },
    {
      "key": "LOGIN_LOCKOUT_MINUTES",
      "service": "evo-ai-api",
      "description": "Lockout duration",
      "secret": false,
      "strategy": "default",
      "default": "30"
    },
    {
      "key": "ADMIN_INITIAL_PASSWORD",
      "service": "evo-ai-api",
      "description": "First administrator password, change after login",
      "secret": true,
      "strategy": "generate",
      "generate": "strong_password"
    },
    {
      "key": "RAILWAY_DOCKERFILE_PATH",
      "service": "evo-ai-api",
      "description": "Selects the backend Dockerfile",
      "secret": false,
      "strategy": "default",
      "default": "api/Dockerfile"
    },
    {
      "key": "POSTGRES_CONNECTION_STRING",
      "service": "evo-ai-api",
      "description": "Private Postgres connection string",
      "secret": false,
      "strategy": "railway_provided",
      "railway_source": "reference_variable"
    },
    {
      "key": "RAILWAY_DEPLOYMENT_DRAINING_SECONDS",
      "service": "evo-ai-api",
      "description": "Clean shutdown window",
      "secret": false,
      "strategy": "default",
      "default": "15"
    }
  ],
  "deploy": {
    "mcp": {
      "server": "railway",
      "tool": "deploy_template",
      "args": {
        "template_code": "evo-ai"
      }
    },
    "cli": "railway deploy --template evo-ai",
    "api": {
      "method": "POST",
      "path": "/graphql/v2",
      "body": {
        "query": "mutation templateDeploy($input: TemplateDeployV2Input!) { templateDeployV2(input: $input) { projectId workflowId } }",
        "variables": {
          "input": {
            "templateId": "8a6f9cf9-5f8f-4955-ac3b-851bd54f977e",
            "serializedConfig": {
              "buckets": {},
              "services": {
                "4ccd9c28-6ce5-4e74-92af-74d9ced021f5": {
                  "icon": "https://raw.githubusercontent.com/evolution-foundation/evo-ai/main/frontend/public/favicon.svg",
                  "name": "evo-ai-frontend",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/login",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/evo-ai-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "HTTP port Next.js listens on",
                      "defaultValue": "3000"
                    },
                    "NODE_ENV": {
                      "isOptional": false,
                      "description": "Next.js runtime mode",
                      "defaultValue": "production"
                    },
                    "NEXT_PUBLIC_API_URL": {
                      "isOptional": false,
                      "description": "Backend URL called from the browser",
                      "defaultValue": "https://${{evo-ai-api.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "NEXT_TELEMETRY_DISABLED": {
                      "isOptional": false,
                      "description": "Disables Next.js telemetry",
                      "defaultValue": "1"
                    },
                    "RAILWAY_DOCKERFILE_PATH": {
                      "isOptional": false,
                      "description": "Selects the frontend Dockerfile",
                      "defaultValue": "frontend/Dockerfile"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:3000": {
                        "port": 3000
                      }
                    }
                  }
                },
                "966679e6-6ec7-4254-925e-601d8fed55af": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/postgresql.svg",
                  "name": "Postgres",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": null,
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "ghcr.io/railwayapp-templates/postgres-ssl:18"
                  },
                  "variables": {
                    "PGDATA": {
                      "isOptional": false,
                      "description": "Cluster location on the volume",
                      "defaultValue": "/var/lib/postgresql/data/pgdata"
                    },
                    "PGHOST": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "PGPORT": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "5432"
                    },
                    "PGUSER": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{POSTGRES_USER}}"
                    },
                    "PGDATABASE": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{POSTGRES_DB}}"
                    },
                    "PGPASSWORD": {
                      "isOptional": false,
                      "description": "Data panel alias, not read by the server",
                      "defaultValue": "${{POSTGRES_PASSWORD}}"
                    },
                    "POSTGRES_DB": {
                      "isOptional": false,
                      "description": "Database created on first boot",
                      "defaultValue": "railway"
                    },
                    "DATABASE_URL": {
                      "isOptional": false,
                      "description": "Private connection string",
                      "defaultValue": "postgresql://${{PGUSER}}:${{POSTGRES_PASSWORD}}@${{RAILWAY_PRIVATE_DOMAIN}}:5432/${{PGDATABASE}}"
                    },
                    "POSTGRES_USER": {
                      "isOptional": false,
                      "description": "Superuser created on first boot",
                      "defaultValue": "postgres"
                    },
                    "SSL_CERT_DAYS": {
                      "isOptional": false,
                      "description": "SSL certificate expiry in days",
                      "defaultValue": "820"
                    },
                    "POSTGRES_PASSWORD": {
                      "isOptional": false,
                      "description": "Superuser password",
                      "defaultValue": "{{POSTGRES_PASSWORD}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Clean shutdown window",
                      "defaultValue": "60"
                    }
                  },
                  "volumeMounts": {
                    "966679e6-6ec7-4254-925e-601d8fed55af": {
                      "mountPath": "/var/lib/postgresql/data"
                    }
                  }
                },
                "c020811f-e708-4a8e-967a-c8076d1518d4": {
                  "icon": "https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/mailpit.svg",
                  "name": "mailpit",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/livez",
                    "restartPolicyType": "ON_FAILURE",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "image": "axllent/mailpit:latest"
                  },
                  "variables": {
                    "PORT": {
                      "isOptional": false,
                      "description": "Inbox HTTP port",
                      "defaultValue": "8025"
                    },
                    "MP_UI_AUTH": {
                      "isOptional": false,
                      "description": "Basic auth guarding the inbox",
                      "defaultValue": "{{MP_UI_AUTH}}"
                    },
                    "MP_DATABASE": {
                      "isOptional": false,
                      "description": "Message store on the volume",
                      "defaultValue": "/data/mailpit.db"
                    },
                    "MP_MAX_MESSAGES": {
                      "isOptional": false,
                      "description": "Messages retained before pruning",
                      "defaultValue": "5000"
                    },
                    "MP_UI_BIND_ADDR": {
                      "isOptional": false,
                      "description": "Inbox listener",
                      "defaultValue": "[::]:8025"
                    },
                    "MP_SMTP_BIND_ADDR": {
                      "isOptional": false,
                      "description": "Private SMTP listener",
                      "defaultValue": "[::]:1025"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8025": {
                        "port": 8025
                      }
                    }
                  },
                  "volumeMounts": {
                    "c020811f-e708-4a8e-967a-c8076d1518d4": {
                      "mountPath": "/data"
                    }
                  }
                },
                "dd27fea8-ad4a-4aa5-a719-2c7cea51379c": {
                  "icon": "https://raw.githubusercontent.com/evolution-foundation/evo-ai/main/frontend/public/favicon.svg",
                  "name": "evo-ai-api",
                  "deploy": {
                    "startCommand": null,
                    "healthcheckPath": "/",
                    "restartPolicyType": "ALWAYS",
                    "restartPolicyMaxRetries": 10
                  },
                  "source": {
                    "repo": "https://github.com/gridalpha/evo-ai-railway",
                    "rootDirectory": null
                  },
                  "variables": {
                    "HOST": {
                      "isOptional": false,
                      "description": "Bind address",
                      "defaultValue": "0.0.0.0"
                    },
                    "PORT": {
                      "isOptional": false,
                      "description": "HTTP port the API listens on",
                      "defaultValue": "8000"
                    },
                    "API_URL": {
                      "isOptional": false,
                      "description": "Public API URL used in A2A agent cards",
                      "defaultValue": "https://${{RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "APP_URL": {
                      "isOptional": false,
                      "description": "Public UI URL used in emailed links",
                      "defaultValue": "https://${{evo-ai-frontend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "AI_ENGINE": {
                      "isOptional": false,
                      "description": "Agent engine, adk or crewai",
                      "defaultValue": "adk"
                    },
                    "LOG_LEVEL": {
                      "isOptional": false,
                      "description": "Application log verbosity",
                      "defaultValue": "INFO"
                    },
                    "SMTP_FROM": {
                      "isOptional": false,
                      "description": "SMTP envelope sender",
                      "defaultValue": "noreply@evoai.dev"
                    },
                    "SMTP_HOST": {
                      "isOptional": false,
                      "description": "Private mail server hostname",
                      "defaultValue": "${{mailpit.RAILWAY_PRIVATE_DOMAIN}}"
                    },
                    "SMTP_PORT": {
                      "isOptional": false,
                      "description": "Mail server port",
                      "defaultValue": "1025"
                    },
                    "EMAIL_FROM": {
                      "isOptional": false,
                      "description": "Default sender address",
                      "defaultValue": "noreply@evoai.dev"
                    },
                    "ADMIN_EMAIL": {
                      "isOptional": false,
                      "description": "First administrator login",
                      "defaultValue": "admin@evoai.dev"
                    },
                    "SMTP_USE_SSL": {
                      "isOptional": false,
                      "description": "Implicit TLS off for the private listener",
                      "defaultValue": "false"
                    },
                    "SMTP_USE_TLS": {
                      "isOptional": false,
                      "description": "STARTTLS off for the private listener",
                      "defaultValue": "false"
                    },
                    "JWT_ALGORITHM": {
                      "isOptional": false,
                      "description": "Token signing algorithm",
                      "defaultValue": "HS256"
                    },
                    "EMAIL_PROVIDER": {
                      "isOptional": false,
                      "description": "Mail transport, smtp or sendgrid",
                      "defaultValue": "smtp"
                    },
                    "JWT_SECRET_KEY": {
                      "isOptional": false,
                      "description": "Signs session tokens",
                      "defaultValue": "{{JWT_SECRET_KEY}}"
                    },
                    "ORGANIZATION_URL": {
                      "isOptional": false,
                      "description": "Link shown in emails",
                      "defaultValue": "https://${{evo-ai-frontend.RAILWAY_PUBLIC_DOMAIN}}"
                    },
                    "ORGANIZATION_NAME": {
                      "isOptional": false,
                      "description": "Name shown in emails",
                      "defaultValue": "Evo AI"
                    },
                    "MAX_LOGIN_ATTEMPTS": {
                      "isOptional": false,
                      "description": "Failed logins before lockout",
                      "defaultValue": "5"
                    },
                    "TOKEN_EXPIRY_HOURS": {
                      "isOptional": false,
                      "description": "Verification and reset link lifetime",
                      "defaultValue": "24"
                    },
                    "ENCRYPTION_KEY_SEED": {
                      "isOptional": false,
                      "description": "Seeds the at-rest key for provider API keys",
                      "defaultValue": "{{ENCRYPTION_KEY_SEED}}"
                    },
                    "JWT_EXPIRATION_TIME": {
                      "isOptional": false,
                      "description": "Session lifetime in seconds",
                      "defaultValue": "3600"
                    },
                    "PASSWORD_MIN_LENGTH": {
                      "isOptional": false,
                      "description": "Minimum password length",
                      "defaultValue": "8"
                    },
                    "LOGIN_LOCKOUT_MINUTES": {
                      "isOptional": false,
                      "description": "Lockout duration",
                      "defaultValue": "30"
                    },
                    "ADMIN_INITIAL_PASSWORD": {
                      "isOptional": false,
                      "description": "First administrator password, change after login",
                      "defaultValue": "{{ADMIN_INITIAL_PASSWORD}}"
                    },
                    "RAILWAY_DOCKERFILE_PATH": {
                      "isOptional": false,
                      "description": "Selects the backend Dockerfile",
                      "defaultValue": "api/Dockerfile"
                    },
                    "POSTGRES_CONNECTION_STRING": {
                      "isOptional": false,
                      "description": "Private Postgres connection string",
                      "defaultValue": "${{Postgres.DATABASE_URL}}"
                    },
                    "RAILWAY_DEPLOYMENT_DRAINING_SECONDS": {
                      "isOptional": false,
                      "description": "Clean shutdown window",
                      "defaultValue": "15"
                    }
                  },
                  "networking": {
                    "serviceDomains": {
                      "<hasDomain>:8000": {
                        "port": 8000
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "post_deploy": {
    "healthcheck": {
      "service": "evo-ai-frontend",
      "method": "GET",
      "path": "/login",
      "expect_status": 200
    }
  },
  "resources": {
    "expected_services": 4,
    "needs_volume": true
  },
  "generated_at": "2026-09-20T16:14:49.616Z",
  "generator_version": "0.1.0",
  "status": "validated",
  "validated_at": "2026-09-19T14:48:04.993Z",
  "success_rate_30d": 1,
  "validation": {
    "last_run_id": "run_aa0adfad1ad94919bf5e",
    "checks": [
      {
        "name": "workflow_completed",
        "passed": true
      },
      {
        "name": "all_services_deployed",
        "passed": true
      },
      {
        "name": "healthcheck",
        "passed": true
      },
      {
        "name": "stays_up",
        "passed": true
      }
    ],
    "typical_ready_seconds": 170,
    "typical_build_seconds": 81,
    "typical_start_seconds": 20,
    "slowest_service": "evo-ai-frontend"
  }
}
