Automated validation of downstream (content delivery) phases by an AI agent. Ensure $SERVER_EXPLIB, $SERVER_CLUSTER, $TOKEN, and $MODE are set from the foundation runbook.
Promote the experience (created during foundation Phase 0d) to staging:
# API (production mode)
curl -sf -X POST "$SERVER_EXPLIB/api/v1/experiences/test-ai-experience/promote" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"to":"staging"}'
# CLI (local mode)
hydraexperiencelibrary promote test-ai-experience --to staging
Verification gate:
curl -sf "$SERVER_EXPLIB/api/v1/experiences/test-ai-experience" \
-H "Authorization: Bearer $TOKEN" | jq .
Rollback:
curl -sf -X DELETE "$SERVER_EXPLIB/api/v1/experiences/test-ai-experience" \
-H "Authorization: Bearer $TOKEN"
The AI agent cannot automate this step — LarkXR Standalone has a GUI that requires manual interaction.
Ask the user to:
Ask the user to: