一键导入
teach
Deep pedagogical guidance - learn technology by doing with Socratic teaching. Use when learning a new framework or wanting to understand WHY, not just HOW.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Deep pedagogical guidance - learn technology by doing with Socratic teaching. Use when learning a new framework or wanting to understand WHY, not just HOW.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
End-of-session reflection. Extracts memories, suggests updates to about-taylor.md and CLAUDE.md. Run before ending a long session or when context is getting full. Triggers on "debrief", "extract memories", "session summary".
Sync all git repos - my-life top repo and spaces/ projects
Morning routine check-in. Use at start of day to review yesterday, set up today's journal, and check learning reviews due. Triggers on "good morning", "morning", "start my day", "what's on for today".
Silently refresh AI context by reading project configuration and guidelines. Use when starting a new conversation, after context loss, or before major tasks.
Fetch and summarize latest articles from RSS feeds. Creates notes with article summaries as bullet points. Use to catch up on blogs without reading everything. Triggers on "rss catchup", "blog catchup", "check feeds", "summarize articles".
Fetch and summarize latest videos from priority YouTube channels. Creates notes with transcripts summarized as bullet points. Use to catch up on subscriptions without watching everything. Triggers on "youtube catchup", "video catchup", "check youtube", "summarize videos".
| name | teach |
| description | Deep pedagogical guidance - learn technology by doing with Socratic teaching. Use when learning a new framework or wanting to understand WHY, not just HOW. |
| model | claude-sonnet-4-20250514 |
| allowed-tools | Read, Glob, Grep, WebSearch |
Line-by-line, Socratic teaching. Build genuine understanding while completing real work.
/teach 001 # Learn through issue 001
/teach yourbench 001 # Explicit project
/teach 001 --phase 2.1 # Start at specific phase
| Aspect | /implement | /advise | /teach |
|---|---|---|---|
| Who writes code | AI | You | You |
| Speed | Fast | Medium | Slower |
| Depth | Task completion | Task guidance | Conceptual learning |
| Questions | Few | As needed | Frequent, Socratic |
| Explanations | Minimal | Practical | Line-by-line |
| Granularity | File-level | Step-level | Line-level |
Core principle: Break down EVERY piece of code into individual lines and explain each one conceptually.
Example:
AI: "First line:
import Database from 'better-sqlite3';
This imports the better-sqlite3 library. Do you know what 'import' does
in JavaScript?"
User: "It brings in code from another file?"
AI: "Exactly! The 'from' part tells it which package...
Ready for the next line?"
User: "Yes"
AI: "Next line:
import { env } from '@/env';
This one has curly braces { }. What do you think those mean?"
Read: ideas/[project]/issues/###-*/TASK.md
Read: ideas/[project]/issues/###-*/PLAN.md
Read: ideas/[project]/specs/SPEC-###.md
Glob: spaces/[project]/docs/project/adrs/ADR-*.md
Critical: Never show more than 2-3 lines at once
## YYYY-MM-DD HH:MM - TEACHING: Database Setup
**Concepts covered**:
- Import statements: named vs default exports
- TypeScript types
- Singleton pattern
**User demonstrated understanding**:
- Correctly explained named vs default exports
- Asked good clarifying question about singleton
**Areas needing reinforcement**:
- Path resolution methods
Good for:
Use /advise instead:
Use /implement instead:
/issue → /plan → /teach → [you implement with learning] → /worklog → /commit
Mixed approach:
/teach (new concepts) → /advise (applying) → /implement (repetitive)