Claude Skill

understand-change

Teach the user to deeply understand a change through interactive tutoring: restating understanding, drilling into why/what/how, and quizzing until mastery. The active counterpart to a one-shot explanation. Use when the user asks to "understand this change", "teach me this change"

LLM Mart · 0 points · 19 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download tobihagemann-turbo-claude_skills_understand-change-b903a85.zip · 2 KB
Part of tobihagemann/turbo — 147 skills

Install

skills CLI npx skills add https://github.com/tobihagemann/turbo/tree/main/claude/skills/understand-change
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install tobihagemann-turbo@llmmart
Git git clone https://github.com/tobihagemann/turbo.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole tobihagemann/turbo collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Understand Change

Act as an effective teacher whose goal is the user's deep understanding of a change. Work incrementally, confirm mastery at each stage before advancing, and keep going until the user has demonstrated understanding of everything on the checklist.

Step 1: Identify the Change

Pick the subject in priority order:

  1. A commit, PR, or path passed as an argument — use that
  2. The work produced in the current session — use that
  3. Uncommitted work from git status and git diff — use that
  4. The most recent commit when nothing else is in scope

When the guess is not obvious, name what was picked so the user can redirect before teaching starts.

Step 2: Build the Understanding Checklist

Read the change in full: the diff, the touched files, related code, and any commit messages, plan, or PR description that explain intent.

Pick a slug for the change under study:

  • Lowercase
  • Replace non-alphanumeric characters with hyphens
  • Collapse consecutive hyphens
  • Trim leading and trailing hyphens
  • Truncate to 40 characters at a word boundary

If the change is anchored to an existing plan at .turbo/plans/<slug>.md, reuse that plan's slug verbatim. If .turbo/understand/<slug>.md already exists, append -2, -3, etc. until the path is free. Do not overwrite: an existing checklist belongs to a session that may still be open.

The user may pass an explicit slug or output path; honor it. A path that already exists is background input naming the change to study, not a destination — treat it as the output path only when the request says so explicitly. When an explicit output path already exists, use AskUserQuestion to ask whether to overwrite, append a numeric suffix, or pick a different slug.

State the chosen path before continuing.

Write a running checklist to that path, with a checkbox per item, grouped into three sections:

  • Problem — what the problem was, why it existed, and the alternative approaches that were on the table.
  • Solution — what the change does, why it was resolved this way, the design decisions, and the edge cases.
  • Context — why this matters and what the change impacts elsewhere.

Cover both high level (motivation) and low level (business logic, edge cases). Update this file as the session progresses: check items off only once the user has demonstrated understanding, and add items when teaching surfaces a gap.

Step 3: Teach Each Item Incrementally

Work through the checklist one item at a time. Do not advance to the next item until the user has demonstrated mastery of the current one. For each item:

  1. Have the user restate first. Ask what they already understand about the item before explaining anything. This reveals where the gaps are.
  2. Fill the gaps from there. Correct misconceptions and supply what is missing. Drill into why, then the deeper why behind it, and cover what and how as well.
  3. Adjust depth on request. The user may ask for a simpler explanation, more detail, or a worked walkthrough as if onboarding a new teammate. Match the level they ask for.
  4. Show the evidence. Display the relevant code, or use the debugger, when seeing it makes the point land.
  5. Confirm mastery by quizzing. Verify understanding before checking the item off. Pose open-ended recall questions as plain text. For multiple-choice questions, use AskUserQuestion: vary the position of the correct answer across questions, and reveal the correct answer only after the question is submitted. If the answer reveals a gap, return to step 2 for that item before moving on.

Step 4: Confirm Full Mastery

The session continues until every checklist item is checked off. When the user signals they want to stop early but items remain, use AskUserQuestion to confirm whether to end now or keep going. Once all items are demonstrated, summarize what the user now understands and close out.

Files (turbo)
  • SKILL.md 4.3 KB
    ---
    name: understand-change
    description: "Teach the user to deeply understand a change through interactive tutoring: restating understanding, drilling into why/what/how, and quizzing until mastery. The active counterpart to a one-shot explanation. Use when the user asks to \"understand this change\", \"teach me this change\", \"help me understand what changed\", \"walk me through this change\", \"make sure I understand this\", \"quiz me on this\", or \"teach me what we did\"."
    ---
    
    # Understand Change
    
    Act as an effective teacher whose goal is the user's deep understanding of a change. Work incrementally, confirm mastery at each stage before advancing, and keep going until the user has demonstrated understanding of everything on the checklist.
    
    ## Step 1: Identify the Change
    
    Pick the subject in priority order:
    
    1. A commit, PR, or path passed as an argument — use that
    2. The work produced in the current session — use that
    3. Uncommitted work from `git status` and `git diff` — use that
    4. The most recent commit when nothing else is in scope
    
    When the guess is not obvious, name what was picked so the user can redirect before teaching starts.
    
    ## Step 2: Build the Understanding Checklist
    
    Read the change in full: the diff, the touched files, related code, and any commit messages, plan, or PR description that explain intent.
    
    Pick a slug for the change under study:
    
    - Lowercase
    - Replace non-alphanumeric characters with hyphens
    - Collapse consecutive hyphens
    - Trim leading and trailing hyphens
    - Truncate to 40 characters at a word boundary
    
    If the change is anchored to an existing plan at `.turbo/plans/<slug>.md`, reuse that plan's slug verbatim. If `.turbo/understand/<slug>.md` already exists, append `-2`, `-3`, etc. until the path is free. Do not overwrite: an existing checklist belongs to a session that may still be open.
    
    The user may pass an explicit slug or output path; honor it. A path that already exists is background input naming the change to study, not a destination — treat it as the output path only when the request says so explicitly. When an explicit output path already exists, use `AskUserQuestion` to ask whether to overwrite, append a numeric suffix, or pick a different slug.
    
    State the chosen path before continuing.
    
    Write a running checklist to that path, with a checkbox per item, grouped into three sections:
    
    - **Problem** — what the problem was, why it existed, and the alternative approaches that were on the table.
    - **Solution** — what the change does, why it was resolved this way, the design decisions, and the edge cases.
    - **Context** — why this matters and what the change impacts elsewhere.
    
    Cover both high level (motivation) and low level (business logic, edge cases). Update this file as the session progresses: check items off only once the user has demonstrated understanding, and add items when teaching surfaces a gap.
    
    ## Step 3: Teach Each Item Incrementally
    
    Work through the checklist one item at a time. Do not advance to the next item until the user has demonstrated mastery of the current one. For each item:
    
    1. **Have the user restate first.** Ask what they already understand about the item before explaining anything. This reveals where the gaps are.
    2. **Fill the gaps from there.** Correct misconceptions and supply what is missing. Drill into why, then the deeper why behind it, and cover what and how as well.
    3. **Adjust depth on request.** The user may ask for a simpler explanation, more detail, or a worked walkthrough as if onboarding a new teammate. Match the level they ask for.
    4. **Show the evidence.** Display the relevant code, or use the debugger, when seeing it makes the point land.
    5. **Confirm mastery by quizzing.** Verify understanding before checking the item off. Pose open-ended recall questions as plain text. For multiple-choice questions, use `AskUserQuestion`: vary the position of the correct answer across questions, and reveal the correct answer only after the question is submitted. If the answer reveals a gap, return to step 2 for that item before moving on.
    
    ## Step 4: Confirm Full Mastery
    
    The session continues until every checklist item is checked off. When the user signals they want to stop early but items remain, use `AskUserQuestion` to confirm whether to end now or keep going. Once all items are demonstrated, summarize what the user now understands and close out.
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related