Getting started with Vraelis
Connect a system, write a first guarantee, and read your first decision.
Vraelis checks the work an AI agent does on your software at the point it is claimed complete, against a sentence you wrote before the work started. This guide takes you from an empty account to your first verified guarantee.
1. Connect a system
A system is one deployed application Vraelis oversees. Connecting it gives Vraelis a deployment to drive and a place to keep every guarantee, plan, and verification. You confirm ownership before anything runs.
2. Write a guarantee
State one outcome the business depends on, in one plain sentence. This is the guarantee Vraelis holds the work to, independently of the agent that performs it.
3. Read the result
When work is claimed complete, Vraelis returns a decision of Verified, Failed, or Blocked, with the evidence behind it and any decisions that need a person.
Submit a claim and get a plan for review
curl -X POST https://vraelis.com/api/v1/verifications \
-H "x-api-key: $VRAELIS_API_KEY" \
-H "content-type: application/json" \
-d '{ "deployment_url": "https://app.example.com",
"claim": "A paid customer keeps Pro access after signing back in." }'
# 202. Nothing ran and nothing was charged: no plan has been approved yet.
{
"state": "review_required",
"review_required": true,
"human_reviewed": false,
"reviewed_plan_id": "rvp_3c9e26ef",
"requirements": ["Signing back in keeps Pro access", "..."]
}
# Approve that plan, then resubmit the same claim with "reviewed_plan_id" to run exactly what was approved.