Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

mentoring-developers指导开发人员

Agent Skill

mentoring-developers 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

630

周安装

26

GitHub Stars

61

下载量

206
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:mentoring-developers(指导开发人员)
来源仓库:https://github.com/melodic-software/claude-code-plugins
仓库路径:skills/mentoring-developers
安装命令:
npx skills add https://github.com/melodic-software/claude-code-plugins --skill mentoring-developers
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill mentoring-developers

简介

mentoring-developers 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于开发人员指导、技能提升和资源推荐等研究检索场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Mentoring Developers

This skill provides frameworks for effective mentoring, knowledge transfer, and developing other engineers.

When to Use This Skill

  • Starting a formal or informal mentoring relationship
  • Onboarding a new team member
  • Teaching technical concepts to junior engineers
  • Running effective 1:1 meetings
  • Pair programming with less experienced developers
  • Helping someone navigate their career

Core Frameworks

Crawl-Walk-Run Progression

A framework for teaching new skills progressively:

PhaseMentor RoleMentee RoleDuration
CrawlDo, they observeWatch and ask questionsUntil they understand the "what"
WalkGuide heavilyThey try, you correctUntil they can do it with help
RunProvide guardrailsThey lead, you adviseOngoing with decreasing support

Example: Teaching Code Review

Crawl: You review PRs together, thinking aloud about what you look for, why things matter, what makes good/bad code.

Walk: They do the review, you watch. You ask questions: "What about this section?" You course-correct in real-time.

Run: They review independently. You spot-check occasionally and discuss any disagreements. They come to you with edge cases.

Key principle: Stay in each phase long enough. Rushing to "Run" creates gaps.

Socratic Questioning

Instead of giving answers, ask questions that lead to understanding:

Instead of...Ask...
"Use a hash map here""What data structure would give us O(1) lookups?"
"You need to handle null""What happens if this value is null?"
"That's inefficient""What's the time complexity here? Could we do better?"
"Don't do it that way""What are the trade-offs of this approach?"

Benefits

  • They learn to think, not just memorize
  • Builds problem-solving muscles
  • They discover answers themselves (more memorable)
  • You understand their thought process

When NOT to use Socratic questioning:

  • Production incident - just tell them the fix
  • Simple factual questions - don't make them guess
  • When they're frustrated or overwhelmed

Building Trust

Trust is the foundation of effective mentoring:

Trust-Building Practices

  1. Show genuine interest in their goals

- Ask about career aspirations - Remember and follow up on personal details - Celebrate their wins publicly

  1. Create psychological safety

- Normalize mistakes: "I make these too" - Share your own failures and learnings - Never shame, even privately

  1. Maintain confidentiality

- What they share stays between you - Don't mention their struggles to others - Ask before sharing their work as examples

  1. Be consistent and reliable

- Show up to 1:1s on time - Follow through on commitments - Be honest about your own limitations

  1. Acknowledge when they teach you

- Mentoring is bidirectional - Let them know when you learned from them - Builds their confidence and equalizes the relationship

Tailoring to Learning Styles

People learn differently. Adapt your approach:

StyleSignsApproach
VisualAsks for diagrams, draws things outUse whiteboarding, architecture diagrams, code walkthroughs
AuditoryLearns from discussion, podcastsTalk through concepts, think-aloud, verbal explanations
KinestheticPrefers hands-on practicePair programming, experiments, building things
Reading/WritingPrefers documentationPoint to docs, have them write summaries

Most people are a mix. Start with all approaches, then observe what clicks.

Pair Programming for Mentoring

Pair programming is a powerful mentoring tool when done well. See references/pair-programming-guide.md for detailed guidance.

Key Principles

  • Rotate driver/navigator roles
  • Narrate your thinking when driving
  • Let them struggle (productively)
  • Never grab the keyboard without permission

1:1 Meeting Structure

Effective 1:1s are the backbone of mentoring. See references/one-on-one-structure.md for detailed templates.

Basic Structure (30 min)

  • Progress check (5 min)
  • Challenges/blockers (10 min)
  • Development goals (10 min)
  • Open discussion (5 min)

Key Principles for 1:1s

  • Their agenda, not yours
  • Consistent cadence (weekly ideal)
  • Take notes and follow up
  • Occasionally skip status and go deep on growth

Common Mentoring Mistakes

Taking Over

❌ Grabbing the keyboard when they struggle ✅ Ask guiding questions, let them try

Assuming Knowledge

❌ "You know what a REST API is, right?" ✅ "What's your experience with REST APIs?"

Overwhelming with Information

❌ Explaining everything about microservices at once ✅ Focus on what they need now, save rest for later

Neglecting the Relationship

❌ Only discussing technical work ✅ Check in on how they're doing personally

Doing vs. Teaching

❌ "I'll just fix this, it's faster" ✅ "Let's fix this together so you see how"

Measuring Progress

Track mentee development over time:

Technical Progress

  • PRs requiring less revision
  • Taking on more complex tasks
  • Helping others with areas you taught

Professional Progress

  • More confident in meetings
  • Asking better questions
  • Navigating team dynamics effectively

Relationship Health

  • They bring you problems early
  • Honest about struggles
  • Proactive about scheduling time

Related Resources

  • references/pair-programming-guide.md - Communication during pairing
  • references/one-on-one-structure.md - 1:1 meeting frameworks
  • /soft-skills:write-1on1-agenda command - Generate 1:1 agendas
  • feedback-conversations skill - Giving developmental feedback
  • professional-communication skill - General communication patterns

Version History

  • v1.0.0 (2025-12-26): Initial release

Last Updated

Date: 2025-12-26 Model: claude-opus-4-5-20251101

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Antigravity

27.13%
按下载量换算56

Claude Code

20.8%
按下载量换算43

Codex

17.92%
按下载量换算37

OpenCode

14.39%
按下载量换算30

Gemini CLI

7.56%
按下载量换算16

windsurf

3.71%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills