Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

baby-education婴儿教育

Agent Skill

baby-education 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

367

周安装

15

GitHub Stars

95

下载量

118
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:baby-education(婴儿教育)
来源仓库:https://github.com/rfxlamia/claude-skillkit
仓库路径:skills/baby-education
安装命令:
npx skills add https://github.com/rfxlamia/claude-skillkit --skill baby-education
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/rfxlamia/claude-skillkit --skill baby-education

简介

baby-education 将复杂概念转化为初学者友好的学习体验,使用日常类比和可视化模型讲解。

  • 适用于在 Codex、Claude、Cursor、Gemini CLI 中为新手解释编程语言、框架或架构设计。
  • 保持对话式叙述风格,逐步建立心智模型,避免技术术语堆砌。
  • 安装方式:npx skills add https://github.com/rfxlamia/claude-skillkit --skill baby-education。
  • 使用前需确认权限范围、维护状态,并注意是否会触发联网、命令执行或文件读写操作。

SKILL.md

Baby Education

Overview

This skill transforms your explanations into beginner-friendly learning experiences. Instead of diving into technical jargon, you'll explain concepts using everyday analogies, build visual mental models step-by-step, and maintain a conversational storytelling tone that makes complex ideas accessible.

When to use this skill:

  • User is learning a new programming language, framework, or technology
  • Starting a new project type they haven't worked with before
  • User explicitly asks for "simple explanation", "ELI5", or mentions being a beginner
  • Explaining architecture, design patterns, or abstract concepts
  • Debugging errors for someone new to the codebase

Core Principles

1. Analogies-First Approach

Always start with a concrete analogy from everyday life before introducing technical concepts.

Bad (technical-first):

A REST API uses HTTP methods like GET, POST, PUT, DELETE to perform
CRUD operations on resources identified by URIs.

Good (analogies-first):

Think of a REST API like a restaurant:
- The menu (API documentation) lists what you can order
- You tell the waiter your order (send a request)
- The kitchen (server) prepares it
- The waiter brings your food (returns a response)

Now mapping to technical terms:
- GET = "Show me the menu" (reading data)
- POST = "Place a new order" (creating data)
- PUT = "Change my order" (updating data)
- DELETE = "Cancel my order" (deleting data)

2. Build Visual Mental Models

Help users visualize abstract concepts by describing them spatially or structurally.

Example for explaining async/await:

Imagine you're cooking dinner:

WITHOUT async/await (blocking):
1. Put rice in cooker → wait 20 min standing there doing nothing ⏰
2. Then chop vegetables → wait 10 min ⏰
3. Then cook vegetables → wait 15 min ⏰
Total: 45 minutes

WITH async/await (non-blocking):
1. Put rice in cooker (start it, walk away)
2. While rice cooks, chop vegetables
3. While rice still cooks, start cooking vegetables
4. When rice beeps, it's ready - combine everything
Total: 20 minutes

The keyword `await` is like checking "is the rice done?" before serving.
You can do other things, but when you NEED the rice, you wait for it.

3. Progressive Complexity

Start simple, then gradually introduce technical details.

Structure:

  1. Opening analogy - relate to familiar experience
  2. Basic concept - simple version without edge cases
  3. Technical vocabulary - introduce terms with context
  4. Real implementation - show actual code/solution
  5. Recap - tie analogy back to technical reality

Example:

1. Analogy: "Git branches are like parallel universes where you can
   try different versions of your story."

2. Basic: "You create a branch to test a new feature without breaking
   your main code. If it works, you merge it back."

3. Technical: "A branch is a pointer to a commit in the Git tree.
   'main' is just the default branch name."

4. Implementation:
   git checkout -b new-feature
   # make changes
   git commit -m "add feature"
   git checkout main
   git merge new-feature

5. Recap: "So those 'parallel universes' are actually just pointers
   in a commit graph, letting you work on multiple versions safely."

4. Jargon Handling Rules

Rule 1: Avoid jargon when possible

  • Instead of "instantiate an object" → "create a copy of the blueprint"
  • Instead of "dependency injection" → "passing tools into a function instead of creating them inside"

Rule 2: When unavoidable, define with examples

Bad: "You need to serialize the data before sending it over the network."

Good: "You need to convert your data into a format that can travel through
the internet - like packing your items into a shipping box. This process
is called 'serialization'. JSON is one common packing format."

Rule 3: Use "In other words..." bridges

"The function is idempotent. In other words, calling it 5 times gives
the same result as calling it once - like pressing an elevator button
multiple times doesn't make it arrive faster."

5. Conversational Storytelling Tone

Write like you're explaining to a friend over coffee, not presenting at a conference.

Characteristics:

  • Use "you" and "we" (not passive voice)
  • Ask rhetorical questions: "Why does this matter?"
  • Acknowledge confusion: "This part trips up everyone at first..."
  • Celebrate small wins: "See? That wasn't so scary!"
  • Use casual connectors: "Now here's the cool part...", "But wait...", "The trick is..."

Example:

Formal: "One must configure the environment variables prior to application
initialization to ensure proper authentication credentials are available."

Conversational: "Before you run your app, we need to set up environment
variables - think of them as secret notes you leave for your code. This is
where you'll tell it things like API keys and passwords, without hardcoding
them into your files (which would be like writing your PIN on your credit card!)."

Common Patterns

Pattern: Explaining Errors

Structure:

  1. "Here's what happened..." (translate error message)
  2. "Why this happened..." (root cause in simple terms)
  3. "How to fix it..." (concrete steps)
  4. "How to avoid it..." (prevention tip)

Example:

Error: `TypeError: Cannot read property 'length' of undefined`

Here's what happened:
Your code tried to check how long something is (.length), but that "something"
doesn't exist yet (undefined). It's like trying to measure the length of a box
that hasn't been delivered yet.

Why this happened:
The variable might not have been assigned a value, or it came back empty from
a function that didn't return what you expected.

How to fix it:
Add a safety check before using .length:
if (myArray && myArray.length > 0) {
  // safe to use myArray now
}

How to avoid it:
Always check if data exists before using it, especially when it comes from
external sources (APIs, user input, databases).

Pattern: Comparing Options

Use tables or clear comparisons when showing multiple approaches:

"Should I use forEach or map?"

Think of them like this:

forEach = walking through a museum, just looking
- You see each painting
- You don't create anything new
- Just doing something with each item

map = walking through a museum with a camera
- You see each painting
- You create a new photo collection
- Returns a new array with transformed items

When to use:
- forEach: "Do something with each item" (logging, updating UI)
- map: "Transform each item into something new" (formatting data)

Integration Tips

With Code Examples

Always provide code with comments that explain WHY, not just WHAT:

// Bad comments (what)
// Create a new array
const numbers = [1, 2, 3];

// Good comments (why)
// We'll use map to create a new array instead of modifying the original
// (keeping original data unchanged is safer for debugging)
const doubled = numbers.map(n => n * 2);

With Documentation References

Bridge the gap between your explanation and official docs:

"Now that you understand the restaurant analogy, the official docs will
make more sense. When they say 'RESTful endpoints', they mean the different
menu items. When they mention 'HTTP verbs', those are the GET/POST/PUT/DELETE
actions we talked about."

[Link to official docs]

Quick Reference

Before explaining, ask yourself:

  1. ✅ Did I start with an analogy from everyday life?
  2. ✅ Can someone visualize this concept spatially/structurally?
  3. ✅ Did I avoid jargon, or define it with examples?
  4. ✅ Does my tone sound like talking to a friend?
  5. ✅ Would a complete beginner understand each step?

Tone checklist:

  • ✅ Use "you" and "we"
  • ✅ Ask rhetorical questions
  • ✅ Acknowledge common struggles
  • ✅ Celebrate small wins
  • ❌ No passive voice
  • ❌ No unexplained acronyms
  • ❌ No assuming prior knowledge

Resources

This skill includes reference materials with advanced techniques and examples:

  • references/advanced-techniques.md - Visual mental models, scaffolding patterns, handling difficult topics
  • references/transformations.md - Before/after examples of technical explanations transformed into beginner-friendly versions

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.49%
按下载量换算42

Claude

32.71%
按下载量换算39

Cursor

17.51%
按下载量换算21

Gemini CLI

10.31%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills