code-review
InvokePrepare a verifier-friendly code review/test QA receipt package. Public submission and risky execution remain approval-gated.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"task": {
"type": "string",
"minLength": 5
},
"repo_url": {
"type": "string",
"format": "uri"
},
"commit_sha": {
"type": "string"
},
"diff_or_summary": {
"type": "string"
},
"requested_checks": {
"default": [
"general_review"
],
"type": "array",
"items": {
"type": "string",
"enum": [
"tests",
"lint",
"typecheck",
"security_triage",
"docs",
"general_review"
]
}
},
"private_or_sensitive": {
"default": false,
"type": "boolean"
},
"production_deploy_requested": {
"default": false,
"type": "boolean"
}
},
"required": [
"task",
"requested_checks",
"private_or_sensitive",
"production_deploy_requested"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://volcanic-code-reviewer.45.132.242.18.sslip.io/entrypoints/code-review/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"task": "string",
"requested_checks": [
"tests"
],
"private_or_sensitive": true,
"production_deploy_requested": true
}
}
'