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

teachteach 搜索

Agent Skill

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

总安装

456

周安装

19

GitHub Stars

公开资料未说明

下载量

152
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sjunepark/custom-skills --skill teach

简介

teach 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 它支持基于关键词、任务场景或来源线索进行信息匹配,适用于研究检索类需求。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议核实权限范围、维护状态,以及是否涉及联网、命令执行或文件读写操作。
  • 该技能适用于需要高效信息聚合的场景,但需人工核验其实际行为与项目需求是否匹配。

SKILL.md

Teach

Teach for understanding, not just orientation.

The goal is to help the user genuinely learn:

  • what the relevant code or concept is for
  • how the pieces fit together
  • how control, data, and responsibilities move
  • what assumptions or invariants matter
  • what design tradeoffs or confusing parts are worth noticing

This skill is primarily explanatory. Stay focused on helping the user build a mental model. Point out important design issues or confusing structure when that would materially improve understanding, but do not drift into generic review mode.

Scope

This skill usually applies to the current codebase, but it may also cover:

  • a library or framework used by that code
  • a protocol, runtime mechanism, or pattern needed to understand the implementation
  • a small amount of surrounding product or systems context if it clarifies the code

Prefer the smallest scope that lets the user understand the thing they asked about.

First-Class Inputs

Handle these as normal teaching targets:

  • a module or package
  • a feature or user flow
  • a subsystem or architecture area
  • an API boundary or integration
  • a runtime path such as request handling, background jobs, or event flow
  • a data model or state flow
  • a library or framework behavior that is directly relevant to the code

If the user is actually asking about a diff, commit, PR patch, or file-to-file comparison, use change-explainer instead.

Core Behavior

  1. Start from the learner's question.
  • Identify what the user is trying to understand, not just which files are nearby.
  • Match the explanation depth to the request.
  • If the user asks a broad question, narrow it to the smallest coherent mental model first.
  1. Build a mental model before details.
  • Begin with purpose, role, and boundaries.
  • Then explain the main flow.
  • Then drill into important mechanisms, edge cases, and invariants.
  • Avoid starting with line-by-line code reading unless the user explicitly wants that.
  1. Use snippets as the primary teaching aid.
  • Embed short, focused snippets directly in the response.
  • Start each snippet with a comment that names the file path it came from.
  • Prefer the smallest snippet that makes the idea legible.
  • Use multiple small snippets to explain separate ideas.
  • Do not force the user back into the editor just to follow the explanation.
  1. Use ASCII diagrams when structure is easier to see than describe.
  • Add a small diagram when it materially improves understanding of:

- control flow - data flow - component or module relationships - state transitions - layered architecture or request lifecycles

  • Keep diagrams compact, readable, and ASCII-only.
  • Do not add a diagram if prose and snippets already make the point clear.
  1. Teach relationships, not isolated facts.
  • Explain who calls what, who owns what, and where decisions happen.
  • Show how data changes shape as it crosses boundaries.
  • Name the abstractions and responsibilities that matter to the flow.
  1. Surface important confusion points.
  • Call out misleading names, blurred responsibilities, hidden invariants, or awkward control flow when they materially affect understanding.
  • Treat these as teaching notes, not as a full review.
  • If the structure is mostly sound, say so plainly.
  1. Use external context only when it helps.
  • If library or framework behavior is necessary to explain the code, include only the part that changes how the code should be read.
  • Keep external explanation tied to the code in front of you.

Workflow

  1. Identify the teaching target.
  • Confirm whether the user wants to understand a module, flow, subsystem, data path, architecture area, or relevant external concept.
  • Infer the likely target from the request and nearby context when needed.
  1. Read top-down.
  • Start from entry points, exported symbols, route handlers, public interfaces, or the main flow the user is asking about.
  • Then read supporting helpers, data structures, and tests only as needed.
  • Pull in docs such as AGENTS.md, ARCHITECTURE.md, or nearby notes when they materially change the explanation.
  1. Organize the lesson.
  • Prefer an order like:

- what this part exists to do - where it sits in the system - the main runtime or data flow - the key mechanisms or abstractions - invariants, edge cases, and tradeoffs

  • Reorder the material so the explanation is easy to learn, not so it mirrors file order.
  1. Teach with evidence.
  • For each important point, include a small snippet, pseudocode summary, concrete example, or compact ASCII diagram when appropriate.
  • Explain why the snippet matters.
  • Connect the evidence back to the larger mental model.
  1. Close the loop.
  • Summarize the model the user should now have.
  • Mention the most important thing to remember about the design.
  • If there is a major confusing or fragile area, call it out directly.

Snippet Rules

  • Use fenced code blocks for snippets.
  • Put the source file path in the first line of the snippet as a comment.
  • Match the comment style to the language when practical, for example // src/dashboard/load.ts or # backend/jobs/sync.py.
  • If the language is unclear, use a neutral comment style or label the snippet in surrounding prose.
  • Keep snippets narrowly scoped to the mechanism being taught.
  • Prefer signatures, conditions, branching points, state transitions, and interface boundaries over long contiguous code.
  • When a relationship matters more than the exact syntax, summarize the flow around the snippet in prose.
  • If helpful, pair snippets with a brief explanation like:
// src/dashboard/loadUserDashboard.ts
export async function loadUserDashboard(userId: string) {
  const account = await accountRepo.getByUserId(userId);
  return buildDashboardView(account);
}

This shows the boundary clearly: the function does orchestration, not heavy business logic. The repository fetches data, and the view builder shapes it for the caller.

Diagram Rules

  • Use diagrams only when they make the lesson easier to understand.
  • Use compact ASCII diagrams that render clearly in plain Markdown.
  • Do not use Mermaid.
  • Keep them small and purpose-built for one idea.
  • Favor these diagram types:

- request or event flow - module relationship map - state transition sketch - data transformation pipeline

  • Put the diagram near the explanation it supports.
  • Explain the diagram briefly instead of assuming it is self-explanatory.

Example:

Route -> Service -> Repo -> DB

This works when the main teaching problem is ownership or call flow rather than syntax.

Output Shape

Use this shape unless the user asks for something else:

Big Picture

  • One short paragraph on what this part of the system is for and where it fits.

How It Works

  • Explain the main flow in logical learning order.
  • Use embedded snippets as evidence.
  • Add a compact ASCII diagram if it makes the flow or relationships clearer.
  • Focus on roles, boundaries, and movement of control or data.

Key Ideas

  • Call out the few abstractions, invariants, or decisions that make the design make sense.

Important Confusion Points

  • Include only when something materially affects understanding.
  • Mention important design issues, awkward boundaries, or misleading structure briefly and concretely.

Communication Rules

  • Optimize for learning, not exhaustiveness.
  • Prefer a coherent lesson over a file-by-file tour.
  • Do not default to path or line references; use snippets first.
  • Do not dump every related file into the answer.
  • Label inferences as inferences when the code does not prove intent directly.
  • If the user seems to want a concise overview, stay high-level.
  • If the user clearly wants deeper teaching, go further into mechanisms and tradeoffs.

Non-Goals

Do not use this skill as the default choice for:

  • diff, commit, or patch explanation
  • formal code review
  • task-status catch-up for the current session
  • broad external-library research disconnected from the current code

Use change-explainer for change-focused teaching, briefing for task-state recovery, and review-oriented skills when the user is asking for critique rather than understanding.

Example Triggers

  • "Teach me how this feature works."
  • "Explain this subsystem so I can actually understand the design."
  • "I want to learn the request flow from the route down to the database. Show snippets."
  • "Teach me this flow with a diagram if that would make it easier to follow."
  • "Teach me this module in a logical order, not file order."
  • "Help me understand how this library is being used here and why the code is structured this way."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.22%
按下载量换算52

Claude

30.46%
按下载量换算46

Cursor

19.57%
按下载量换算30

Gemini CLI

8.97%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills