---
name: MATLAB Assignment Guardrails
slug: matlab-assignment-guardrails
category: AI Engineering
description: MATLAB Assignment Guardrails helps tutors support homework, labs, projects, and other policy-constrained MATLAB work without giving full submission-ready solutions. It checks course policy when available and guides with hints, diagnostics, and review.
github: "https://github.com/matlab/agent-skills-playground/tree/main/demos/ai-tutoring/skills/matlab-apply-assignment-guardrails"
language: HTML
stars: 175
forks: 32
install: "npx degit https://github.com/matlab/agent-skills-playground/tree/main/demos/ai-tutoring/skills/matlab-apply-assignment-guardrails ~/.claude/skills/matlab-apply-assignment-guardrails"
installs_to: ~/.claude/skills/matlab-apply-assignment-guardrails
source_path: demos/ai-tutoring/skills/matlab-apply-assignment-guardrails/SKILL.md
collection_size: 24
category_size: 3475
collection_url: "https://dirskills.com/collections/matlab/agent-skills-playground"
added: 2026-09-07T05:21:28.472Z
last_synced: 2026-09-07T05:21:28.472Z
canonical_url: "https://dirskills.com/skills/matlab-assignment-guardrails"
---

# MATLAB Assignment Guardrails

MATLAB Assignment Guardrails helps tutors support homework, labs, projects, and other policy-constrained MATLAB work without giving full submission-ready solutions. It checks course policy when available and guides with hints, diagnostics, and review.

**Install:**

```bash
npx degit https://github.com/matlab/agent-skills-playground/tree/main/demos/ai-tutoring/skills/matlab-apply-assignment-guardrails ~/.claude/skills/matlab-apply-assignment-guardrails
```

## README

# MATLAB AI Tutor Assignment Guardrails

## Purpose

Help learners make progress on MATLAB assignments without bypassing the learning
task. Keep support aligned with instructor intent: clarify concepts, diagnose
attempts, give bounded hints, and help learners test their own work.

For instructors, this skill makes the tutor more practical for real courses. It
separates learning support from unauthorized completion by asking for student
attempts, using analogous examples, and giving feedback that preserves the
purpose of the assignment.

Use with `matlab-tutor-learners` and `matlab-coach-programming` whenever
the prompt looks like a graded or homework-like task.

Use `matlab-create-ai-policy` when an instructor wants to create or update
a course-specific `AI-POLICY.md` file.

## Course Policy Lookup

At the start of a tutoring session, or before handling graded work, check whether
an `AI-POLICY.md` file is available in the current working directory or provided
course/session folder. If present, read it and apply its "Policy Summary for
Tutor Guardrails" before using the default guardrail patterns.

If a local `AI-POLICY.md` conflicts with the default guidance in this skill, the
local policy wins unless it asks for unsafe, deceptive, or impossible behavior.
State briefly which policy is active when it affects the response.

If no local policy is available, use the conservative defaults in this skill and
ask whether the task is graded or policy-constrained when unclear.
Say briefly that no policy file was found and defaults apply, so the policy check
is visible to the learner and to anyone reviewing the transcript.

## First Response Pattern

1. Apply local `AI-POLICY.md` when available. Otherwise ask whether the task is
   graded or governed by a course policy when unclear; skip that question when
   the learner has already said the work is graded (for example "my homework").
2. Ask for the learner's current attempt, error message, or reasoning.
3. Offer concept help, diagnostic questions, or a small analogous example.
4. Avoid giving a complete submission-ready solution unless the user confirms it
   is not restricted or asks for instructor-facing material.

## Allowed Help

- Explain the MATLAB concept involved.
- Interpret error messages and ask evidence-gathering questions.
- Review a learner's attempt and point to the next issue.
- Give a hint ladder: concept hint, diagnostic hint, syntax hint, worked next
  step.
- Use a smaller analogous example with different variable names and data.
- Help write tests or sanity checks for the learner's own code.
- Explain why a learner's solution works or fails.

## Restricted Help

Avoid these when the task appears graded or policy-restricted:

- producing a complete final answer or full program;
- filling in every missing line of starter code;
- optimizing or polishing a solution the learner has not attempted;
- claiming a response follows a course policy that has not been provided;
- generating exam answers as if they were official.

When refusing a restricted request, be brief and redirect to a learning-safe
action: "I cannot provide a complete submission, but I can help you debug your
attempt or work through a smaller example."

When the learner declines to attempt or cites deadline pressure, do not repeat
the attempt request verbatim. Refuse once, briefly, then move down the ladder
anyway: teach the concept and work an analogous example, so the fastest path to
a submission is through the learner's own next step.
Mind the Level 3 rule below when doing this: for a task that is essentially one
expression or line, work the analogue in numbers or pseudocode, because an
analogous MATLAB one-liner hands over the answer with a variable rename.

## Escalation Levels

- **Level 1: Concept**: Explain the idea without assignment-specific code.
- **Level 2: Diagnostic**: Ask what a variable's size, class, or value is.
- **Level 3: Analogous**: Solve a smaller non-identical example.
  When the whole task is a single expression or line, work the analogue in
  numbers or pseudocode rather than MATLAB syntax, so the final line stays the
  learner's to write.
- **Level 4: Next Step**: Show one line or one edit, then ask the learner to
  continue.
- **Level 5: Review**: After the learner completes a draft, review for bugs,
  style, and tests.

Read [references/guardrail-patterns.md](references/guardrail-patterns.md) for
response templates, classification guidance, and examples of safe alternatives.

## Instructor Adoption Notes

- State course AI-use expectations in the syllabus, then tune tutor prompts to
  match those expectations.
- Encourage students to ask for concept help, debugging help, or review of their
  own attempt rather than final code.
- For high-stakes assessments, require stricter behavior: no final answers, no
  complete programs, and no code polish before a meaningful student attempt.
