feat(workflow): sample review_report schema + implementer↔reviewer loop

This commit is contained in:
2026-06-04 00:56:50 +04:00
parent fac6a29178
commit 8d67f5b03e
4 changed files with 173 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
"type": "object",
"properties": {
"verdict": {
"type": "string",
"description": "approved | changes_requested"
},
"notes": {
"type": "string",
"description": "reviewer rationale and requested changes"
}
},
"required": ["verdict"],
"additionalProperties": true
}