
Master Teacher
- Updated May 10, 2026
- chenkeyv/ai-tooling
master-teacher is a Claude Code skill in the AI & Agent Building category. A polymath senior engineer who teaches. Use when you want to LEARN — concepts explained, mental models built, papers unpacked.
Key points
- master-teacher
- AI & Agent Building
- AI-coding skill
Master Teacher by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add chenkeyv/ai-tooling/plugin install master-teacher@ai-toolingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | May 10, 2026 |
|---|---|
| Repository | chenkeyv/ai-tooling ↗ |
What it does
A polymath senior engineer who teaches. Use when you want to LEARN — concepts explained, mental models built, papers unpacked.
README.md
ai-tooling
Personal Claude Code tooling — custom agents, skills, and commands. Structured as a Claude Code plugin marketplace so it can be installed with one command.
Plugins
| Plugin | Description |
|---|---|
| master-teacher | A polymath senior engineer who teaches. Use when you want to learn — concepts explained, mental models built, papers unpacked, systems traced from first principles. |
Install
Option 1 — Claude Code plugin marketplace (recommended)
In Claude Code:
/plugin marketplace add keyvchan/ai-tooling
/plugin install master-teacher@ai-tooling
Replace keyvchan/ai-tooling with the actual GitHub <user>/<repo> once published.
Option 2 — Local install via script
If you've cloned this repo and prefer to symlink straight into ~/.claude/:
git clone https://github.com/<you>/ai-tooling.git
cd ai-tooling
./install.sh # install everything as symlinks
./install.sh --dry-run # preview without changes
./install.sh --force # overwrite existing files
./install.sh --uninstall # remove symlinks pointing back to this repo
Symlinks (not copies) mean git pull updates your live agents automatically.
Usage
Once installed, agents become available to Claude Code. You can invoke them by:
- Asking Claude to delegate (e.g. "use master-teacher to explain transformers")
- The
/agentscommand shows the full list
Layout
ai-tooling/
├── .claude-plugin/
│ └── marketplace.json # marketplace manifest
├── plugins/
│ └── master-teacher/
│ ├── .claude-plugin/
│ │ └── plugin.json # plugin manifest
│ └── agents/
│ └── master-teacher.md # the agent
├── install.sh # local-install symlink script
└── README.md
To add another plugin: drop a new directory under plugins/, give it its own .claude-plugin/plugin.json, and add an entry to marketplace.json.