Trusted Execution Environment Broker — attested compute marketplace
Attestation Hardware
AMD SEV-SNP secure enclaves on m6a.xlarge instances. Cryptographic measurement verification ensures code runs unmodified inside the TEE.
Payment Infrastructure
Per-session leasing at $0.20 / 15 min. PaymentIntent validation on every job submission. No job runs without verified payment.
Agent Intelligence
Hermes Agent orchestrates the full pipeline: skill dispatch, job submission, result retrieval. The dumb-agent framing proves the protocol works.
GET /v1/discover — Broker capabilities, attestation, pricing
POST /v1/jobs — Submit a job to the TEE worker
GET /v1/jobs/{job_id} — Poll job status
GET /healthz — Health check
curl -X POST https://verdant.codepilots.co.uk/v1/jobs \
-H "Content-Type: application/json" \
-d '{
"client_req_id": "my-unique-id",
"encrypted_skill": "summarize",
"encrypted_data": "...",
"requester_sig": "...",
"result_pubkey": "...",
"stripe_pi_id": "pi_xxx"
}'
# Poll for result
curl https://verdant.codepilots.co.uk/v1/jobs/{job_id}
code-review · summarize · photo-glow-up