MATLAB AI Tutor Transcript Log
Purpose
Keep a running, evidence-preserving transcript of a MATLAB tutoring session once
tutoring has started. The transcript should capture enough context for an
instructor or evaluator to understand what happened without turning the log into
a polished summary or grade.
Use this skill with:
matlab-tutor-learners
matlab-coach-programming
matlab-apply-assignment-guardrails
matlab-create-hands-on-exercises
matlab-coach-debugging
matlab-create-mcq-practice
matlab-report-tutor-sessions
matlab-evaluate-tutor-quality
Logging Principles
- Start the transcript when a MATLAB tutoring session begins or when the learner
asks to record, share, evaluate, or report on the session.
- Preserve the sequence of tutor and learner turns.
- Capture MATLAB evidence exactly enough to support review: code snippets,
outputs, errors, Code Analyzer warnings, test results, and inspected values.
- Label uncertain, missing, synthetic, or reconstructed content clearly.
- Keep private or unnecessary personal information out of the transcript.
- Do not convert the transcript into feedback, a grade, or a learner report.
- Ask before including sensitive course, identity, or grade information.
- If the user only provides a partial transcript, mark it as partial.
Transcript Workflow
- Identify the session context: course, assignment status, learner goal, MATLAB
topic, and whether the transcript is real, synthetic, partial, or reconstructed.
- Create or update the transcript artifact using the required structure.
- Append each meaningful turn in order with speaker, timestamp if available,
and observed content.
- Add MATLAB evidence blocks for code, errors, outputs, tests, and tool results.
- Tag tutor moves when visible: active learning, feedback, guardrail,
debugging support, transfer, or direct explanation.
- Add brief session markers for important events such as policy checks,
learner revisions, verified fixes, unresolved issues, and transfer prompts.
- End with export notes that state what is complete, partial, omitted, or
synthetic.
Read references/transcript-template.md for
the required transcript structure, evidence tags, and export format.
File Naming
Autoname transcript files:
MATLAB AI Tutor Transcript YYYY-MM-DD HHMMSS.md
Use local session datetime when available. Use 24-hour time and omit colons from
the time. Example:
MATLAB AI Tutor Transcript 2026-06-03 101500.md
Instructor and Evaluation Use
When a transcript is intended for an instructor or evaluation workflow:
- include the transcript provenance: real, synthetic, partial, reconstructed, or
mixed;
- include the assignment policy context if it was provided;
- include enough MATLAB evidence to judge correctness;
- mark any hidden, omitted, or unavailable turns;
- preserve exact tutor wording for moments that may affect guardrails, feedback
quality, or student independence.
Use matlab-report-tutor-sessions after this skill when the user wants a
learner-facing progress summary. Use matlab-evaluate-tutor-quality when the user
wants a quality review of tutor behavior.
1---2name: matlab-log-tutor-sessions3description: Use when starting, continuing, updating, exporting, or sharing a running transcript of a MATLAB AI tutoring session, especially when the transcript will be shared with an instructor, attached to a learner session report, or passed to an evaluation workflow for quality review.4license: MathWorks BSD-3-Clause (see LICENSE)5---6
7# MATLAB AI Tutor Transcript Log
8
9## Purpose
10
11Keep a running, evidence-preserving transcript of a MATLAB tutoring session once
12tutoring has started. The transcript should capture enough context for an
13instructor or evaluator to understand what happened without turning the log into
14a polished summary or grade.
15
16Use this skill with:
17
18- `matlab-tutor-learners`
19- `matlab-coach-programming`
20- `matlab-apply-assignment-guardrails`
21- `matlab-create-hands-on-exercises`
22- `matlab-coach-debugging`
23- `matlab-create-mcq-practice`
24- `matlab-report-tutor-sessions`
25- `matlab-evaluate-tutor-quality`
26
27## Logging Principles
28
29- Start the transcript when a MATLAB tutoring session begins or when the learner
30 asks to record, share, evaluate, or report on the session.
31- Preserve the sequence of tutor and learner turns.
32- Capture MATLAB evidence exactly enough to support review: code snippets,
33 outputs, errors, Code Analyzer warnings, test results, and inspected values.
34- Label uncertain, missing, synthetic, or reconstructed content clearly.
35- Keep private or unnecessary personal information out of the transcript.
36- Do not convert the transcript into feedback, a grade, or a learner report.
37- Ask before including sensitive course, identity, or grade information.
38- If the user only provides a partial transcript, mark it as partial.
39
40## Transcript Workflow
41
421. Identify the session context: course, assignment status, learner goal, MATLAB
43 topic, and whether the transcript is real, synthetic, partial, or reconstructed.
442. Create or update the transcript artifact using the required structure.
453. Append each meaningful turn in order with speaker, timestamp if available,
46 and observed content.
474. Add MATLAB evidence blocks for code, errors, outputs, tests, and tool results.
485. Tag tutor moves when visible: active learning, feedback, guardrail,
49 debugging support, transfer, or direct explanation.
506. Add brief session markers for important events such as policy checks,
51 learner revisions, verified fixes, unresolved issues, and transfer prompts.
527. End with export notes that state what is complete, partial, omitted, or
53 synthetic.
54
55Read [references/transcript-template.md](references/transcript-template.md) for
56the required transcript structure, evidence tags, and export format.
57
58## File Naming
59
60Autoname transcript files:
61
62```text
63MATLAB AI Tutor Transcript YYYY-MM-DD HHMMSS.md
64```
65
66Use local session datetime when available. Use 24-hour time and omit colons from
67the time. Example:
68
69```text
70MATLAB AI Tutor Transcript 2026-06-03 101500.md
71```
72
73## Instructor and Evaluation Use
74
75When a transcript is intended for an instructor or evaluation workflow:
76
77- include the transcript provenance: real, synthetic, partial, reconstructed, or
78 mixed;
79- include the assignment policy context if it was provided;
80- include enough MATLAB evidence to judge correctness;
81- mark any hidden, omitted, or unavailable turns;
82- preserve exact tutor wording for moments that may affect guardrails, feedback
83 quality, or student independence.
84
85Use `matlab-report-tutor-sessions` after this skill when the user wants a
86learner-facing progress summary. Use `matlab-evaluate-tutor-quality` when the user
87wants a quality review of tutor behavior.