generate_peer_review_report
Generate comprehensive peer review completion reports for Canvas assignments with executive summaries, detailed analytics, and actionable recommendations to track student participation and identify follow-up needs.
Instructions
Generate comprehensive peer review completion report with executive summary, detailed analytics, and actionable follow-up recommendations.
Args:
course_identifier: Canvas course code (e.g., badm_554_120251_246794) or ID
assignment_id: Canvas assignment ID
report_format: Report format (markdown, csv, json)
include_executive_summary: Include executive summary
include_student_details: Include student details
include_action_items: Include action items
include_timeline_analysis: Include timeline analysis
save_to_file: Save report to local file
filename: Custom filename for saved report
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignment_id | Yes | ||
course_identifier | Yes | ||
filename | No | ||
include_action_items | No | ||
include_executive_summary | No | ||
include_student_details | No | ||
include_timeline_analysis | No | ||
report_format | No | markdown | |
save_to_file | No |
Input Schema (JSON Schema)
{
"properties": {
"assignment_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Assignment Id"
},
"course_identifier": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Course Identifier"
},
"filename": {
"default": null,
"title": "Filename",
"type": "string"
},
"include_action_items": {
"default": true,
"title": "Include Action Items",
"type": "boolean"
},
"include_executive_summary": {
"default": true,
"title": "Include Executive Summary",
"type": "boolean"
},
"include_student_details": {
"default": true,
"title": "Include Student Details",
"type": "boolean"
},
"include_timeline_analysis": {
"default": true,
"title": "Include Timeline Analysis",
"type": "boolean"
},
"report_format": {
"default": "markdown",
"title": "Report Format",
"type": "string"
},
"save_to_file": {
"default": false,
"title": "Save To File",
"type": "boolean"
}
},
"required": [
"course_identifier",
"assignment_id"
],
"type": "object"
}