/00. Claude Plugins
A Claude Code plugin is a folder of skills, agents, hooks, and slash commands that Claude installs per project. 28 plugins, 68 skills here.
/plugin marketplace add aiocean/claude-plugins
/plugin install <plugin-name>@aiocean-plugins
Skills load when their description matches your message, hooks fire on
tool-call events, agents spawn on the Agent tool. Idle plugins cost
nothing — browse plugins or read the guides.
Folders
Articles
- Send books to your BOOX from the terminal01
- Patching Claude Code: rebalance the built-in prompts (and more)02
- Install Claude Code plugins in two commands03
- My CLAUDE.md04
- Three Claude Code primitives, three different jobs05
- Writing CLAUDE.md: the sections that actually help06
- aio-architect-advisor07
- aio-architect-reference08
- aio-atlassian09
- aio-boox10
- aio-browser-cookie11
- aio-bun-fullstack-setup12
- aio-catch-me-up13
- aio-code-review14
- aio-dashboard-design15
- aio-debug16
- aio-discover17
- aio-doc-writer18
- aio-dream19
- aio-epub-analyze20
/02. aio-catch-me-up
Don't let the AI leave you behind.
A Claude Code skill that turns the assistant into a wise, mastery-gated teacher whose only job is to make sure you deeply understand the work an AI agent just did — before you merge it and own it.
Why
AI agents write correct code faster than a human can follow. The gap between "it works" and "I understand why it works" is where the bugs you'll be paged for next month live. This skill closes that gap on purpose.
What it does
When triggered, Claude stops producing and starts teaching:
- Grounds in reality — reads the actual
git diff, the changed files, and the session's decisions. No teaching from memory. - Builds a running checklist across three pillars — the Problem (and why it existed), the Solution (and why it was chosen over the alternatives, including edge cases), and the Broader context (what it impacts, what you'd need to know to change it safely).
- Elicits before it explains — you restate your understanding first, so it teaches the gap, not the whole textbook.
- Explains at your depth —
eli5,eli14, or like-an-intern, shifting on request, showing real code and the debugger. - Quizzes you — open-ended for depth, multiple-choice via
AskUserQuestionwith answers never leaked and the correct option never telegraphed. - Won't conclude until you've demonstrated mastery — a correct guess isn't enough; it drills the whys until your understanding bottoms out in a real invariant.
Trigger it
"teach me what you just did" · "make sure I understand this change" · "walk me through this" · "why did you do it this way" · "quiz me on this" · "eli5 this diff" · "I don't get it — don't let me fall behind"
Install
claude plugin marketplace add aiocean/claude-plugins
claude plugin install aio-catch-me-up@aiocean-plugins
Skills (1)
- aio-catch-me-up — Turn Claude into a wise, effective teacher whose only goal is to make sure YOU deeply understand the work an AI agent just did — the problem it solved, why that…