When the user needs to manage and complete multiple quizzes on Canvas LMS, this skill provides automated quiz discovery, question retrieval, answer analysis, and batch submission capabilities. It handles the complete workflow from listing enrolled courses, identifying available quizzes, starting quiz attempts, retrieving questions, analyzing correct answers based on subject matter expertise, and submitting all responses. Key triggers include 'unfinished quizzes', 'complete all quizzes', 'Canvas assignments', 'course assessments', 'submit quizzes', and 'quiz deadlines'. The skill is particularly useful when users have multiple pending quizzes across different courses and need systematic completion with accurate answers.
Systematically discover, answer, and submit all available/unfinished quizzes for the user across all their enrolled Canvas courses. Ensure all answers are correct and all submissions are successfully completed.
canvas-canvas_list_courses to get all courses where the user has a student enrollment ("type": "student"). Store the list of course IDs.canvas-canvas_list_quizzes to find all published quizzes. Filter for quizzes where "submit": true in the permissions. Compile a master list of (course_id, quiz_id) pairs.(course_id, quiz_id) pair, call . This is a parallelizable operation. Capture the returned and for each quiz. Handle any errors gracefully (e.g., quiz already started, access denied) but log them.canvas-canvas_start_quiz_attemptquiz_submission_idvalidation_tokencanvas-canvas_list_quiz_questions with the quiz_submission_id and use_submission_endpoint: true to get the specific questions and answer choices for that attempt.answer_id from the provided answer choices. Do not guess. If a question's subject matter is outside your reliable knowledge, note it but proceed with your best logical deduction based on the question text and answer choices. The goal is 100% accuracy.
"question_type": "multiple_choice_question"). The correct answer_id is a numeric ID within the answers array.canvas-canvas_submit_quiz_answers. The payload must include:
course_id, quiz_id, submission_id (the quiz_submission_id), validation_tokenanswers: An array of objects, each with question_id and the correct answer_id."workflow_state": "complete" and that the "score" equals "quiz_points_possible" (indicating a perfect score). If any submission fails, retry or investigate.local-claim_done to signal task completion. Provide the final summary to the user.memory-read_graph) that failed. Proceed with Canvas API calls if memory is unavailable. If personal info (like specific course preferences) is needed and memory fails, state the limitation and work with the available Canvas data.Activate this skill when the user request involves: completing unfinished quizzes, submitting all Canvas quizzes, managing course assessments, or meeting quiz deadlines across multiple courses.