report.generate
Create detailed, markdown-formatted code review reports for GitHub pull requests, integrating PR details, static analysis results, tests, and inline comments.
Instructions
Generate a code review report markdown
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ai | No | ||
counts | No | ||
flags | No | ||
owner | Yes | ||
prUrl | Yes | ||
pull_number | Yes | ||
repo | Yes | ||
steps | No | ||
summaries | No | ||
verdict | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ai": {},
"counts": {},
"flags": {},
"owner": {
"type": "string"
},
"prUrl": {
"type": "string"
},
"pull_number": {
"type": "number"
},
"repo": {
"type": "string"
},
"steps": {},
"summaries": {},
"verdict": {
"type": "string"
}
},
"required": [
"owner",
"repo",
"pull_number",
"prUrl",
"verdict"
],
"type": "object"
}