review_work_plan
Analyze pull requests by comparing them with original work plan issues to ensure alignment and provide actionable feedback for code changes.
Instructions
Review a pull request against the original work plan issue and provide feedback.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pull_request_url | Yes | ||
work_plan_issue_number | Yes |
Input Schema (JSON Schema)
{
"properties": {
"pull_request_url": {
"title": "Pull Request Url",
"type": "string"
},
"work_plan_issue_number": {
"title": "Work Plan Issue Number",
"type": "string"
}
},
"required": [
"work_plan_issue_number",
"pull_request_url"
],
"title": "review_work_planArguments",
"type": "object"
}