Claude Technical Tutor
Overview
A guided discovery tutor for Claude Code with structured session note-taking.
Claude Technical Tutor is a Claude Code plugin that changes how Claude interacts with you during technical work. Instead of solving problems for you, it researches vendor documentation, points you to specific sources, and guides you through building hands-on — the way a good mentor would. It captures structured notes as you work, so the things you learn don't evaporate when the session ends.
Design Philosophy
- Claude never does work for you unless explicitly asked. The default is guidance, not answers.
- Vendor docs first. Claude researches official documentation before each session and points you to specific sections — not blog summaries or pre-digested options.
- You build, Claude guides. Point to sources, prompt for your thinking, critique your understanding. No A/B/C option presenting.
- Explicit opt-in for recording. No notes are captured unless you start a session. Keeps Q&A clean and builds the habit of intentionally entering work mode.
- Curation over capture. Claude filters for signal in real-time. Failures and challenges are weighted highest — they're the most valuable learning material.
- Works with any markdown note tool. Obsidian, Logseq, OneNote, or just a folder. Output is plain
.mdfiles.
Installation
As a Plugin
claude plugin install claude-technical-tutor@wblv-dev
Manual
Clone the repo and copy into your Claude Code config directories:
git clone https://github.com/wblv-dev/claude-technical-tutor.git
cp -r claude-technical-tutor/skills/* ~/.claude/skills/
cp -r claude-technical-tutor/commands/* ~/.claude/commands/
cp -r claude-technical-tutor/rules/* ~/.claude/rules/
Then merge the CLAUDE.md contents into your own ~/.claude/CLAUDE.md and add the hooks from hooks/hooks.json to your ~/.claude/settings.json.
Configuration
Set your notes directory in ~/.claude/settings.json:
{
"env": {
"TUTOR_NOTES_DIR": "/path/to/your/notes"
}
}
Defaults to ~/tutor-notes/ if not set.
Teaching Mode
When teaching mode is active (always on by default), Claude:
- Researches vendor docs first and has specific references ready before the session
- Points you to specific sources — "go read section X of this doc" rather than explaining it directly
- Prompts for your thinking — "how do you think this process goes?" then critiques your understanding
- Guides framework mapping — asks what controls apply rather than listing them for you
- Is available during the build — you talk through it, Claude asks why/who/what and fills gaps
- Identifies the specific assumption that broke when you're wrong
- Flags security issues in anything you build
Disable for a single turn with "just tell me" or "skip the teaching".
Session Note-Taking
The session-log system captures structured notes using two rubrics:
T/R/C — Task / Reason / Challenge (for build work):
- Task — what did we do?
- Reason — why did we do it?
- Challenge — what broke, and how did we fix it?
Q/A/R — Question / Answer / Resolution (for teaching exchanges):
- Question — what was asked, and what's the context?
- Answer — what did the learner say? (captured faithfully, in their own words)
- Resolution — what did the discussion conclude?
Every entry gets a signal level (high / medium / low) that drives synthesis priority. Scratch entries are written in meeting-minutes style — faithful to what was actually said, not paraphrased.
Commands
| /session-start [topic] | Start a recording session with an optional topic |
| /note [hint] | Manually capture a T/R/C or Q/A/R entry for the current moment |
| /recover | Retroactively generate notes from the session transcript |
| /session-end | Synthesize all entries into a final note and clean up |
Workflow
/session-start OPNsense HA setup
... work normally, Claude captures notes silently ...
/note (manual capture if Claude misses something)
/session-end (synthesize, confirm filename, done)
If you forget /session-start:
... work normally, no notes captured ...
/recover (mines session transcript retroactively)
/session-end (synthesize as normal)
Components
The plugin uses multiple Claude Code extension points working together:
| CLAUDE.md | Guided discovery teaching persona and core principles |
| Skill | Session-log capture logic, T/R/C + Q/A/R rubrics, signal levels, synthesis |
| Commands | Session lifecycle: start, note, recover, end |
| Hook | Warns on exit if a session wasn't wrapped |
| Rule | Format enforcement on note files |
What Gets Captured
Claude watches for noteworthy moments and filters out noise:
Captured: new concepts, decisions with tradeoffs, debugging breakthroughs, broken assumptions, opinions formed or changed, reading assignments completed, reusable patterns, gotchas that cost time.
Filtered: routine tool calls, typo fixes, dead-ends that taught nothing, things obvious from code or commit history.
Security
- Notes never contain secrets, API keys, tokens, or credentials
- Claude logs the shape of fixes ("rotated API key, updated env var"), not values
- Security issues in your work are flagged proactively — hardcoded credentials, disabled TLS verification, injection vectors