Skills Plugins MCP Prompt Model 博客 我的中心

learn-teach

Step-by-step explanation of a concept with progressive depth

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=florianbruniaux-claude-code-ultimate-guide-examples-skills-learn-teach-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name learn-teach description Step-by-step explanation of a concept with progressive depth argument-hint <concept> effort low Teach Me Step-by-step explanation of a concept with progressive depth. Usage /learn:teach React hooks # Learn about React hooks /learn:teach async/await # Understand async patterns /learn:teach SOLID principles # Learn design principles /learn:teach --deep SQL joins # In-depth explanation Instructions Start with a one-sentence definition of the concept Explain why it matters (real-world problem it solves) Show a minimal example (simplest possible code) Break down each part of the example with comments Show a practical example (real-world use case) Highlight common mistakes beginners make Suggest next concepts to learn Response Format ## [Concept Name] **In one sentence** : [Clear, simple definition] ### Why It Matters [1-2 sentences on the problem this solves] ### Minimal Example \ `\` \`[language] // Simplest possible demonstration [code] \ `\` \` **Line by line** : - Line 1: [explanation] - Line 2: [explanation] ... ### Practical Example \ `\` \`[language] // Real-world scenario [code] \ `\` \` ### Common Mistakes 1. **[Mistake]** : [Why it's wrong and what to do instead] 2. **[Mistake]** : [Why it's wrong and what to do instead] ### Key Takeaways - [Bullet point 1] - [Bullet point 2] - [Bullet point 3] ### Learn Next - [Related concept 1]: [why it connects] - [Related concept 2]: [why it connects] --- **Practice challenge** : [Small exercise to reinforce the concept] Depth Modes Default One-sentence definition One minimal example One practical example 2-3 common mistakes --deep Extended explanation with history/context Multiple examples of increasing complexity Edge cases and gotchas Performance considerations Comparison with alternatives Interview-relevant details --quick Definition only Single example No extras Adaptation Rules For Beginners Use analogies from everyday life Avoid jargon (or explain it immediately) More comments in code Smaller code examples For Intermediates Assume basic syntax knowledge Focus on "why" over "what" Include trade-offs Show idiomatic patterns For Advanced Topics Reference official documentation Discuss internal implementation when relevant Include performance implications Mention related patterns Example Session User: /learn:teach useEffect Claude: ## useEffect **In one sentence**: useEffect lets you run side effects (data fetching, subscriptions, DOM changes) after React renders a component. ### Why It Matters React components are pure functions that render UI. But real apps need to interact with the outside world: APIs, browser events, timers. useEffect is the bridge between React's declarative world and imperative side effects. ### Minimal Example \`\`\`jsx import { useEffect, useState } from 'react'; function Timer() { const [seconds, setSeconds] = useState(0); useEffect(() => { const id = setInterval(() => { setSeconds(s => s + 1); }, 1000); return () => clearInterval(id); // Cleanup }, []); // Empty array = run once return <div>{seconds}s</div>; } \`\`\` **Line by line**: - `useEffect(() => {...}, [])`: Run this function after first render - `setInterval(...)`: Start a timer (side effect) - `return () => clearInterval(id)`: Cleanup when component unmounts - `[]`: Empty dependency array = only run on mount ### Common Mistakes 1. **Missing dependency array**: Without `[]`, effect runs on EVERY render 2. **Forgetting cleanup**: Intervals/subscriptions leak without return function 3. **Stale closures**: Using old state values instead of functional updates --- **Practice challenge**: Add a pause button that stops and resumes the timer. Topics Well-Suited for /learn:teach Category Examples React hooks, context, suspense, server components JavaScript closures, promises, event loop, prototypes TypeScript generics, mapped types, utility types Patterns SOLID, DI, composition, factories Backend REST, GraphQL, authentication, caching Database indexes, joins, transactions, normalization DevOps containers, CI/CD, infrastructure as code $ARGUMENTS
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。