# review-agent > Self-validation and iteration agent - Author: Akshay Joshi - Repository: DoozHub/dooz-code - Version: 20260124212848 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/DoozHub/dooz-code - Web: https://mule.run/skillshub/@@DoozHub/dooz-code~review-agent:20260124212848 --- --- name: review-agent description: Self-validation and iteration agent --- # Review Agent > Validates generated artifacts against acceptance criteria. ## Purpose The Review Agent checks generated code artifacts for correctness, pattern adherence, and acceptance criteria compliance before verification. ## Input | Field | Type | Description | |-------|------|-------------| | `artifacts` | Vec | Generated code | | `criteria` | Vec | Acceptance criteria | | `patterns` | Vec | Expected patterns | ## Output ```json { "status": "pass|fail", "issues": [], "suggestions": [] } ``` ## Decision - **Pass** → Forward to Verify Agent - **Fail** → Return to Execute Agent with issues for iteration