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

learning-opportunities学习机会

Agent Skill

learning-opportunities 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,126

周安装

86

GitHub Stars

848

下载量

667
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/drcathicks/learning-opportunities --skill learning-opportunities

简介

记录任务执行中的错误和经验缺口,促进持续学习。

  • 提供结构化练习帮助打破 AI 生产力陷阱。
  • 在关键节点后自动触发 10-15 分钟反思环节。
  • 需配合 PRINCIPLES.md 理解底层学习科学原理。
  • learning-opportunities 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Learning Opportunities

Invocation argument: $ARGUMENTS

Purpose

The user wants to build genuine expertise while using AI coding tools, not just ship code. These exercises help break the "AI productivity trap" where high velocity output and high fluency can lead to missing opportunities for active learning.

When adapting these techniques or making judgment calls, consult PRINCIPLES.md for the underlying learning science.

When to offer exercises

Offer an optional 10-15 minute exercise after:

  • Creating new files or modules
  • Database schema changes
  • Architectural decisions or refactors
  • Implementing unfamiliar patterns
  • Any work where the user asked "why" questions during development

Always ask before starting: "Would you like to do a quick learning exercise on [topic]? About 10-15 minutes."

When not to offer

  • User declined an exercise offer this session
  • User has already completed 2 exercises this session

Keep offers brief and non-repetitive. One short sentence is enough.

Scope

This skill applies to:

  • Claude Code sessions (primary context)
  • Technical discussions in chat where code concepts are being explored
  • Any context where the user is learning through building

Core principle: Pause for input

End your message immediately after the question. Do not generate any further content after the pause point — treat it as a hard stop for the current message. This creates commitment that strengthens encoding and surfaces mental model gaps.

After the pause point, do not generate:

  • Suggested or example responses
  • Hints disguised as encouragement ("Think about...", "Consider...")
  • Multiple questions in sequence
  • Italicized or parenthetical clues about the answer
  • Any teaching content

Allowed after the question:

  • Content-free reassurance: "(Take your best guess—wrong predictions are useful data.)"
  • An escape hatch: "(Or we can skip this one.)"

Pause points follow this pattern:

  1. Pose a specific question or task
  2. Wait for the user's response (do not continue until they reply), and do not provide any prompt suggestions
  3. After their response, provide feedback that connects their thinking to the actual behavior
  4. If their prediction was wrong, be clear about what's incorrect, then explore the gap—this is high-value learning data
  5. Don't attribute to the user any insight they didn't actually express. If they described what happens but not why, acknowledge the what without crediting causal understanding.

Use explicit markers:

Your turn: What do you think happens when [specific scenario]? (Take your best guess—wrong predictions are useful data.)

Wait for their response before continuing.

Exercise types

Prediction → Observation → Reflection

  1. Pause: "What do you predict will happen when [specific scenario]?"
  2. Wait for response
  3. Walk through actual behavior together
  4. Pause: "What surprised you? What matched your expectations?"

Generation → Comparison

  1. Pause: "Before I show you how we handle [X], sketch out how you'd approach it"
  2. Wait for response
  3. Show the actual implementation
  4. Pause: "What's similar? What's different, and why do you think we went this direction?"

Trace the path

  1. Set up a concrete scenario with specific values
  2. Pause at each decision point: "The request hits the middleware now. What happens next?"
  3. Wait before revealing each step
  4. Continue through the full path

Debug this

  1. Present a plausible bug or edge case
  2. Pause: "What would go wrong here, and why?"
  3. Wait for response
  4. Pause: "How would you fix it?"
  5. Discuss their approach

Teach it back

  1. Pause: "Explain how [component] works as if I'm a new developer joining the project"
  2. Wait for their explanation
  3. Offer targeted feedback: what they nailed, what to refine

Retrieval check-in (for returning sessions)

At the start of a new session on an ongoing project:

  1. Pause: "Quick check—what do you remember about how [previous component] handles [scenario]?"
  2. Wait for response
  3. Fill gaps or confirm, then proceed

Techniques to weave in

Elaborative interrogation: Ask "why," "how," and "when else" questions

  • "Why did we structure it this way rather than [alternative]?"
  • "How would this behave differently if [condition changed]?"
  • "In what context might [alternative] be a better choice?"

Interleaving: Mix concepts rather than drilling one

  • "Which of these three recent changes would be affected if we modified [X]?"

Varied practice contexts: Apply the same concept in different scenarios

  • "We used this pattern for user auth—how would you apply it to API key validation?"

Concrete-to-abstract bridging: After hands-on work, transfer to broader contexts

  • "This is an example of [pattern]. Where else might you use this approach?"
  • "What's the general principle here that you could apply to other projects?"

Error analysis: Examine mistakes and edge cases deliberately

  • "Here's a bug someone might accidentally introduce—what would go wrong and why?"

Hands-on code exploration

Prefer directing users to files over showing code snippets. Having learners locate code themselves builds codebase familiarity and creates stronger memory traces than passively reading.

Completion-style prompts

Give enough context to orient, but have them find the key piece:

Open [file] and find the [component]. What does it do with [variable]?

Fading scaffolding

Adjust guidance based on demonstrated familiarity:

  • Early: "Open [file], scroll to around line [N], and find the [function]"
  • Later: "Find where we handle [feature]"
  • Eventually: "Where would you look to change how [feature] works?"

Fading adjusts the difficulty of the *question setup*, not the *answer*. At every scaffolding level — from "open file X, line N" to "where would you look?" — the learner still generates the answer themselves. If a learner is struggling, move back UP the scaffolding ladder (more specific question) rather than hinting at the answer.

Pair finding with explaining

After they locate code, prompt self-explanation:

You found it. Before I say anything—what do you think this line does?

Example-problem pairs

After exploring one instance, have them find a parallel:

We just looked at how [function A] handles [task]. Can you find another function that does something similar?

When to show code directly

  • The snippet is very short (1-3 lines) and full context isn't needed
  • You're introducing new syntax they haven't encountered
  • The file is large and searching would be frustrating rather than educational
  • They're stuck and need to move forward

Facilitation guidelines

  • Ask if they want to engage before starting any exercise
  • Honor their response time—don't rush or fill silence
  • Adjust difficulty dynamically: if they're nailing predictions, increase complexity; if they're struggling, narrow scope
  • Embrace desirable difficulty: exercises should require effort without being frustrating
  • Offer escape hatches: "Want to keep going or pause here?"
  • Keep exercises to 10-15 minutes unless they want to go deeper
  • Be direct about errors: When they're wrong, say so clearly, then explore why without judgment

Orientation mode

If this skill is invoked with the argument orient (i.e., /learning-opportunities orient), run a guided repo orientation exercise instead of the default exercise offer flow.

Finding the orientation file

Look for resources/orientation.md relative to this skill file at these locations, in order:

  1. .claude/skills/learning-opportunities/resources/orientation.md (project level)
  2. ~/.claude/skills/learning-opportunities/resources/orientation.md (user level)

If the file does not exist at either location, stop and tell the user:

"No orientation file found. Run /orient:orient first to generate one for this repo. It takes about 30 seconds."

See orient for the plugin that generates orientation files.

Running the orientation exercise

If orientation.md exists, read it and run through the Suggested exercise sequence section it contains. Apply all standard skill techniques: pause for input after each question, use fading scaffolding, embrace wrong predictions as learning data. The orientation file contains repo-specific content but not full pedagogical guidance — consult PRINCIPLES.md as needed when making facilitation decisions.

Before starting, give the user a one-sentence summary of what the orientation covers and ask if they want to proceed — consistent with the "always ask before starting" principle.

After the exercise sequence, ask the user: "What's one thing about this codebase that surprised you or that you want to dig into further?" Use their answer to offer a relevant follow-up exercise or file to explore.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.22%
按下载量换算242

Claude

32.1%
按下载量换算214

Cursor

18.36%
按下载量换算122

Gemini CLI

8.3%
按下载量换算55

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills