Canvas Course Audit
Perform a comprehensive audit of a Canvas course against the Four Learning Design Pillars, generating actionable recommendations based on evidence-based instructional design principles.
Skill Purpose
This skill systematically evaluates a Canvas course against 50+ learning design principles organized into four pillars:
- Clear, Purposeful Structure - Organization, consistency, learning path clarity
- Active, Engaging Learning Content - Multimedia, interactivity, relevance
- Continuous Practice & Feedback - Assessment variety, feedback quality, metacognition
- Simple, Intuitive User Experience - Navigation, accessibility, media controls
Usage
/canvas-course-audit <course_id_or_code>
Examples:
/canvas-course-audit 12345
/canvas-course-audit EDUC-101-F24
- "Audit my Canvas course 67890"
- "Review course quality for PSY 200"
Prerequisites
- canvas-mcp server must be configured and running
- User must have access to the target course (instructor/TA/admin role)
- Principles file at:
{SKILL_DIR}/../principles/learning-design-pillars.yaml
Workflow
Step 1: Initialize Audit
- Parse the course identifier from user input
- Load the learning design pillars from the YAML file:
{SKILL_DIR}/../principles/learning-design-pillars.yaml
- Confirm course access with canvas-mcp
Step 2: Fetch Course Data
Use canvas-mcp tools to gather comprehensive course data:
# Core course information
canvas_mcp.get_course_details(course_id)
# Content structure
canvas_mcp.list_modules(course_id)
canvas_mcp.list_pages(course_id)
# Assessments
canvas_mcp.list_assignments(course_id)
canvas_mcp.list_quizzes(course_id)
# Engagement elements
canvas_mcp.list_discussions(course_id)
# Files and media
canvas_mcp.list_files(course_id)
Step 3: Analyze Against Each Pillar
For each pillar, evaluate the course against specific criteria:
Pillar 1: Clear, Purposeful Structure
| Category |
Canvas Elements to Check |
Principle IDs |
| Content Organization |
Module count, items per module, naming patterns |
1.1.1-1.1.5 |
| Design Consistency |
Naming conventions, template usage, formatting |
1.2.1-1.2.3 |
| Learning Path Clarity |
Objectives visibility, overview pages, rubrics |
1.3.1-1.3.5 |
| Adaptive Design |
Prerequisites, optional content, pacing |
1.4.1-1.4.2 |
Check:
Pillar 2: Active, Engaging Learning Content
| Category |
Canvas Elements to Check |
Principle IDs |
| Content Design |
Page word counts, heading usage, media ratio |
2.1.1-2.1.8 |
| Multimedia |
Video count, embedded content, H5P elements |
2.2.1-2.2.6 |
| Engagement |
Discussion prompts, relevance indicators |
2.3.1-2.3.9 |
| Quality |
External links, date stamps, source citations |
2.4.1-2.4.4 |
Check:
Pillar 3: Continuous Practice & Feedback
| Category |
Canvas Elements to Check |
Principle IDs |
| Practice Design |
Quiz types, assignment variety, practice vs graded |
3.1.1-3.1.7 |
| Feedback |
Rubric attachment, auto-grading, peer review |
3.2.1-3.2.5 |
| Metacognition |
Reflection prompts, self-assessment tools |
3.3.1-3.3.4 |
Check:
Pillar 4: Simple, Intuitive User Experience
| Category |
Canvas Elements to Check |
Principle IDs |
| Navigation |
Course navigation settings, hidden items |
4.1.1-4.1.5 |
| Accessibility |
Alt text, captions, color contrast |
4.2.1-4.2.5 |
| Media Control |
Video player features, time estimates |
4.3.1-4.3.2 |
Check:
Step 4: Calculate Pillar Scores
Score each pillar on a 1-5 scale:
| Score |
Description |
| 5 |
Exemplary - Meets nearly all criteria with excellence |
| 4 |
Strong - Meets most criteria with minor gaps |
| 3 |
Adequate - Meets core criteria but notable gaps exist |
| 2 |
Developing - Several significant gaps identified |
| 1 |
Needs Redesign - Fundamental issues across criteria |
Scoring Formula:
Pillar Score = (criteria_met / total_criteria) * 5
Step 5: Generate Audit Report
Produce a structured report with these sections:
# Canvas Course Audit Report
**Course:** [Course Name] ([Course Code])
**Audit Date:** [Date]
**Overall Score:** [Average of 4 pillars] / 5
## Executive Summary
[2-3 sentence overview of course strengths and primary improvement areas]
## Pillar Scores
| Pillar | Score | Status |
|--------|-------|--------|
| 1. Clear Structure | X.X/5 | [Emoji indicator] |
| 2. Active Content | X.X/5 | [Emoji indicator] |
| 3. Practice & Feedback | X.X/5 | [Emoji indicator] |
| 4. Intuitive UX | X.X/5 | [Emoji indicator] |
## Detailed Findings
### Pillar 1: Clear, Purposeful Structure
**Score: X.X/5**
**Strengths:**
- [Finding citing principle ID, e.g., "Consistent module naming (1.2.1)"]
**Gaps:**
- [Finding citing principle ID, e.g., "No learning objectives visible (1.3.1)"]
[Repeat for each pillar]
## Recommendations
### Quick Wins (< 1 hour each)
1. [Action] - Addresses [Principle ID]
2. [Action] - Addresses [Principle ID]
### Medium Effort (1-4 hours)
1. [Action] - Addresses [Principle IDs]
### Major Redesigns (Course revision needed)
1. [Action] - Addresses [Principle IDs]
## Appendix: Audit Checklist
[Full checklist with pass/fail for each item]
Canvas MCP Integration
Required MCP Tools
| Tool |
Purpose |
Data Extracted |
get_course_details |
Course metadata |
Name, code, term, syllabus |
list_modules |
Structure analysis |
Module names, item counts, prerequisites |
list_assignments |
Assessment inventory |
Types, rubrics, due dates, points |
list_quizzes |
Practice analysis |
Quiz types, attempts, time limits |
list_discussions |
Engagement elements |
Topics, requirements, reply counts |
list_pages |
Content analysis |
Page content, headings, media |
list_files |
Media inventory |
File types, organization |
MCP Call Sequence
// 1. Verify course access
course = await canvas_mcp.get_course_details(course_id);
// 2. Fetch structural elements
modules = await canvas_mcp.list_modules(course_id);
// 3. Fetch assessments
assignments = await canvas_mcp.list_assignments(course_id);
quizzes = await canvas_mcp.list_quizzes(course_id);
// 4. Fetch engagement elements
discussions = await canvas_mcp.list_discussions(course_id);
// 5. Fetch content
pages = await canvas_mcp.list_pages(course_id);
// 6. Fetch media inventory
files = await canvas_mcp.list_files(course_id);
Handling MCP Limitations
- If a tool is unavailable, note it in the report and skip that analysis
- For large courses (>100 items), paginate requests
- Cache results for multi-pass analysis
Audit Criteria
For complete audit criteria tables with Canvas-specific checks and weights for each pillar, see:
references/audit-criteria.md
Key high-weight criteria to prioritize:
- Pillar 1: Learning objectives visible (1.3.1), rubrics attached (1.3.4), consistent naming (1.2.1)
- Pillar 2: Videos embedded (2.2.1), interactive elements (2.2.2), inclusivity (2.4.3)
- Pillar 3: Practice quizzes (3.1.6), varied practice (3.1.1), peer review (3.3.4)
- Pillar 4: Progress tracking (4.1.2), minimalist design (4.2.5), time estimates (4.3.2)
Example Output
# Canvas Course Audit Report
**Course:** Introduction to Psychology (PSY-101-F24)
**Audit Date:** 2024-12-27
**Overall Score:** 3.4 / 5
## Executive Summary
PSY-101 demonstrates strong content organization and navigation design but lacks sufficient practice opportunities and multimedia engagement. Priority improvements should focus on adding practice quizzes and embedding video content.
## Pillar Scores
| Pillar | Score | Status |
|--------|-------|--------|
| 1. Clear Structure | 4.2/5 | Strong |
| 2. Active Content | 2.8/5 | Developing |
| 3. Practice & Feedback | 2.5/5 | Developing |
| 4. Intuitive UX | 4.1/5 | Strong |
## Detailed Findings
### Pillar 1: Clear, Purposeful Structure
**Score: 4.2/5**
**Strengths:**
- Consistent "Week X: Topic" naming convention (1.2.1)
- Each module contains 5-8 items, well-segmented (1.1.1)
- Clear prerequisite chain for foundational modules (1.1.3)
- Comprehensive syllabus with course policies (1.3.5)
**Gaps:**
- Learning objectives not visible in module descriptions (1.3.1)
- No module overview/summary pages (1.3.2)
- Rubrics missing from 3 of 8 assignments (1.3.4)
### Pillar 2: Active, Engaging Learning Content
**Score: 2.8/5**
**Strengths:**
- Pages use heading hierarchy appropriately (1.1.4)
- Key terms bolded throughout (2.3.8)
- Additional reading resources provided (2.4.1)
**Gaps:**
- Only 2 videos across 15 modules (2.2.1)
- No interactive elements (H5P, embedded activities) (2.2.2)
- Most content is text-heavy without visuals (2.1.2)
- No discussion forums for engagement (2.2.2)
### Pillar 3: Continuous Practice & Feedback
**Score: 2.5/5**
**Strengths:**
- Varied assignment types: essays, short answers, projects (3.1.1)
- Clear instructions in assignment descriptions (3.2.5)
**Gaps:**
- Zero practice quizzes - all quizzes are graded (3.1.6)
- No peer review assignments (3.3.4)
- No reflection prompts (3.3.3)
- Feedback limited to letter grades, no rubric feedback (3.2.1)
### Pillar 4: Simple, Intuitive User Experience
**Score: 4.1/5**
**Strengths:**
- Unused nav items hidden (Home, Modules, Assignments, Grades only) (4.2.5)
- Module requirements enable progress tracking (4.1.2)
- Clean home page with welcome message (4.2.5)
**Gaps:**
- No time estimates for readings/videos (4.3.2)
- External links not clearly marked (4.1.4)
## Recommendations
### Quick Wins (< 1 hour each)
1. Add learning objectives to each module description - (1.3.1)
2. Enable peer review on one major assignment - (3.3.4)
3. Add time estimates to module headers - (4.3.2)
4. Mark external links with "[External]" label - (4.1.4)
### Medium Effort (1-4 hours)
1. Create practice quiz for each unit using question banks - (3.1.6)
2. Add module overview page template to each module - (1.3.2)
3. Attach detailed rubrics to all assignments - (1.3.4, 3.2.1)
4. Create one discussion forum per unit - (2.2.2, 3.3.4)
### Major Redesigns (Course revision needed)
1. Develop or curate 1-2 short videos per module - (2.2.1, 2.2.3)
2. Add interactive elements (H5P knowledge checks) - (2.2.2)
3. Redesign assessments to include reflection components - (3.3.3)
Notes
- Some criteria require manual review (e.g., tone, video quality)
- Report indicates where automated checks were not possible
- Recommend running audit at start of semester for maximum improvement time
- Pair with instructional designer review for comprehensive evaluation
1---2name: canvas-course-audit3description: Audit an entire Canvas LMS course against the Four Learning Design Pillars (Clear Structure, Active Content, Continuous Practice, Intuitive UX). Use when users want to evaluate course quality, identify improvement areas, or prepare for course redesign. Requires canvas-mcp server for course data access. Triggers on "audit course", "course review", "evaluate my course", or Canvas course IDs/codes.4---5
6# Canvas Course Audit
7
8Perform a comprehensive audit of a Canvas course against the Four Learning Design Pillars, generating actionable recommendations based on evidence-based instructional design principles.
9
10## Skill Purpose
11
12This skill systematically evaluates a Canvas course against 50+ learning design principles organized into four pillars:
13
141. **Clear, Purposeful Structure** - Organization, consistency, learning path clarity
152. **Active, Engaging Learning Content** - Multimedia, interactivity, relevance
163. **Continuous Practice & Feedback** - Assessment variety, feedback quality, metacognition
174. **Simple, Intuitive User Experience** - Navigation, accessibility, media controls
18
19## Usage
20
21```
22/canvas-course-audit <course_id_or_code>
23```
24
25**Examples:**
26- `/canvas-course-audit 12345`
27- `/canvas-course-audit EDUC-101-F24`
28- "Audit my Canvas course 67890"
29- "Review course quality for PSY 200"
30
31## Prerequisites
32
33- **canvas-mcp** server must be configured and running
34- User must have access to the target course (instructor/TA/admin role)
35- Principles file at: `{SKILL_DIR}/../principles/learning-design-pillars.yaml`
36
37## Workflow
38
39### Step 1: Initialize Audit
40
411. Parse the course identifier from user input
422. Load the learning design pillars from the YAML file:
43 ```
44 {SKILL_DIR}/../principles/learning-design-pillars.yaml
45 ```
463. Confirm course access with canvas-mcp
47
48### Step 2: Fetch Course Data
49
50Use canvas-mcp tools to gather comprehensive course data:
51
52```
53# Core course information
54canvas_mcp.get_course_details(course_id)
55
56# Content structure
57canvas_mcp.list_modules(course_id)
58canvas_mcp.list_pages(course_id)
59
60# Assessments
61canvas_mcp.list_assignments(course_id)
62canvas_mcp.list_quizzes(course_id)
63
64# Engagement elements
65canvas_mcp.list_discussions(course_id)
66
67# Files and media
68canvas_mcp.list_files(course_id)
69```
70
71### Step 3: Analyze Against Each Pillar
72
73For each pillar, evaluate the course against specific criteria:
74
75#### Pillar 1: Clear, Purposeful Structure
76
77| Category | Canvas Elements to Check | Principle IDs |
78|----------|-------------------------|---------------|
79| Content Organization | Module count, items per module, naming patterns | 1.1.1-1.1.5 |
80| Design Consistency | Naming conventions, template usage, formatting | 1.2.1-1.2.3 |
81| Learning Path Clarity | Objectives visibility, overview pages, rubrics | 1.3.1-1.3.5 |
82| Adaptive Design | Prerequisites, optional content, pacing | 1.4.1-1.4.2 |
83
84**Check:**
85- [ ] Modules have 5-10 items each (not overloaded)
86- [ ] Consistent naming pattern (e.g., "Week 1:", "Module 1:")
87- [ ] Each module has overview/summary pages
88- [ ] Learning objectives visible in module descriptions
89- [ ] Prerequisite settings used appropriately
90- [ ] Logical progression from foundational to advanced
91
92#### Pillar 2: Active, Engaging Learning Content
93
94| Category | Canvas Elements to Check | Principle IDs |
95|----------|-------------------------|---------------|
96| Content Design | Page word counts, heading usage, media ratio | 2.1.1-2.1.8 |
97| Multimedia | Video count, embedded content, H5P elements | 2.2.1-2.2.6 |
98| Engagement | Discussion prompts, relevance indicators | 2.3.1-2.3.9 |
99| Quality | External links, date stamps, source citations | 2.4.1-2.4.4 |
100
101**Check:**
102- [ ] Videos embedded (not just linked)
103- [ ] Video count > 0 per content module
104- [ ] Pages use headings (H1, H2, H3 hierarchy)
105- [ ] Images have alt text
106- [ ] Content uses conversational tone
107- [ ] Key terms are bolded/highlighted
108- [ ] Discussions exist beyond announcements
109
110#### Pillar 3: Continuous Practice & Feedback
111
112| Category | Canvas Elements to Check | Principle IDs |
113|----------|-------------------------|---------------|
114| Practice Design | Quiz types, assignment variety, practice vs graded | 3.1.1-3.1.7 |
115| Feedback | Rubric attachment, auto-grading, peer review | 3.2.1-3.2.5 |
116| Metacognition | Reflection prompts, self-assessment tools | 3.3.1-3.3.4 |
117
118**Check:**
119- [ ] Practice quizzes exist (ungraded/unlimited attempts)
120- [ ] Assignment types vary (papers, projects, presentations)
121- [ ] Rubrics attached to assignments
122- [ ] Peer review enabled on at least one assignment
123- [ ] Discussions require substantive responses
124- [ ] Feedback turnaround expectations stated
125
126#### Pillar 4: Simple, Intuitive User Experience
127
128| Category | Canvas Elements to Check | Principle IDs |
129|----------|-------------------------|---------------|
130| Navigation | Course navigation settings, hidden items | 4.1.1-4.1.5 |
131| Accessibility | Alt text, captions, color contrast | 4.2.1-4.2.5 |
132| Media Control | Video player features, time estimates | 4.3.1-4.3.2 |
133
134**Check:**
135- [ ] Unused navigation items hidden
136- [ ] Home page provides clear starting point
137- [ ] Module requirements enable progress tracking
138- [ ] External links clearly marked
139- [ ] Time estimates provided for activities
140- [ ] Mobile-friendly content (responsive embeds)
141
142### Step 4: Calculate Pillar Scores
143
144Score each pillar on a 1-5 scale:
145
146| Score | Description |
147|-------|-------------|
148| 5 | Exemplary - Meets nearly all criteria with excellence |
149| 4 | Strong - Meets most criteria with minor gaps |
150| 3 | Adequate - Meets core criteria but notable gaps exist |
151| 2 | Developing - Several significant gaps identified |
152| 1 | Needs Redesign - Fundamental issues across criteria |
153
154**Scoring Formula:**
155```
156Pillar Score = (criteria_met / total_criteria) * 5
157```
158
159### Step 5: Generate Audit Report
160
161Produce a structured report with these sections:
162
163```markdown
164# Canvas Course Audit Report
165
166**Course:** [Course Name] ([Course Code])
167**Audit Date:** [Date]
168**Overall Score:** [Average of 4 pillars] / 5
169
170## Executive Summary
171
172[2-3 sentence overview of course strengths and primary improvement areas]
173
174## Pillar Scores
175
176| Pillar | Score | Status |
177|--------|-------|--------|
178| 1. Clear Structure | X.X/5 | [Emoji indicator] |
179| 2. Active Content | X.X/5 | [Emoji indicator] |
180| 3. Practice & Feedback | X.X/5 | [Emoji indicator] |
181| 4. Intuitive UX | X.X/5 | [Emoji indicator] |
182
183## Detailed Findings
184
185### Pillar 1: Clear, Purposeful Structure
186
187**Score: X.X/5**
188
189**Strengths:**
190- [Finding citing principle ID, e.g., "Consistent module naming (1.2.1)"]
191
192**Gaps:**
193- [Finding citing principle ID, e.g., "No learning objectives visible (1.3.1)"]
194
195[Repeat for each pillar]
196
197## Recommendations
198
199### Quick Wins (< 1 hour each)
2001. [Action] - Addresses [Principle ID]
2012. [Action] - Addresses [Principle ID]
202
203### Medium Effort (1-4 hours)
2041. [Action] - Addresses [Principle IDs]
205
206### Major Redesigns (Course revision needed)
2071. [Action] - Addresses [Principle IDs]
208
209## Appendix: Audit Checklist
210
211[Full checklist with pass/fail for each item]
212```
213
214## Canvas MCP Integration
215
216### Required MCP Tools
217
218| Tool | Purpose | Data Extracted |
219|------|---------|----------------|
220| `get_course_details` | Course metadata | Name, code, term, syllabus |
221| `list_modules` | Structure analysis | Module names, item counts, prerequisites |
222| `list_assignments` | Assessment inventory | Types, rubrics, due dates, points |
223| `list_quizzes` | Practice analysis | Quiz types, attempts, time limits |
224| `list_discussions` | Engagement elements | Topics, requirements, reply counts |
225| `list_pages` | Content analysis | Page content, headings, media |
226| `list_files` | Media inventory | File types, organization |
227
228### MCP Call Sequence
229
230```javascript
231// 1. Verify course access
232course = await canvas_mcp.get_course_details(course_id);
233
234// 2. Fetch structural elements
235modules = await canvas_mcp.list_modules(course_id);
236
237// 3. Fetch assessments
238assignments = await canvas_mcp.list_assignments(course_id);
239quizzes = await canvas_mcp.list_quizzes(course_id);
240
241// 4. Fetch engagement elements
242discussions = await canvas_mcp.list_discussions(course_id);
243
244// 5. Fetch content
245pages = await canvas_mcp.list_pages(course_id);
246
247// 6. Fetch media inventory
248files = await canvas_mcp.list_files(course_id);
249```
250
251### Handling MCP Limitations
252
253- If a tool is unavailable, note it in the report and skip that analysis
254- For large courses (>100 items), paginate requests
255- Cache results for multi-pass analysis
256
257## Audit Criteria
258
259For complete audit criteria tables with Canvas-specific checks and weights for each pillar, see:
260**[references/audit-criteria.md](references/audit-criteria.md)**
261
262Key high-weight criteria to prioritize:
263- **Pillar 1**: Learning objectives visible (1.3.1), rubrics attached (1.3.4), consistent naming (1.2.1)
264- **Pillar 2**: Videos embedded (2.2.1), interactive elements (2.2.2), inclusivity (2.4.3)
265- **Pillar 3**: Practice quizzes (3.1.6), varied practice (3.1.1), peer review (3.3.4)
266- **Pillar 4**: Progress tracking (4.1.2), minimalist design (4.2.5), time estimates (4.3.2)
267
268## Example Output
269
270```markdown
271# Canvas Course Audit Report
272
273**Course:** Introduction to Psychology (PSY-101-F24)
274**Audit Date:** 2024-12-27
275**Overall Score:** 3.4 / 5
276
277## Executive Summary
278
279PSY-101 demonstrates strong content organization and navigation design but lacks sufficient practice opportunities and multimedia engagement. Priority improvements should focus on adding practice quizzes and embedding video content.
280
281## Pillar Scores
282
283| Pillar | Score | Status |
284|--------|-------|--------|
285| 1. Clear Structure | 4.2/5 | Strong |
286| 2. Active Content | 2.8/5 | Developing |
287| 3. Practice & Feedback | 2.5/5 | Developing |
288| 4. Intuitive UX | 4.1/5 | Strong |
289
290## Detailed Findings
291
292### Pillar 1: Clear, Purposeful Structure
293
294**Score: 4.2/5**
295
296**Strengths:**
297- Consistent "Week X: Topic" naming convention (1.2.1)
298- Each module contains 5-8 items, well-segmented (1.1.1)
299- Clear prerequisite chain for foundational modules (1.1.3)
300- Comprehensive syllabus with course policies (1.3.5)
301
302**Gaps:**
303- Learning objectives not visible in module descriptions (1.3.1)
304- No module overview/summary pages (1.3.2)
305- Rubrics missing from 3 of 8 assignments (1.3.4)
306
307### Pillar 2: Active, Engaging Learning Content
308
309**Score: 2.8/5**
310
311**Strengths:**
312- Pages use heading hierarchy appropriately (1.1.4)
313- Key terms bolded throughout (2.3.8)
314- Additional reading resources provided (2.4.1)
315
316**Gaps:**
317- Only 2 videos across 15 modules (2.2.1)
318- No interactive elements (H5P, embedded activities) (2.2.2)
319- Most content is text-heavy without visuals (2.1.2)
320- No discussion forums for engagement (2.2.2)
321
322### Pillar 3: Continuous Practice & Feedback
323
324**Score: 2.5/5**
325
326**Strengths:**
327- Varied assignment types: essays, short answers, projects (3.1.1)
328- Clear instructions in assignment descriptions (3.2.5)
329
330**Gaps:**
331- Zero practice quizzes - all quizzes are graded (3.1.6)
332- No peer review assignments (3.3.4)
333- No reflection prompts (3.3.3)
334- Feedback limited to letter grades, no rubric feedback (3.2.1)
335
336### Pillar 4: Simple, Intuitive User Experience
337
338**Score: 4.1/5**
339
340**Strengths:**
341- Unused nav items hidden (Home, Modules, Assignments, Grades only) (4.2.5)
342- Module requirements enable progress tracking (4.1.2)
343- Clean home page with welcome message (4.2.5)
344
345**Gaps:**
346- No time estimates for readings/videos (4.3.2)
347- External links not clearly marked (4.1.4)
348
349## Recommendations
350
351### Quick Wins (< 1 hour each)
3521. Add learning objectives to each module description - (1.3.1)
3532. Enable peer review on one major assignment - (3.3.4)
3543. Add time estimates to module headers - (4.3.2)
3554. Mark external links with "[External]" label - (4.1.4)
356
357### Medium Effort (1-4 hours)
3581. Create practice quiz for each unit using question banks - (3.1.6)
3592. Add module overview page template to each module - (1.3.2)
3603. Attach detailed rubrics to all assignments - (1.3.4, 3.2.1)
3614. Create one discussion forum per unit - (2.2.2, 3.3.4)
362
363### Major Redesigns (Course revision needed)
3641. Develop or curate 1-2 short videos per module - (2.2.1, 2.2.3)
3652. Add interactive elements (H5P knowledge checks) - (2.2.2)
3663. Redesign assessments to include reflection components - (3.3.3)
367```
368
369## Notes
370
371- Some criteria require manual review (e.g., tone, video quality)
372- Report indicates where automated checks were not possible
373- Recommend running audit at start of semester for maximum improvement time
374- Pair with instructional designer review for comprehensive evaluation